Changeset 3335:4f31d229344d
- Timestamp:
- 09/01/16 14:30:15 (9 years ago)
- Branch:
- default
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/lib.moduleslist.php
r3333 r3335 754 754 755 755 $config = !empty($module['root']) && file_exists(path::real($module['root'].'/_config.php')); 756 757 if ($config || !empty($module['section']) || !empty($module['tags']) || !empty($module['settings'])) { 756 $index = !empty($module['root']) && file_exists(path::real($module['root'].'/index.php')); 757 758 if ($config || $index || !empty($module['section']) || !empty($module['tags']) || !empty($module['settings'])) { 758 759 echo 759 760 '<div><ul class="mod-more">'; 760 761 762 if ($index && $module['enabled']) { 763 echo '<li><a href="'.$this->core->adminurl->get('admin.plugin.'.$id).'">'.__('Manage plugin').'</a></li>'; 764 } 765 761 766 $settings = $this->getSettingsUrls($this->core,$id); 762 if (!empty($settings) ) {767 if (!empty($settings) && $module['enabled']) { 763 768 echo '<li>'.implode(' - ',$settings).'</li>'; 764 769 } -
locales/fr/main.po
r3333 r3335 2976 2976 msgstr "Plugin de la distribution officielle" 2977 2977 2978 msgid "Manage plugin" 2979 msgstr "Gérer le plugin" 2980 2978 2981 msgid "Configure plugin" 2979 2982 msgstr "Configurer le plugin"
Note: See TracChangeset
for help on using the changeset viewer.