"; echo Bootstrap::pageTitle(array('title' => $L->g('Sidebar'), 'icon' => 'list')); echo "
"; echo Bootstrap::link(array( 'title' => $L->g('Reorder sidebar'), 'href' => HTML_PATH_ADMIN_ROOT . 'plugins-position', 'icon' => 'arrows', 'class' => 'btn btn-outline-secondary' )); echo "
"; ?>

g("Activate or deactivate here plugins that'll be shown in the sidebar") ?>

$L->g('Search plugins'))); ?>
'; echo $L->g('Enabled plugins'); echo '
'; // Show installed plugins foreach ($pluginsInstalled as $plugin) { if ($plugin->type() != 'widget') { // Do not display theme's plugins continue; } echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } echo '
' . $plugin->name() . '
'; if (method_exists($plugin, 'form')) { echo '' . $L->g('Settings') . ''; } echo '' . $L->g('Deactivate') . ''; echo '
'; echo '
'; echo $plugin->description(); echo ''; echo '' . $plugin->version() . ''; echo ' ' . $plugin->author() . '
'; echo '
'; echo $L->g('Disabled plugins'); echo '
'; // Plugins not installed $pluginsNotInstalled = array_diff_key($plugins['all'], $pluginsInstalled); foreach ($pluginsNotInstalled as $plugin) { if ($plugin->type() != 'widget') { continue; } echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } echo '
' . $plugin->name() . '
'; echo $plugin->description(); echo ''; echo '' . $plugin->version() . ''; echo ' ' . $plugin->author() . '
';