diff options
author | cash <cash.costello@gmail.com> | 2011-12-01 22:00:06 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-12-01 22:00:06 -0500 |
commit | 9b838be94d37d560b1a05f76cd5ecca5d41119fc (patch) | |
tree | 5c068c680943f99a91dcc31db032ed16638ab220 /views/default/river/object/image | |
parent | efdd4b6544e14355f6ae0e6151c6f828271d3913 (diff) | |
download | elgg-9b838be94d37d560b1a05f76cd5ecca5d41119fc.tar.gz elgg-9b838be94d37d560b1a05f76cd5ecca5d41119fc.tar.bz2 |
river views for image and albums - not for batches yet
Diffstat (limited to 'views/default/river/object/image')
-rw-r--r-- | views/default/river/object/image/create.php | 48 |
1 files changed, 29 insertions, 19 deletions
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 @@ <?php +/** + * Image album view + */ -$performed_by = get_entity($vars['item']->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 = "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a>"; -$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 = "<a href='". $album->getURL() . "'>" . $album->title . "</a>"; -$image_link = "<a href=\"" . $image->getURL() . "\">" . $title . "</a>"; +$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 .= "<div class=\"river_content\">"; - -$string .= "<a href=\"" . $image->getURL() . "\"> <img src=\"" . $CONFIG->wwwroot . 'mod/tidypics/thumbnail.php?file_guid=' . $image->guid . '&size=thumb" class="tidypics_album_cover" alt="thumbnail"/> </a>'; -$string .= "</div>"; - -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)), +)); |