aboutsummaryrefslogtreecommitdiff
path: root/views/default/page/shells/default.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/page/shells/default.php')
-rw-r--r--views/default/page/shells/default.php37
1 files changed, 0 insertions, 37 deletions
diff --git a/views/default/page/shells/default.php b/views/default/page/shells/default.php
deleted file mode 100644
index b239b6339..000000000
--- a/views/default/page/shells/default.php
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-/**
- * Elgg pageshell
- * The standard HTML page shell that everything else fits into
- *
- * @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()
- */
-
-// backward compatability support for plugins that are not using the new approach
-// of routing through pg/admin. See reportedcontent plugin for a simple example.
-if (elgg_get_context() == 'admin') {
- elgg_deprecated_notice("admin plugins should route through pg/admin.", 1.8);
- elgg_admin_add_plugin_settings_menu();
- elgg_unregister_css('screen');
- echo elgg_view('page/shells/admin', $vars);
- return true;
-}
-
-// Set the content type
-header("Content-type: text/html; charset=UTF-8");
-
-echo elgg_view('page/elements/html_begin', $vars);
-
-echo '<div class="elgg-page elgg-classic">';
-echo elgg_view('page/elements/messages', array('object' => $vars['sysmessages']));
-echo elgg_view('page/elements/topbar', $vars);
-echo elgg_view('page/elements/header', $vars);
-echo elgg_view('page/elements/body', $vars);
-echo elgg_view('page/elements/footer', $vars);
-echo '</div>';
-
-echo elgg_view('page/elements/html_end', $vars);