.logo {
background-image: url('../img/logo.png');
height: 222px;
width: 409px;
&:after {
background-image: url("../img/bg-helper.png");
content: "";
display: block;
height: 222px;
margin-left: -389px;
position: absolute;
width: 389px;
}
}
public function toJSON($array) {
$encoded= '';
if (is_array ($array)) {
// if (!function_exists('json_encode')) {
// if (@ include_once (XPDO_CORE_PATH . 'json/JSON.php')) {
// $json = new Services_JSON();
// $encoded= $json->encode($array);
// }
// } else {
$encoded= json_encode($array, JSON_UNESCAPED_UNICODE);
//}
}
return $encoded;
}