aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-08-22 19:18:44 +0000
committerCash Costello <cash.costello@gmail.com>2009-08-22 19:18:44 +0000
commitd3bf7525d2781635e631be87a7e40fec9739ee92 (patch)
tree96a6198fe66a2166b8fd13c259b7bb0a165dd029
parent4f3dc431f61501b8898646ef70647655934c47ad (diff)
downloadelgg-d3bf7525d2781635e631be87a7e40fec9739ee92.tar.gz
elgg-d3bf7525d2781635e631be87a7e40fec9739ee92.tar.bz2
added a wrapper for easier page creation and better support for rss feeds
-rw-r--r--mostrecentimages.php18
-rw-r--r--views/default/tidypics/content_wrapper.php8
2 files changed, 19 insertions, 7 deletions
diff --git a/mostrecentimages.php b/mostrecentimages.php
index 9b2c05c60..964216fe9 100644
--- a/mostrecentimages.php
+++ b/mostrecentimages.php
@@ -1,21 +1,25 @@
<?php
/**
- * Most recent uploaded images
+ * Most recently uploaded images
*
*/
// Load Elgg engine
- include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+ include_once dirname(dirname(dirname(__FILE__))) . "/engine/start.php";
- $max = 8;
+ // 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');
- $area2 = elgg_view_title($title);
- $area2 .= '<div class="contentWrapper">';
- $area2 .= $images;
- $area2 .= '</div>';
+
+ // 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
diff --git a/views/default/tidypics/content_wrapper.php b/views/default/tidypics/content_wrapper.php
new file mode 100644
index 000000000..08fd74aff
--- /dev/null
+++ b/views/default/tidypics/content_wrapper.php
@@ -0,0 +1,8 @@
+<?php
+ echo elgg_view_title($vars['title']);
+?>
+<div class="contentWrapper">
+<?php
+ echo $vars['content'];
+?>
+</div> \ No newline at end of file