From af26a60db00294af093bf8e385d3e628de1c47d2 Mon Sep 17 00:00:00 2001 From: Greg Froese Date: Sat, 16 May 2009 00:16:40 +0000 Subject: counting now using annotations --- friendmostviewed.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'friendmostviewed.php') 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(); -- cgit v1.2.3