$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'=>'elevator' )); echo ' '; foreach ($plugins['all'] as $plugin) { echo 'installed()?'class="bg-light"':'').'> '; echo ''; echo ''; echo ''; echo ''; } echo '
'.$L->g('Name').' '.$L->g('Description').' '.$L->g('Version').' '.$L->g('Author').'
'.$plugin->name().'
'; if ($plugin->installed()) { if (method_exists($plugin, 'form')) { echo ''.$L->g('Settings').''; } echo ''.$L->g('Deactivate').''; } else { echo ''.$L->g('Activate').''; } echo '
'; echo '
'; echo $plugin->description(); echo ''; echo ''.$plugin->version().''; echo ' '.$plugin->author().'
';