From 45631d83520b36669848e599c5bf8a7fb7c3a3f9 Mon Sep 17 00:00:00 2001 From: cash Date: Wed, 2 Feb 2011 01:31:05 +0000 Subject: backward compatibility code for plugins that add admin pages git-svn-id: http://code.elgg.org/elgg/trunk@7985 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/page/shells/default.php | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'views/default/page/shells') diff --git a/views/default/page/shells/default.php b/views/default/page/shells/default.php index 8b53bc16d..b239b6339 100644 --- a/views/default/page/shells/default.php +++ b/views/default/page/shells/default.php @@ -11,6 +11,16 @@ * @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"); -- cgit v1.2.3