aboutsummaryrefslogtreecommitdiff
path: root/views/default/page/admin.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/page/admin.php')
-rw-r--r--views/default/page/admin.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/views/default/page/admin.php b/views/default/page/admin.php
new file mode 100644
index 000000000..211bd4037
--- /dev/null
+++ b/views/default/page/admin.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * Elgg pageshell for the admin area
+ *
+ * @package Elgg
+ * @subpackage Core
+ *
+ * @uses $vars['title'] The page title
+ * @uses $vars['body'] The main content of the page
+ * @uses $vars['sysmessages'] A 2d array of various message registers, passed from system_messages()
+ */
+
+// Set the content type
+header("Content-type: text/html; charset=UTF-8");
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<?php echo elgg_view('page/elements/head', $vars); ?>
+</head>
+<body>
+ <div class="elgg-page elgg-page-admin">
+ <?php echo $vars['body']; ?>
+ </div>
+ <?php echo elgg_view('footer/analytics'); ?>
+</body>
+
+</html> \ No newline at end of file