diff options
Diffstat (limited to 'views/default/usersettings/plugins_opt')
| -rw-r--r-- | views/default/usersettings/plugins_opt/plugin.php | 49 | 
1 files changed, 26 insertions, 23 deletions
| diff --git a/views/default/usersettings/plugins_opt/plugin.php b/views/default/usersettings/plugins_opt/plugin.php index a7935f2ee..c27212887 100644 --- a/views/default/usersettings/plugins_opt/plugin.php +++ b/views/default/usersettings/plugins_opt/plugin.php @@ -1,33 +1,36 @@  <?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 -	 * @author Curverider Ltd -	 * @link http://elgg.org/ -	 */ +/** + * 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 + * @author Curverider Ltd + * @link http://elgg.org/ + */ -	$plugin = $vars['plugin']; -	$details = $vars['details']; -	 -	$active = $details['active']; -	$manifest = $details['manifest']; -	 -	$user_guid = $details['user_guid']; -	if ($user_guid) $user_guid = $_SESSION['user']->guid; -	 -	if (elgg_view("usersettings/{$plugin}/edit")) {  +$plugin = $vars['plugin']; +$details = $vars['details']; + +$active = $details['active']; +$manifest = $details['manifest']; + +$user_guid = $details['user_guid']; +if ($user_guid) { +	$user_guid = $_SESSION['user']->guid; +} + +if (elgg_view("usersettings/{$plugin}/edit")) {  ?>  <div class="contentWrapper">  	<h3 class="settings"><?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 +<?php +}
\ No newline at end of file | 
