aboutsummaryrefslogtreecommitdiff
path: root/views/default/river/object
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/river/object')
-rw-r--r--views/default/river/object/album/create.php40
-rw-r--r--views/default/river/object/image/create.php41
-rw-r--r--views/default/river/object/tidypics_batch/create.php66
3 files changed, 0 insertions, 147 deletions
diff --git a/views/default/river/object/album/create.php b/views/default/river/object/album/create.php
deleted file mode 100644
index 29620041f..000000000
--- a/views/default/river/object/album/create.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?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/views/default/river/object/image/create.php b/views/default/river/object/image/create.php
deleted file mode 100644
index 6b68b4d68..000000000
--- a/views/default/river/object/image/create.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?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/views/default/river/object/tidypics_batch/create.php b/views/default/river/object/tidypics_batch/create.php
deleted file mode 100644
index b97c853a3..000000000
--- a/views/default/river/object/tidypics_batch/create.php
+++ /dev/null
@@ -1,66 +0,0 @@
-<?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
-));