aboutsummaryrefslogtreecommitdiff
path: root/mostviewedimages.php
diff options
context:
space:
mode:
authorGreg Froese <greg.froese@gmail.com>2009-05-10 23:36:42 +0000
committerGreg Froese <greg.froese@gmail.com>2009-05-10 23:36:42 +0000
commit0911bafdcddddd2104e696e6fb44cd77247ade7b (patch)
treecc668805470738d0b4edde0b39778e297598d51c /mostviewedimages.php
parentfe1cce6c8cbf2ee781619ff21b571518aa1a28e9 (diff)
downloadelgg-0911bafdcddddd2104e696e6fb44cd77247ade7b.tar.gz
elgg-0911bafdcddddd2104e696e6fb44cd77247ade7b.tar.bz2
adding in most viewed and recent images pages
Diffstat (limited to 'mostviewedimages.php')
-rw-r--r--mostviewedimages.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/mostviewedimages.php b/mostviewedimages.php
new file mode 100644
index 000000000..0de7c626f
--- /dev/null
+++ b/mostviewedimages.php
@@ -0,0 +1,33 @@
+<?php
+
+ /**
+ * Tidypics full view of an image
+ * Given a GUID, this page will try and display any entity
+ *
+ */
+
+ // Load Elgg engine
+ include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+ $prefix = "my_elgg"; //how do you get the global default?
+ $max = 24;
+ //grab the top views (metadata 'tp_views') for $max number of entities
+ //ignores entity subtypes
+ $sql = "select md.entity_guid, md.owner_guid, md.enabled, ms.string as views from " . $prefix . "metadata md
+ inner join " . $prefix . "metastrings ms on md.value_id = ms.id
+ inner join " . $prefix . "metastrings ms2 on md.name_id = ms2.id and ms2.string = 'tp_views'
+ order by views desc LIMIT $max";
+
+ $result = get_data($sql);
+
+ $entities = array();
+ foreach($result as $entity) {
+ $entities[] = get_entity($entity->entity_guid);
+ }
+
+ $title = "Most viewed images";
+ $area2 = elgg_view_title($title);
+ $area2 .= elgg_view_entity_list($entities, $max, 0, $max);
+ $body = elgg_view_layout('two_column_left_sidebar', '', $area2);
+ page_draw($title, $body);
+?> \ No newline at end of file