From 1336b9e8ed9cc3f9b9b9c4427f1e0f8bccc96f7d Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 8 Mar 2010 15:51:52 +0000 Subject: Site pages will eventually replace the external pages and custom index plugins as well as introduce a new keywords system to enable dynamic content to be displayed without needing to know php or Elgg. This will be handy for frontpage layout/design. git-svn-id: http://code.elgg.org/elgg/trunk@5303 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/sitepages/read.php | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 mod/sitepages/read.php (limited to 'mod/sitepages/read.php') diff --git a/mod/sitepages/read.php b/mod/sitepages/read.php new file mode 100644 index 000000000..5621c486b --- /dev/null +++ b/mod/sitepages/read.php @@ -0,0 +1,31 @@ + 'object', 'subtype' => $type, 'limit' => 1)); + +if($contents){ + foreach($contents as $c){ + $area1 .= elgg_view('page_elements/elgg_content',array('body' => $c->description)); + } +}else{ + $area1 .= elgg_view('page_elements/elgg_content',array('body' => elgg_echo("sitepages:notset"))); +} + +// Display through the correct canvas area +$body = elgg_view_layout("one_column_with_sidebar", "", $area1); + +// Display page +page_draw($title,$body); \ No newline at end of file -- cgit v1.2.3