diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-10-20 09:36:15 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-10-20 09:36:15 +0200 |
commit | f7601756e99fcedb062d1f7ac3e53431ea72642d (patch) | |
tree | 5aae7959b0b2d16fc7e374335ddc85984b9a482d /include/ItemObject.php | |
parent | 54059b2f153433f7154a754a77dafba1cc97a1a2 (diff) | |
download | volse-hubzilla-f7601756e99fcedb062d1f7ac3e53431ea72642d.tar.gz volse-hubzilla-f7601756e99fcedb062d1f7ac3e53431ea72642d.tar.bz2 volse-hubzilla-f7601756e99fcedb062d1f7ac3e53431ea72642d.zip |
create photo object if feature large photos is enabled and display those slightly different
Diffstat (limited to 'include/ItemObject.php')
-rw-r--r-- | include/ItemObject.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index ee431dccb..9fe86118c 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -278,7 +278,16 @@ class Item extends BaseObject { $children = $this->get_children(); - $is_photo = ((($item['resource_type'] == 'photo') && (feature_enabled($conv->get_profile_owner(),'large_photos'))) ? true : false); + $is_photo = (($item['obj_type'] == ACTIVITY_OBJ_PHOTO) ? true : false); + if($is_photo) { + $object = json_decode($item['object'],true); + $photo = array( + 'url' => rawurldecode($object['id']) . '?zid=' . $observer['xchan_addr'], + 'link' => rawurldecode(get_rel_link($object['link'],'alternate')) . '?zid=' . $observer['xchan_addr'], + 'width' => $object['width'], + 'height' => $object['height'] + ); + } $has_tags = (($body['tags'] || $body['categories'] || $body['mentions'] || $body['attachments'] || $body['folders']) ? true : false); @@ -334,6 +343,7 @@ class Item extends BaseObject { 'owner_photo' => $this->get_owner_photo(), 'owner_name' => $this->get_owner_name(), 'is_photo' => $is_photo, + 'photo' => (($is_photo) ? $photo : ''), 'has_tags' => $has_tags, // Item toolbar buttons |