aboutsummaryrefslogtreecommitdiff
path: root/admin/site.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/site.php')
-rw-r--r--admin/site.php37
1 files changed, 17 insertions, 20 deletions
diff --git a/admin/site.php b/admin/site.php
index c66dc290a..5e0f2a6a0 100644
--- a/admin/site.php
+++ b/admin/site.php
@@ -1,26 +1,23 @@
<?php
+/**
+ * Elgg administration site system index
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
- /**
- * Elgg administration site system index
- *
- * @package Elgg
- * @subpackage Core
+// Get the Elgg framework
+require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
- * @author Curverider Ltd
+// Make sure only valid admin users can see this
+admin_gatekeeper();
- * @link http://elgg.org/
- */
+// Display main admin menu
- // Get the Elgg framework
- require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
+$title = elgg_view_title(elgg_echo('admin:site'));
+$main_box = elgg_view("admin/site");
+$content = elgg_view_layout("two_column_left_sidebar", '', $title . $main_box);
- // Make sure only valid admin users can see this
- admin_gatekeeper();
-
- // Set admin user for user block
- //set_page_owner($_SESSION['guid']);
-
- // Display main admin menu
- page_draw(elgg_echo("admin:site"),elgg_view_layout("two_column_left_sidebar",'', elgg_view_title(elgg_echo('admin:site')) . elgg_view("admin/site")));
-
-?> \ No newline at end of file
+page_draw(elgg_echo("admin:site"), $content); \ No newline at end of file