diff options
Diffstat (limited to 'application/config')
-rw-r--r-- | application/config/ConfigManager.php | 64 |
1 files changed, 13 insertions, 51 deletions
diff --git a/application/config/ConfigManager.php b/application/config/ConfigManager.php index a663a071..c0482cf3 100644 --- a/application/config/ConfigManager.php +++ b/application/config/ConfigManager.php | |||
@@ -9,6 +9,9 @@ require_once 'ConfigJson.php'; | |||
9 | * Class ConfigManager | 9 | * Class ConfigManager |
10 | * | 10 | * |
11 | * Singleton, manages all Shaarli's settings. | 11 | * Singleton, manages all Shaarli's settings. |
12 | * See the documentation for more information on settings: | ||
13 | * - doc/Shaarli-configuration.html | ||
14 | * - https://github.com/shaarli/Shaarli/wiki/Shaarli-configuration | ||
12 | */ | 15 | */ |
13 | class ConfigManager | 16 | class ConfigManager |
14 | { | 17 | { |
@@ -286,81 +289,40 @@ class ConfigManager | |||
286 | */ | 289 | */ |
287 | protected function setDefaultValues() | 290 | protected function setDefaultValues() |
288 | { | 291 | { |
289 | // Data subdirectory | ||
290 | $this->setEmpty('path.data_dir', 'data'); | 292 | $this->setEmpty('path.data_dir', 'data'); |
291 | |||
292 | // Main configuration file | ||
293 | $this->setEmpty('path.config', 'data/config.php'); | 293 | $this->setEmpty('path.config', 'data/config.php'); |
294 | |||
295 | // Link datastore | ||
296 | $this->setEmpty('path.datastore', 'data/datastore.php'); | 294 | $this->setEmpty('path.datastore', 'data/datastore.php'); |
297 | |||
298 | // Banned IPs | ||
299 | $this->setEmpty('path.ban_file', 'data/ipbans.php'); | 295 | $this->setEmpty('path.ban_file', 'data/ipbans.php'); |
300 | |||
301 | // Processed updates file. | ||
302 | $this->setEmpty('path.updates', 'data/updates.txt'); | 296 | $this->setEmpty('path.updates', 'data/updates.txt'); |
303 | |||
304 | // Access log | ||
305 | $this->setEmpty('path.log', 'data/log.txt'); | 297 | $this->setEmpty('path.log', 'data/log.txt'); |
306 | |||
307 | // For updates check of Shaarli | ||
308 | $this->setEmpty('path.update_check', 'data/lastupdatecheck.txt'); | 298 | $this->setEmpty('path.update_check', 'data/lastupdatecheck.txt'); |
309 | |||
310 | // Set ENABLE_UPDATECHECK to disabled by default. | ||
311 | $this->setEmpty('general.check_updates', false); | ||
312 | |||
313 | // RainTPL cache directory (keep the trailing slash!) | ||
314 | $this->setEmpty('path.raintpl_tmp', 'tmp/'); | ||
315 | // Raintpl template directory (keep the trailing slash!) | ||
316 | $this->setEmpty('path.raintpl_tpl', 'tpl/'); | 299 | $this->setEmpty('path.raintpl_tpl', 'tpl/'); |
317 | 300 | $this->setEmpty('path.raintpl_tmp', 'tmp/'); | |
318 | // Thumbnail cache directory | ||
319 | $this->setEmpty('path.thumbnails_cache', 'cache'); | 301 | $this->setEmpty('path.thumbnails_cache', 'cache'); |
320 | |||
321 | // Atom & RSS feed cache directory | ||
322 | $this->setEmpty('path.page_cache', 'pagecache'); | 302 | $this->setEmpty('path.page_cache', 'pagecache'); |
323 | 303 | ||
324 | // Ban IP after this many failures | ||
325 | $this->setEmpty('security.ban_after', 4); | 304 | $this->setEmpty('security.ban_after', 4); |
326 | // Ban duration for IP address after login failures (in seconds) | ||
327 | $this->setEmpty('security.ban_after', 1800); | 305 | $this->setEmpty('security.ban_after', 1800); |
306 | $this->setEmpty('security.session_protection_disabled', false); | ||
328 | 307 | ||
329 | // Feed options | 308 | $this->setEmpty('general.check_updates', false); |
330 | // Enable RSS permalinks by default. | ||
331 | // This corresponds to the default behavior of shaarli before this was added as an option. | ||
332 | $this->setEmpty('general.rss_permalinks', true); | 309 | $this->setEmpty('general.rss_permalinks', true); |
333 | // If true, an extra "ATOM feed" button will be displayed in the toolbar | ||
334 | $this->setEmpty('extras.show_atom', false); | ||
335 | |||
336 | // Link display options | ||
337 | $this->setEmpty('extras.hide_public_links', false); | ||
338 | $this->setEmpty('extras.hide_timestamps', false); | ||
339 | $this->setEmpty('general.links_per_page', 20); | 310 | $this->setEmpty('general.links_per_page', 20); |
340 | |||
341 | // Private checkbox is checked by default | ||
342 | $this->setEmpty('general.default_private_links', false); | 311 | $this->setEmpty('general.default_private_links', false); |
343 | |||
344 | // Open Shaarli (true): anyone can add/edit/delete links without having to login | ||
345 | $this->setEmpty('extras.open_shaarli', false); | ||
346 | |||
347 | // Thumbnails | ||
348 | // Display thumbnails in links | ||
349 | $this->setEmpty('general.enable_thumbnails', true); | 312 | $this->setEmpty('general.enable_thumbnails', true); |
350 | // Store thumbnails in a local cache | ||
351 | $this->setEmpty('general.enable_localcache', true); | 313 | $this->setEmpty('general.enable_localcache', true); |
352 | |||
353 | // Update check frequency for Shaarli. 86400 seconds=24 hours | ||
354 | $this->setEmpty('general.check_updates_branch', 'stable'); | 314 | $this->setEmpty('general.check_updates_branch', 'stable'); |
355 | $this->setEmpty('general.check_updates_interval', 86400); | 315 | $this->setEmpty('general.check_updates_interval', 86400); |
316 | $this->setEmpty('general.header_link', '?'); | ||
317 | $this->setEmpty('general.enabled_plugins', array('qrcode')); | ||
356 | 318 | ||
319 | $this->setEmpty('extras.show_atom', false); | ||
320 | $this->setEmpty('extras.hide_public_links', false); | ||
321 | $this->setEmpty('extras.hide_timestamps', false); | ||
322 | $this->setEmpty('extras.open_shaarli', false); | ||
357 | $this->setEmpty('extras.redirector', ''); | 323 | $this->setEmpty('extras.redirector', ''); |
358 | $this->setEmpty('extras.redirector_encode_url', true); | 324 | $this->setEmpty('extras.redirector_encode_url', true); |
359 | 325 | ||
360 | // Enabled plugins. | ||
361 | $this->setEmpty('general.enabled_plugins', array('qrcode')); | ||
362 | |||
363 | // Initialize plugin parameters array. | ||
364 | $this->setEmpty('plugins', array()); | 326 | $this->setEmpty('plugins', array()); |
365 | } | 327 | } |
366 | 328 | ||
@@ -370,7 +332,7 @@ class ConfigManager | |||
370 | * @param string $key Setting key. | 332 | * @param string $key Setting key. |
371 | * @param mixed $value Setting value. | 333 | * @param mixed $value Setting value. |
372 | */ | 334 | */ |
373 | protected function setEmpty($key, $value) | 335 | public function setEmpty($key, $value) |
374 | { | 336 | { |
375 | if (! $this->exists($key)) { | 337 | if (! $this->exists($key)) { |
376 | $this->set($key, $value); | 338 | $this->set($key, $value); |