From 1827bae9adc9aaad0c08e47f7ca8aae81a814065 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sat, 22 Aug 2009 19:32:33 +0000 Subject: moved all most recent pages to pages/lists/ --- pages/lists/friendmostrecent.php | 45 ++++++++++++++++++++++++++++++++++++++++ pages/lists/mostrecentimages.php | 25 ++++++++++++++++++++++ pages/lists/yourmostrecent.php | 34 ++++++++++++++++++++++++++++++ 3 files changed, 104 insertions(+) create mode 100644 pages/lists/friendmostrecent.php create mode 100644 pages/lists/mostrecentimages.php create mode 100644 pages/lists/yourmostrecent.php (limited to 'pages') diff --git a/pages/lists/friendmostrecent.php b/pages/lists/friendmostrecent.php new file mode 100644 index 000000000..5f71d5679 --- /dev/null +++ b/pages/lists/friendmostrecent.php @@ -0,0 +1,45 @@ +name) || page_owner_entity()->name == '') { + $friendname = get_input('username'); + } else { + $friendname = page_owner_entity()->name; + }; + + //there has to be a better way to do this + if(!$friendname) { + $page = get_input("page"); + list($pagename, $friendname) = split("/", $page); + } + $user = get_user_by_username($friendname); + + global $CONFIG; + $prefix = $CONFIG->dbprefix; + $max = 24; + //grab the top views (metadata 'tp_views') for $max number of entities + //ignores entity subtypes + + $sql = "SELECT ent.guid as entity_guid FROM " . $prefix . "entities ent + INNER JOIN " . $prefix . "entity_subtypes sub ON ent.subtype = sub.id AND sub.subtype = 'image' + WHERE ent.owner_guid = " . $user->guid . " + ORDER BY ent.guid DESC + LIMIT $max"; + $result = get_data($sql); + $entities = array(); + foreach($result as $entity) { + $entities[] = get_entity($entity->entity_guid); + } + + $title = sprintf(elgg_echo("tidypics:friendmostrecent"), $friendname); + $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 diff --git a/pages/lists/mostrecentimages.php b/pages/lists/mostrecentimages.php new file mode 100644 index 000000000..5332d8e9e --- /dev/null +++ b/pages/lists/mostrecentimages.php @@ -0,0 +1,25 @@ + $title, 'content' => $images,)); + + $body = elgg_view_layout('two_column_left_sidebar', '', $area2); + + page_draw($title, $body); +?> \ No newline at end of file diff --git a/pages/lists/yourmostrecent.php b/pages/lists/yourmostrecent.php new file mode 100644 index 000000000..eb124c84d --- /dev/null +++ b/pages/lists/yourmostrecent.php @@ -0,0 +1,34 @@ +dbprefix; + $max = 24; + //grab the top views (metadata 'tp_views') for $max number of entities + //ignores entity subtypes + + $sql = "SELECT ent.guid as entity_guid FROM " . $prefix . "entities ent + INNER JOIN " . $prefix . "entity_subtypes sub ON ent.subtype = sub.id AND sub.subtype = 'image' + WHERE ent.owner_guid = " . $viewer->guid . " + ORDER BY ent.guid DESC + LIMIT $max"; + + $result = get_data($sql); + $entities = array(); + foreach($result as $entity) { + $entities[] = get_entity($entity->entity_guid); + } + + $title = elgg_echo("tidypics:yourmostrecent"); + $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 -- cgit v1.2.3