1 | <?php |
||
9 | class Writer { |
||
10 | /** @var string header info */ |
||
11 | protected $header = 'Dokuwiki\'s Main Configuration File - Local Settings'; |
||
12 | |||
13 | /** @var string the file where the config will be saved to */ |
||
14 | protected $savefile; |
||
15 | |||
16 | /** |
||
17 | * Writer constructor. |
||
18 | */ |
||
19 | public function __construct() { |
||
23 | |||
24 | /** |
||
25 | * Save the given settings |
||
26 | * |
||
27 | * @param Setting[] $settings |
||
28 | * @throws \Exception |
||
29 | */ |
||
30 | public function save($settings) { |
||
55 | |||
56 | /** |
||
57 | * Update last modified time stamp of the config file |
||
58 | * |
||
59 | * Will invalidate all DokuWiki caches |
||
60 | * |
||
61 | * @throws \Exception when the config isn't writable |
||
62 | */ |
||
63 | public function touch() { |
||
68 | |||
69 | /** |
||
70 | * Invalidate the opcache of the given file |
||
71 | * |
||
72 | * @todo this should probably be moved to core |
||
73 | * @param string $file |
||
74 | */ |
||
75 | protected function opcacheUpdate($file) { |
||
76 | if(!function_exists('opcache_invalidate')) return; |
||
77 | opcache_invalidate($file); |
||
78 | } |
||
79 | |||
80 | /** |
||
81 | * Configuration is considered locked if there is no local settings filename |
||
82 | * or the directory its in is not writable or the file exists and is not writable |
||
83 | * |
||
84 | * @return bool true: locked, false: writable |
||
85 | */ |
||
86 | public function isLocked() { |
||
92 | |||
93 | /** |
||
94 | * Returns the PHP intro header for the config file |
||
95 | * |
||
96 | * @return string |
||
97 | */ |
||
98 | protected function getHeader() { |
||
114 | } |
||
115 |
If you suppress an error, we recommend checking for the error condition explicitly: