diff options
Diffstat (limited to 'mod/lightpics/views/default/river/object')
3 files changed, 147 insertions, 0 deletions
diff --git a/mod/lightpics/views/default/river/object/album/create.php b/mod/lightpics/views/default/river/object/album/create.php new file mode 100644 index 000000000..29620041f --- /dev/null +++ b/mod/lightpics/views/default/river/object/album/create.php @@ -0,0 +1,40 @@ +<?php +/** + * Album river view + * + * @author Cash Costello + * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2 + */ + +elgg_load_css('lightbox'); +elgg_load_js('lightbox'); +elgg_load_js('tidypics'); + +$album = $vars['item']->getObjectEntity(); + +$album_river_view = elgg_get_plugin_setting('album_river_view', 'tidypics'); +if ($album_river_view == "cover") { + $image = $album->getCoverImage(); + if ($image) { + $attachments = elgg_view_entity_icon($image, 'tiny'); + } +} else { + $images = $album->getImages(7); + + if (count($images)) { + $attachments = '<ul class="tidypics-river-list elgg-lightbox-gallery">'; + foreach($images as $image) { + $attachments .= '<li class="tidypics-photo-item">'; + $attachments .= elgg_view_entity_icon($image, 'tiny', array( + 'link_class' => 'tidypics-lightbox elgg-lightbox-photo', + )); + $attachments .= '</li>'; + } + $attachments .= '</ul>'; + } +} + +echo elgg_view('river/elements/layout', array( + 'item' => $vars['item'], + 'attachments' => $attachments, +)); diff --git a/mod/lightpics/views/default/river/object/image/create.php b/mod/lightpics/views/default/river/object/image/create.php new file mode 100644 index 000000000..6b68b4d68 --- /dev/null +++ b/mod/lightpics/views/default/river/object/image/create.php @@ -0,0 +1,41 @@ +<?php +/** + * Image album view + * + * @author Cash Costello + * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2 + */ + +elgg_load_css('lightbox'); +elgg_load_js('lightbox'); +elgg_load_js('tidypics'); + +$subject = $vars['item']->getSubjectEntity(); +$subject_link = elgg_view('output/url', array( + 'href' => $subject->getURL(), + 'text' => $subject->name, + 'class' => 'elgg-river-subject', + 'is_trusted' => true, +)); + +$image = $vars['item']->getObjectEntity(); +$attachments = elgg_view_entity_icon($image, 'tiny'); + +$image_link = elgg_view('output/url', array( + 'href' => $image->getURL(), + 'text' => $image->getTitle(), + 'is_trusted' => true, + 'class' => 'elgg-lightbox-photo', +)); + +$album_link = elgg_view('output/url', array( + 'href' => $image->getContainerEntity()->getURL(), + 'text' => $image->getContainerEntity()->getTitle(), + 'is_trusted' => true, +)); + +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)), +)); diff --git a/mod/lightpics/views/default/river/object/tidypics_batch/create.php b/mod/lightpics/views/default/river/object/tidypics_batch/create.php new file mode 100644 index 000000000..b97c853a3 --- /dev/null +++ b/mod/lightpics/views/default/river/object/tidypics_batch/create.php @@ -0,0 +1,66 @@ +<?php +/** + * Batch river view + * + * @author Cash Costello + * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2 + */ + +elgg_load_css('lightbox'); +elgg_load_js('lightbox'); +elgg_load_js('tidypics'); + +$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, + 'type' => 'object', + 'subtype' => 'image', + 'offset' => 0, +)); + +$album = $batch->getContainerEntity(); +if (!$album) { + // something went quite wrong - this batch has no associated album + return true; +} +$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 = '<ul class="tidypics-river-list elgg-lightbox-gallery">'; + foreach($images as $image) { + $attachments .= '<li class="tidypics-photo-item">'; + $attachments .= elgg_view_entity_icon($image, 'tiny', array( + 'link_class' => 'tidypics-lightbox elgg-lightbox-photo', + )); + $attachments .= '</li>'; + } + $attachments .= '</ul>'; +} + +if (count($images) == 1) { + $summary = elgg_echo('image:river:created', array($subject_link, $album_link)); +} else { + $summary = elgg_echo('image:river:created:multiple', array($subject_link, count($images), $album_link)); +} + +echo elgg_view('river/elements/layout', array( + 'item' => $vars['item'], + 'attachments' => $attachments, + 'summary' => $summary +)); |