Home
last modified time | relevance | path

Searched refs:isEnabled (Results 1 – 8 of 8) sorted by last modified time

/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php303 if ($this->colors->isEnabled()) {
H A DColors.php94 public function isEnabled() function in splitbrain\\phpcli\\Colors
/dokuwiki/inc/
H A Dpluginutils.php68 return !$plugin_controller->isEnabled($plugin);
/dokuwiki/lib/plugins/extension/
H A Dcli.php347 if ($ext->isEnabled()) {
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php189 public function isEnabled()
198 return $plugin_controller->isEnabled($this->base);
390 if (!$plugin_controller->isEnabled($dependency)) {
737 if ($this->isEnabled()) return $this->getLang('alreadyenabled');
761 if (!$this->isEnabled()) return $this->getLang('alreadydisabled');
795 } elseif (!$this->isTemplate() && $this->isEnabled()) {
169 public function isEnabled() global() function in helper_plugin_extension_extension
H A Dlist.php186 $class .= ($extension->isEnabled()) ? ' enabled' : ' disabled';
588 if ($extension->isEnabled()) {
598 $extension->isEnabled() &&
660 $status[] = $extension->isEnabled()
/dokuwiki/inc/Debug/
H A DDebugHelper.php20 public static function isEnabled()
44 if (!self::isEnabled()) return;
91 if (!self::isEnabled()) return;
129 if (!self::isEnabled()) return;
21 public static function isEnabled() global() function in dokuwiki\\Debug\\DebugHelper
/dokuwiki/inc/Extension/
H A DPluginController.php90 if (!$disabled && !$this->isEnabled($plugin)) {
144 * @deprecated in favor of the more sensible isEnabled where the return value matches the enabled state
148 dbg_deprecated('isEnabled()');
149 return !$this->isEnabled($plugin);
158 public function isEnabled($plugin)
160 public function isEnabled($plugin) global() function in dokuwiki\\Extension\\PluginController