diff options
Diffstat (limited to 'mod/sitepages/read.php')
-rw-r--r-- | mod/sitepages/read.php | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/mod/sitepages/read.php b/mod/sitepages/read.php deleted file mode 100644 index 5621c486b..000000000 --- a/mod/sitepages/read.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php -/** - * Elgg read site page - */ - -// Load Elgg engine -define('externalpage',true); -require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - -// set some variables -$type = get_input('sitepages'); - -// Set the title appropriately -$area1 = elgg_view_title(elgg_echo("sitepages:". strtolower($type))); - -//get contents -$contents = elgg_get_entities(array('type' => '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 |