diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-08-22 19:32:33 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-08-22 19:32:33 +0000 |
commit | 1827bae9adc9aaad0c08e47f7ca8aae81a814065 (patch) | |
tree | ba37df66cbdbaa07bc043be259ac79b4376eb45d /pages/lists/mostrecentimages.php | |
parent | d3bf7525d2781635e631be87a7e40fec9739ee92 (diff) | |
download | elgg-1827bae9adc9aaad0c08e47f7ca8aae81a814065.tar.gz elgg-1827bae9adc9aaad0c08e47f7ca8aae81a814065.tar.bz2 |
moved all most recent pages to pages/lists/
Diffstat (limited to 'pages/lists/mostrecentimages.php')
-rw-r--r-- | pages/lists/mostrecentimages.php | 25 |
1 files changed, 25 insertions, 0 deletions
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 @@ +<?php + + /** + * Most recently uploaded images + * + */ + + // Load Elgg engine + include_once dirname(dirname(dirname(dirname(dirname(__FILE__))))) . "/engine/start.php"; + + // how many do we display + $max = 12; + + // grab the html to display the images + $images = list_entities("object", "image", 0, $max, false, false, true); + + $title = elgg_echo('tidypics:mostrecent'); + + // this view takes care of the title on the main column and the content wrapper + $area2 = elgg_view('tidypics/content_wrapper', array('title' => $title, 'content' => $images,)); + + $body = elgg_view_layout('two_column_left_sidebar', '', $area2); + + page_draw($title, $body); +?>
\ No newline at end of file |