aboutsummaryrefslogtreecommitdiff
path: root/views/default/widgets/latest_photos/content.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/widgets/latest_photos/content.php')
-rw-r--r--views/default/widgets/latest_photos/content.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/views/default/widgets/latest_photos/content.php b/views/default/widgets/latest_photos/content.php
deleted file mode 100644
index 8a3bb4891..000000000
--- a/views/default/widgets/latest_photos/content.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-/**
- * Display the latest photos uploaded by an individual
- *
- * @author Cash Costello
- * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
- */
-
-echo elgg_list_entities(array(
- 'type' => 'object',
- 'subtype' => 'image',
- 'limit' => $vars['entity']->num_display,
- 'owner_guid' => elgg_get_page_owner_guid(),
- 'full_view' => false,
- 'list_type' => 'gallery',
- 'list_type_toggle' => false,
- 'gallery_class' => 'tidypics-gallery-widget',
-));