" * @license GPLv2 * @package generis * */ class common_Config { /** * @access * @author "Lionel Lecaque, " */ public static function load($config = null) { if (! is_null($config) && is_readable($config)) { include_once $config; } else { include_once dirname(__FILE__) . '/../../config/generis.conf.php'; } } }