%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/root/var/www/html/ppaobm/vendor/mdmsoft/yii2-admin/components/ |
Upload File : |
<?php namespace mdm\admin\components; use Yii; use yii\caching\Cache; use yii\db\Connection; use yii\di\Instance; use yii\helpers\ArrayHelper; use yii\rbac\ManagerInterface; /** * Configs * Used to configure some values. To set config you can use [[\yii\base\Application::$params]] * * ``` * return [ * * 'mdm.admin.configs' => [ * 'db' => 'customDb', * 'menuTable' => '{{%admin_menu}}', * 'cache' => [ * 'class' => 'yii\caching\DbCache', * 'db' => ['dsn' => 'sqlite:@runtime/admin-cache.db'], * ], * ] * ]; * ``` * * or use [[\Yii::$container]] * * ``` * Yii::$container->set('mdm\admin\components\Configs',[ * 'db' => 'customDb', * 'menuTable' => 'admin_menu', * ]); * ``` * * @author Misbahul D Munir <misbahuldmunir@gmail.com> * @since 1.0 */ class Configs extends \mdm\admin\BaseObject { const CACHE_TAG = 'mdm.admin'; /** * @var ManagerInterface . */ public $authManager = 'authManager'; /** * @var Connection Database connection. */ public $db = 'db'; /** * @var Connection Database connection. */ public $userDb = 'db'; /** * @var Cache Cache component. */ public $cache = 'cache'; /** * @var integer Cache duration. Default to a hour. */ public $cacheDuration = 3600; /** * @var string Menu table name. */ public $menuTable = '{{%menu}}'; /** * @var string Menu table name. */ public $userTable = '{{%user}}'; /** * @var integer Default status user signup. 10 mean active. */ public $defaultUserStatus = 10; /** * @var boolean If true then AccessControl only check if route are registered. */ public $onlyRegisteredRoute = false; /** * @var boolean If false then AccessControl will check without Rule. */ public $strict = true; /** * @var array */ public $options; /** * @var array|false Used for multiple application * ```php * [ * 'frontend' => [ * '@common/config/main.php', * '@common/config/main-local.php', * '@frontend/config/main.php', * '@frontend/config/main-local.php', * ], * 'backend' => [ * '@common/config/main.php', * '@common/config/main-local.php', * '@backend/config/main.php', * '@backend/config/main-local.php', * ], * ] * ``` * */ public $advanced; /** * @var self Instance of self */ private static $_instance; private static $_classes = [ 'db' => 'yii\db\Connection', 'userDb' => 'yii\db\Connection', 'cache' => 'yii\caching\Cache', 'authManager' => 'yii\rbac\ManagerInterface', ]; /** * @inheritdoc */ public function init() { foreach (self::$_classes as $key => $class) { try { $this->{$key} = empty($this->{$key}) ? null : Instance::ensure($this->{$key}, $class); } catch (\Exception $exc) { $this->{$key} = null; Yii::error($exc->getMessage()); } } } /** * Create instance of self * @return static */ public static function instance() { if (self::$_instance === null) { $type = ArrayHelper::getValue(Yii::$app->params, 'mdm.admin.configs', []); if (is_array($type) && !isset($type['class'])) { $type['class'] = static::className(); } return self::$_instance = Yii::createObject($type); } return self::$_instance; } public static function __callStatic($name, $arguments) { $instance = static::instance(); if ($instance->hasProperty($name)) { return $instance->$name; } else { if (count($arguments)) { $instance->options[$name] = reset($arguments); } else { return array_key_exists($name, $instance->options) ? $instance->options[$name] : null; } } } /** * @return Connection */ public static function db() { return static::instance()->db; } /** * @return Connection */ public static function userDb() { return static::instance()->userDb; } /** * @return Cache */ public static function cache() { return static::instance()->cache; } /** * @return ManagerInterface */ public static function authManager() { return static::instance()->authManager; } /** * @return integer */ public static function cacheDuration() { return static::instance()->cacheDuration; } /** * @return string */ public static function menuTable() { return static::instance()->menuTable; } /** * @return string */ public static function userTable() { return static::instance()->userTable; } /** * @return string */ public static function defaultUserStatus() { return static::instance()->defaultUserStatus; } /** * @return boolean */ public static function onlyRegisteredRoute() { return static::instance()->onlyRegisteredRoute; } /** * @return boolean */ public static function strict() { return static::instance()->strict; } }