diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-09-30 23:04:47 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-09-30 23:04:47 +0000 |
commit | 5d090b23cca3b0f831b29fe4dad2926f1b3b33fc (patch) | |
tree | 562058ca452170e1556b26627cbae6ef63ae11f0 /settings/plugins.php | |
parent | dc5813300352f43b0ed67e0811967e1ec12628c3 (diff) | |
download | elgg-5d090b23cca3b0f831b29fe4dad2926f1b3b33fc.tar.gz elgg-5d090b23cca3b0f831b29fe4dad2926f1b3b33fc.tar.bz2 |
Refs #2344 - moves settings pages into the pages directory
git-svn-id: http://code.elgg.org/elgg/trunk@6986 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'settings/plugins.php')
-rw-r--r-- | settings/plugins.php | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/settings/plugins.php b/settings/plugins.php deleted file mode 100644 index 719634d52..000000000 --- a/settings/plugins.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php -/** - * Elgg user plugin settings. - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ - -require_once(dirname(dirname(__FILE__)) . "/engine/start.php"); - -// Make sure only valid users can see this -gatekeeper(); - -// Make sure we don't open a security hole ... -if ((!page_owner_entity()) || (!page_owner_entity()->canEdit())) { - set_page_owner(get_loggedin_userid()); -} - -$content = elgg_view_title(elgg_echo("usersettings:plugins")); -$content .= elgg_view("usersettings/plugins", array('installed_plugins' => get_installed_plugins())); - -$body = elgg_view_layout('one_column_with_sidebar', $content); - -page_draw(elgg_echo("usersettings:plugins"), $body); |