From 092197523f135b1aec3de8ff50df0dcf724c8094 Mon Sep 17 00:00:00 2001 From: cash Date: Sat, 3 Dec 2011 15:42:40 -0500 Subject: river finished up for image, batch, album --- .../default/river/object/tidypics_batch/create.php | 79 +++++++++++----------- 1 file changed, 39 insertions(+), 40 deletions(-) (limited to 'views/default/river/object/tidypics_batch') diff --git a/views/default/river/object/tidypics_batch/create.php b/views/default/river/object/tidypics_batch/create.php index e7a4d1409..1dfce6925 100644 --- a/views/default/river/object/tidypics_batch/create.php +++ b/views/default/river/object/tidypics_batch/create.php @@ -1,51 +1,50 @@ subject_guid); -$batch = get_entity($vars['item']->object_guid); -$album = get_entity($batch->container_guid); - -if (!$batch || !$album) { - return true; -} +$batch = $vars['item']->getObjectEntity(); // Get images related to this batch $images = elgg_get_entities_from_relationship(array( - 'relationship' => 'belongs_to_batch', - 'relationship_guid' => $batch->getGUID(), - 'inverse_relationship' => true, - 'types' => array('object'), - 'subtypes' => array('image'), - 'offset' => 0, - )); - -// nothing to show -if (!$images) { - return true; -} - -$user_link = "getURL()}\">{$performed_by->name}"; -$album_link = "" . $album->title . ""; -if (count($images) > 1) { - $image_text = elgg_echo("image:river:created:multiple"); - $string = sprintf($image_text, $user_link, count($images), $album_link); -} else { - $image_text = elgg_echo("image:river:created"); - $title = $images[0]->title; - if (!$title) { - $title = elgg_echo("untitled"); - } - $image_link = "getURL() . "\">" . $title . ""; - $string = sprintf($image_text, $user_link, $image_link, $album_link); -} - -$string .= "
"; + 'relationship' => 'belongs_to_batch', + 'relationship_guid' => $batch->getGUID(), + 'inverse_relationship' => true, + 'type' => 'object', + 'subtype' => 'image', + 'offset' => 0, +)); + +$album = $batch->getContainerEntity(); +$album_link = elgg_view('output/url', array( + 'href' => $album->getURL(), + 'text' => $album->getTitle(), + 'is_trusted' => true, +)); + +$subject = $vars['item']->getSubjectEntity(); +$subject_link = elgg_view('output/url', array( + 'href' => $subject->getURL(), + 'text' => $subject->name, + 'class' => 'elgg-river-subject', + 'is_trusted' => true, +)); if (count($images)) { + $attachments = ''; } -$string .= "
"; - -echo $string; +echo elgg_view('river/elements/layout', array( + 'item' => $vars['item'], + 'attachments' => $attachments, + 'summary' => elgg_echo('image:river:created:multiple', array($subject_link, count($images), $album_link)), +)); -- cgit v1.2.3