Home
last modified time | relevance | path

Searched refs:CONFIG_FILE (Results 1 – 2 of 2) sorted by last modified time

/plugin/autolink4/
H A Dhelper.php13 const CONFIG_FILE = DOKU_CONF . 'autolink4.conf'; define in helper_plugin_autolink4
33 return io_saveFile(self::CONFIG_FILE, cleanText($config));
41 if (file_exists(self::CONFIG_FILE)) {
42 return io_readFile(self::CONFIG_FILE);
57 if (!file_exists(self::CONFIG_FILE)) {
61 $cfg = io_readFile(self::CONFIG_FILE);
/plugin/redirect/
H A Dhelper.php19 const CONFIG_FILE = DOKU_CONF . '/redirect.conf'; define in helper_plugin_redirect
29 if(!file_exists(self::CONFIG_FILE) &&
31 rename(self::LEGACY_FILE, self::CONFIG_FILE);
42 return io_saveFile(self::CONFIG_FILE, cleanText($config));
51 if(!file_exists(self::CONFIG_FILE)) return '';
52 return io_readFile(self::CONFIG_FILE);
64 $redirects = confToHash(self::CONFIG_FILE);