Changeset 3335:4f31d229344d for inc/admin
- Timestamp:
- 09/01/16 14:30:15 (9 years ago)
- Branch:
- default
- File:
-
- 1 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 }
Note: See TracChangeset
for help on using the changeset viewer.