mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 11:11:39 +09:00
57 lines
1.1 KiB
PHP
57 lines
1.1 KiB
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
|
|
*/
|
|
public function toDoc($oModule)
|
|
{
|
|
$variables = $oModule->getVariables();
|
|
$variables['error'] = $oModule->getError();
|
|
$variables['message'] = $oModule->getMessage();
|
|
|
|
$temp = array();
|
|
foreach ($variables as $key => $value)
|
|
{
|
|
if (self::_isNumericArray($value))
|
|
{
|
|
$temp[$key] = array_values($value);
|
|
}
|
|
else
|
|
{
|
|
$temp[$key] = $value;
|
|
}
|
|
}
|
|
|
|
return json_encode($temp);
|
|
}
|
|
|
|
/**
|
|
* Check if an array only has numeric keys.
|
|
*
|
|
* @param array $array
|
|
* @return bool
|
|
*/
|
|
protected static function _isNumericArray($array)
|
|
{
|
|
if (!is_array($array) || !count($array))
|
|
{
|
|
return false;
|
|
}
|
|
foreach ($array as $key => $value)
|
|
{
|
|
if (!is_numeric($key))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
/* End of file JSONDisplayHandler.class.php */
|
|
/* Location: ./classes/display/JSONDisplayHandler.class.php */
|