本文整理汇总了PHP中Idno\Common\Entity::jsonSerialize方法的典型用法代码示例。如果您正苦于以下问题:PHP Entity::jsonSerialize方法的具体用法?PHP Entity::jsonSerialize怎么用?PHP Entity::jsonSerialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Idno\Common\Entity
的用法示例。
在下文中一共展示了Entity::jsonSerialize方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: jsonSerialize
/**
* Extend json serialisable to include some extra data
*/
public function jsonSerialize()
{
$object = parent::jsonSerialize();
// Add some thumbs
$object['thumbnails'] = [];
$sizes = \Idno\Core\site()->events()->dispatch('photo/thumbnail/getsizes', new \Idno\Core\Event(array('sizes' => ['large' => 800, 'medium' => 400, 'small' => 200])));
foreach ($sizes->data()['sizes'] as $label => $size) {
$varname = "thumbnail_{$label}";
$object['thumbnails'][$label] = $this->{$varname};
}
return $object;
}
示例2: jsonSerialize
/**
* Extend json serialisable to include some extra data
*/
public function jsonSerialize()
{
$object = parent::jsonSerialize();
// Add some thumbs
$object['thumbnails'] = array();
$sizes = \Idno\Core\Idno::site()->events()->dispatch('photo/thumbnail/getsizes', new \Idno\Core\Event(array('sizes' => array('large' => 800, 'medium' => 400, 'small' => 200))));
$eventdata = $sizes->data();
foreach ($eventdata['sizes'] as $label => $size) {
$varname = "thumbnail_{$label}";
$object['thumbnails'][$label] = preg_replace('/^(https?:\\/\\/\\/)/', \Idno\Core\Idno::site()->config()->url, $this->{$varname});
}
return $object;
}
示例3: jsonSerialize
public function jsonSerialize()
{
$data = parent::jsonSerialize();
$data['image'] = array('url' => $this->getIcon());
return $data;
}