$L->g('Plugins'), 'icon' => 'puzzle-piece')); echo Bootstrap::link(array( 'title' => $L->g('Change the position of the plugins'), 'href' => HTML_PATH_ADMIN_ROOT . 'plugins-position', 'icon' => 'arrows' )); echo Bootstrap::formTitle(array('title' => $L->g('Search plugins'))); ?> $L->g('Enabled plugins'))); echo ' '; // Show installed plugins foreach ($pluginsInstalled as $plugin) { if ($plugin->type() == 'theme') { // 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 Bootstrap::formTitle(array('title' => $L->g('Disabled plugins'))); echo ' '; // Plugins not installed $pluginsNotInstalled = array_diff_key($plugins['all'], $pluginsInstalled); foreach ($pluginsNotInstalled as $plugin) { if ($plugin->type() == 'theme') { // Do not display theme's plugins continue; } echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } echo '
' . $plugin->name() . '
'; echo $plugin->description(); echo ''; echo '' . $plugin->version() . ''; echo ' ' . $plugin->author() . '
';