mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
22 lines
545 B
PHP
22 lines
545 B
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
|
|
class JSONDisplayHandler
|
|
{
|
|
|
|
/**
|
|
* Produce JSON compliant content given a module object.\n
|
|
* @param ModuleObject $oModule the module object
|
|
* @return string
|
|
*/
|
|
function toDoc(&$oModule)
|
|
{
|
|
$variables = $oModule->getVariables();
|
|
$variables['error'] = $oModule->getError();
|
|
$variables['message'] = $oModule->getMessage();
|
|
return json_encode($variables);
|
|
}
|
|
|
|
}
|
|
/* End of file JSONDisplayHandler.class.php */
|
|
/* Location: ./classes/display/JSONDisplayHandler.class.php */
|