aboutsummaryrefslogtreecommitdiff
path: root/src/bdrem/Config.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/bdrem/Config.php')
-rw-r--r--src/bdrem/Config.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/bdrem/Config.php b/src/bdrem/Config.php
index 37c4c64..65e353d 100644
--- a/src/bdrem/Config.php
+++ b/src/bdrem/Config.php
@@ -5,19 +5,21 @@ class Config
{
public $source;
public $date;
- public $daysPrev;
- public $daysNext;
+ public $daysPrev = 3;
+ public $daysNext = 7;
public $locale;
- public $stopOnEmpty;
+ public $stopOnEmpty = false;
+ public $cfgFileExists;
public function load()
{
$f = __DIR__ . '/../../data/bdrem.config.php';
if (file_exists($f)) {
+ $this->cfgFileExists = true;
return $this->loadFile($f);
}
- throw new \Exception('No config file found');
+ $this->cfgFileExists = false;
}
protected function loadFile($filename)