array( * catid => xx, * defaultvalue => xx, * permissions => xx, * validator => xx, * ) * * @return array all known config variables */ public static function getVariables() { $settings = array(); foreach (glob('modules/*/baseconfig/settings.json', GLOB_NOSORT) as $file) { $data = json_decode(file_get_contents($file), true); if (is_array($data)) { $settings += $data; } } return $settings; } public static function getCategories() { $categories = array(); foreach (glob('modules/*/baseconfig/categories.json', GLOB_NOSORT) as $file) { $data = json_decode(file_get_contents($file), true); if (is_array($data)) { $categories += $data; } } return $categories; } }