Use an easier distinctable "disabled" icon for module state
fixes #9908
This commit is contained in:
parent
d51ecc3d72
commit
15ec564bc5
|
@ -16,9 +16,9 @@
|
||||||
<?php if ($module->enabled && $module->loaded) {
|
<?php if ($module->enabled && $module->loaded) {
|
||||||
echo $this->icon('thumbs-up', sprintf($this->translate('Module %s is enabled'), $module->name));
|
echo $this->icon('thumbs-up', sprintf($this->translate('Module %s is enabled'), $module->name));
|
||||||
} elseif (! $module->enabled) {
|
} elseif (! $module->enabled) {
|
||||||
echo $this->icon('thumbs-down', sprintf($this->translate('Module %s is disabled'), $module->name));
|
echo $this->icon('block', sprintf($this->translate('Module %s is disabled'), $module->name));
|
||||||
} else { // ! $module->loaded
|
} else { // ! $module->loaded
|
||||||
echo $this->icon('thumbs-down', sprintf($this->translate('Module %s has failed to load'), $module->name));
|
echo $this->icon('block', sprintf($this->translate('Module %s has failed to load'), $module->name));
|
||||||
}
|
}
|
||||||
|
|
||||||
echo $this->qlink(
|
echo $this->qlink(
|
||||||
|
|
Loading…
Reference in New Issue