Lines Matching refs:config
4 * Every line is a config option. The config values are basically an array.
5 * I.e. the scheme or wordblock config.
19 $config = file($fileName);
20 $config = array_map('trim', $config);
21 $config = preg_replace('/^#.*/', '', $config);
22 $config = str_replace('\\#', '#', $config);
23 return array_filter($config);
39 $config = $this->readConfig();
40 $custom = $this->getCustomEntries($lines, $config['default']);
70 * Save config
72 * @param array $config
74 private function saveToFile($config) {
84 if (empty($config)) {
93 uksort($config, [$this->helper, '_sortConf']);
95 foreach ($config as $item) {