aboutsummaryrefslogtreecommitdiff
path: root/friendmostviewed.php
diff options
context:
space:
mode:
authorGreg Froese <greg.froese@gmail.com>2009-05-16 00:16:40 +0000
committerGreg Froese <greg.froese@gmail.com>2009-05-16 00:16:40 +0000
commitaf26a60db00294af093bf8e385d3e628de1c47d2 (patch)
treeee5c659b777a01ea178939065523892e8afaa991 /friendmostviewed.php
parent711c6040d3a5e3b479a1326c5afc6c3a689c8ad5 (diff)
downloadelgg-af26a60db00294af093bf8e385d3e628de1c47d2.tar.gz
elgg-af26a60db00294af093bf8e385d3e628de1c47d2.tar.bz2
counting now using annotations
Diffstat (limited to 'friendmostviewed.php')
-rw-r--r--friendmostviewed.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/friendmostviewed.php b/friendmostviewed.php
index a196f51af..4f832b228 100644
--- a/friendmostviewed.php
+++ b/friendmostviewed.php
@@ -40,6 +40,19 @@
WHERE ent.owner_guid = " . $user->guid . "
ORDER BY (views+0) DESC LIMIT $max";
+
+ $sql = "SELECT ent.guid, count( * ) AS views
+ FROM `my_elggentities` ent
+ INNER JOIN " . $prefix . "entity_subtypes sub ON ent.subtype = sub.id
+ AND sub.subtype = 'image'
+ INNER JOIN " . $prefix . "annotations ann1 ON ann1.entity_guid = ent.guid
+ INNER JOIN " . $prefix . "metastrings ms ON ms.id = ann1.name_id
+ AND ms.string = 'tp_view'
+ WHERE ann1.owner_guid = " . $user->guid . "
+ GROUP BY ent.guid
+ ORDER BY views DESC
+ LIMIT $max";
+
$result = get_data($sql);
$entities = array();