From 92cfe78f70407552bc3128640d28c2f969b28161 Mon Sep 17 00:00:00 2001 From: cash Date: Sat, 26 Feb 2011 22:29:07 +0000 Subject: moved admin messages into admin page shell git-svn-id: http://code.elgg.org/elgg/trunk@8498 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/admin.php | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'engine/lib/admin.php') diff --git a/engine/lib/admin.php b/engine/lib/admin.php index 0ea029cdc..1e4b63cdd 100644 --- a/engine/lib/admin.php +++ b/engine/lib/admin.php @@ -280,14 +280,12 @@ function admin_pagesetup() { * @return void */ function admin_settings_page_handler($page) { - global $CONFIG; admin_gatekeeper(); elgg_admin_add_plugin_settings_menu(); elgg_set_context('admin'); elgg_unregister_css('elgg'); - $url = elgg_get_simplecache_url('js', 'admin'); elgg_register_js($url, 'admin'); @@ -313,9 +311,7 @@ function admin_settings_page_handler($page) { $view = 'admin/plugin_settings'; $plugin = elgg_get_plugin_from_id($page[1]); $vars['plugin'] = $plugin; - - // @todo ??? - $title = elgg_echo("admin:plugin_settings:{$page[1]}"); + $title = elgg_echo("admin:{$page[0]}"); } else { $view = 'admin/' . implode('/', $page); @@ -325,21 +321,12 @@ function admin_settings_page_handler($page) { } } - // allow a place to store helper views outside of the web-accessible views + // gets content and prevents direct access to 'components' views if ($page[0] == 'components' || !($content = elgg_view($view, $vars))) { $title = elgg_echo('admin:unknown_section'); $content = elgg_echo('admin:unknown_section'); } - $notices_html = ''; - if ($notices = elgg_get_admin_notices()) { - foreach ($notices as $notice) { - $notices_html .= elgg_view_entity($notice); - } - - $content = "
$notices_html
$content"; - } - $body = elgg_view_layout('admin', array('content' => $content, 'title' => $title)); echo elgg_view_page($title, $body, 'admin'); } -- cgit v1.2.3