| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace ModulesGarden\Servers\ZimbraEmail\Core\Traits;
- use ModulesGarden\Servers\ZimbraEmail\Core\App\Controllers\Instances\Addon\Config;
- use ModulesGarden\Servers\ZimbraEmail\Core\ServiceLocator;
- /**
- * Description of IsDebugOn
- *
- * @author INBSX-37H
- */
- trait IsDebugOn
- {
- protected $isDebug = null;
-
- public function isDebugOn()
- {
- if ($this->isDebug === null)
- {
- $addon = ServiceLocator::call(Config::class);
-
- $this->isDebug = (bool)((int)$addon->getConfigValue('debug', "0"));
- }
-
- return $this->isDebug;
- }
- }
|