p('Plugins') ?>

p('Change plugins position') ?>
'search', 'title' => $L->g('Search plugins'))); ?> 'check-square', 'title' => $L->g('Enabled plugins'))); echo ''; foreach ($pluginsInstalled as $plugin) { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } echo '
'; echo '
' . $plugin->name().'
'; echo '
'; if (method_exists($plugin, 'form')) { echo '' . $L->g('Settings') . ''; } // You can not disable a plugin for theme which is active if ($plugin->type() != 'theme') { echo '' . $L->g('Deactivate') . ''; } echo '
'; echo '
'; echo '
' . $plugin->description() . '
'; if (in_array($plugin->type(), array('dashboard','theme','editor'))) { echo '
'.$L->g($plugin->type()).'
'; } echo '
'; echo '' . $plugin->version() . ''; echo ''; echo '' . $plugin->author() . ''; echo '
'; // Plugins not installed echo Bootstrap::formTitle(array('icon' => 'dash-square', 'title' => $L->g('Disabled plugins'))); echo ''; $pluginsNotInstalled = array_diff_key($plugins['all'], $pluginsInstalled); foreach ($pluginsNotInstalled as $plugin) { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } echo '
'; echo '
' . $plugin->name() . '
'; echo '
' . $L->g('Activate') . '
'; echo '
'; echo '
' . $plugin->description() . '
'; if (in_array($plugin->type(), array('dashboard','theme','editor'))) { echo '
'.$L->g($plugin->type()).'
'; } echo '
'; echo '' . $plugin->version() . ''; echo ''; echo '' . $plugin->author() . ''; echo '
';