| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | 
							- <?php
 
- /**
 
-  * Post comment on album river view
 
-  */
 
- $item = $vars['item'];
 
- $comment = $item->getObjectEntity();
 
- $subject = $item->getSubjectEntity();
 
- $target = $item->getTargetEntity();
 
- $subject_link = elgg_view('output/url', array(
 
-         'href' => $subject->getURL(),
 
-         'text' => $subject->name,
 
-         'class' => 'elgg-river-subject',
 
-         'is_trusted' => true,
 
- ));
 
- $target_link = elgg_view('output/url', array(
 
-         'href' => $target->getURL(),
 
-         'text' => $target->getDisplayName(),
 
-         'class' => 'elgg-river-target',
 
-         'is_trusted' => true,
 
- ));
 
- $river_comments_thumbnails = elgg_get_plugin_setting('river_comments_thumbnails', 'tidypics');
 
- if ($river_comments_thumbnails == "small") {
 
-         $album = $target;
 
-         $image = $album->getCoverImage();
 
-         if ($image) {
 
-                 $attachments = elgg_view_entity_icon($image, 'small');
 
-         }
 
- }
 
- else if ($river_comments_thumbnails == "tiny") {
 
-         $album = $target;
 
-         $image = $album->getCoverImage();
 
-         if ($image) {
 
-                 $attachments = elgg_view_entity_icon($image, 'tiny');
 
-         }
 
- }
 
- $summary = elgg_echo('river:comment:object:album', array($subject_link, $target_link));
 
- echo elgg_view('river/elements/layout', array(
 
-         'item' => $vars['item'],
 
-         'attachments' => $attachments,
 
-         'message' => elgg_get_excerpt($comment->description),
 
-         'summary' => $summary,
 
- ));
 
 
  |