[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
Data Shendy
/
Back up Shendy
/
DATA
/
amd64
/
httpd
/
htdocs
/
bulian
/
lib
/
[
Home
]
File: Config.php
<?php /** * @CreatedBy : Waris Agung Widodo (ido.alit@gmail.com) * @Date : 2020-11-28 20:19:45 * @FileName : Config.php * @Project : slims9_bulian * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ namespace SLiMS; use PDO; class Config { private static $instance = null; private $configs = []; public function __construct() { // load default config folder $this->load(__DIR__ . '/../config', ['sysconfig.local.inc.php', 'sysconfig.local.inc-sample.php']); } /** * Get instance of this class * * @return static|null */ public static function getInstance() { if (is_null(self::$instance)) self::$instance = new static(); return self::$instance; } /** * Load configuration files * * @param $directory * @param array $ignore */ function load($directory, $ignore = []) { $ignore = array_unique(array_merge(['..', '.', 'index.html', 'index.php'], $ignore)); $scanned_directory = array_diff(scandir($directory), $ignore); foreach ($scanned_directory as $file) { if (strpos($file, '.php')) { $file_path = $directory . DIRECTORY_SEPARATOR . $file; $this->configs[basename($file_path, '.php')] = require $file_path; } } // load config from database // this will override config file $this->loadFromDatabase(); } /** * Load app preferences from database */ function loadFromDatabase() { $query = DB::getInstance()->query('SELECT setting_name, setting_value FROM setting'); while ($data = $query->fetch(PDO::FETCH_OBJ)) { $value = @unserialize($data->setting_value); if (is_array($value)) { foreach ($value as $id => $current_value) { $this->configs[$data->setting_name][$id] = $current_value; } } else { $this->configs[$data->setting_name] = stripslashes($value??''); } } } /** * Get config with dot separator * * @param $key * @param null $default * @return mixed|null */ public function get($key, $default = null) { $keys = explode('.', $key); $config = $default; foreach ($keys as $index => $_key) { if ($index < 1) { $config = $this->configs[$_key] ?? $default; continue; } if ($config === $default) break; if (isset($config[$_key])) { $config = $config[$_key]; } else { $config = $default; } } // if result is null, try to get global $sysconf if (is_null($config)) $config = $this->getGlobal($key, $default); return $config; } public function getGlobal($key, $default = null) { global $sysconf; $keys = explode('.', $key); $config = $default; foreach ($keys as $index => $_key) { if ($index < 1) { $config = $sysconf[$_key] ?? $default; continue; } if ($config === $default) break; if (isset($config[$_key])) { $config = $config[$_key]; } else { $config = $default; } } return $config; } }