Files
ITL-Huge/application/core/Config.php

23 lines
410 B
PHP

<?php
class Config
{
public static $config;
public static function get($key)
{
if (!self::$config) {
$config_file = __DIR__ . '/../config/config.' . Environment::get() . '.php';
if (!file_exists($config_file)) {
return false;
}
self::$config = require $config_file;
}
return self::$config[$key];
}
}