From 9b838be94d37d560b1a05f76cd5ecca5d41119fc Mon Sep 17 00:00:00 2001 From: cash Date: Thu, 1 Dec 2011 22:00:06 -0500 Subject: river views for image and albums - not for batches yet --- views/default/river/object/image/create.php | 48 +++++++++++++++++------------ 1 file changed, 29 insertions(+), 19 deletions(-) (limited to 'views/default/river/object/image/create.php') diff --git a/views/default/river/object/image/create.php b/views/default/river/object/image/create.php index 9de043e91..091956125 100644 --- a/views/default/river/object/image/create.php +++ b/views/default/river/object/image/create.php @@ -1,24 +1,34 @@ subject_guid); -$image = get_entity($vars['item']->object_guid); -if ($image->title) { - $title = $image->title; -} else { - $title = elgg_echo("untitled"); -} +$subject = $vars['item']->getSubjectEntity(); +$subject_link = elgg_view('output/url', array( + 'href' => $subject->getURL(), + 'text' => $subject->name, + 'class' => 'elgg-river-subject', + 'is_trusted' => true, +)); -$url = "getURL()}\">{$performed_by->name}"; -$album = get_entity($image->container_guid); +$image = $vars['item']->getObjectEntity(); +$attachments = elgg_view('output/img', array( + 'src' => $image->getSrcUrl('thumb'), +)); +$image_link = elgg_view('output/url', array( + 'href' => $image->getURL(), + 'text' => $image->getTitle(), + 'is_trusted' => true, +)); -$album_link = "" . $album->title . ""; -$image_link = "getURL() . "\">" . $title . ""; +$album_link = elgg_view('output/url', array( + 'href' => $image->getContainerEntity()->getURL(), + 'text' => $image->getContainerEntity()->getTitle(), + 'is_trusted' => true, +)); -$string = sprintf(elgg_echo("image:river:created"), $url, $image_link, $album_link); - -$string .= "
"; - -$string .= "getURL() . "\"> wwwroot . 'mod/tidypics/thumbnail.php?file_guid=' . $image->guid . '&size=thumb" class="tidypics_album_cover" alt="thumbnail"/> '; -$string .= "
"; - -echo $string; +echo elgg_view('river/elements/layout', array( + 'item' => $vars['item'], + 'attachments' => $attachments, + 'summary' => elgg_echo('image:river:created', array($subject_link, $image_link, $album_link)), +)); -- cgit v1.2.3