class_mcConfig.inc.php 277 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 <? class mcConfig { private static $configs = array ( 'tmpdir' => '/tmp/', ); public static function getConfig($param_column) { if(array_key_exists($param_column, self::$configs)) { return self::$configs[$param_column]; } else { return false; } } } ?>