Custom Settings




hint: Use Ctrl/CMD + F to search for your config key or value.

pro tips: You can creating custom config key and print out your config key value anywhere in your template.

<?php echo config('your.key'); ?>

"hallo", ); if (file_exists($config_file)) { $array = parse_ini_file($config_file, true); } function valueMaker($value) { if (is_string($value)) return htmlspecialchars($value); if ($value === true) return "true"; if ($value === false) return "false"; if ($value == false) return "0"; return (string)$value; } $configList = json_decode(file_get_contents('content/data/configList.json', true)); foreach ($array as $key => $value) { if (!in_array($key, $configList)) { echo ''; echo ''; echo ''; echo ''; } } ?>