diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-17 20:36:36 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-17 20:36:36 +0000 |
commit | db787a3ab93da0c2141d33f3058f9dc2f34d6f2a (patch) | |
tree | dca419a399cb00f45c227aed7a62993b089e0f27 /views/default/usersettings/plugins_opt/plugin.php | |
parent | c2add32bbf281d488deb26343cf059e3347fe525 (diff) | |
download | elgg-db787a3ab93da0c2141d33f3058f9dc2f34d6f2a.tar.gz elgg-db787a3ab93da0c2141d33f3058f9dc2f34d6f2a.tar.bz2 |
reorganized the settings views and updated the pages to use new layout
git-svn-id: http://code.elgg.org/elgg/trunk@7663 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/usersettings/plugins_opt/plugin.php')
-rw-r--r-- | views/default/usersettings/plugins_opt/plugin.php | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/views/default/usersettings/plugins_opt/plugin.php b/views/default/usersettings/plugins_opt/plugin.php deleted file mode 100644 index 981d8d937..000000000 --- a/views/default/usersettings/plugins_opt/plugin.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php -/** - * Elgg plugin manifest class - * - * This file renders a plugin for the admin screen, including active/deactive, manifest details & display plugin - * settings. - * - * @package Elgg - * @subpackage Core - */ - - -$plugin = $vars['plugin']; -$details = $vars['details']; - -$active = $details['active']; -$manifest = $details['manifest']; - -$user_guid = $details['user_guid']; -if ($user_guid) { - $user_guid = get_loggedin_userid(); -} - -if (elgg_view("usersettings/{$plugin}/edit")) { -?> -<div class="user-settings"> - <h3><?php echo elgg_echo($plugin); ?></h3> - - <div id="<?php echo $plugin; ?>_settings"> - <?php echo elgg_view("object/plugin", array('plugin' => $plugin, 'entity' => find_plugin_usersettings($plugin, $user_guid), 'prefix' => 'user')) ?> - </div> -</div> -<?php -}
\ No newline at end of file |