X-Git-Url: https://git.cweiske.de/bdrem.git/blobdiff_plain/6506b1ebe1ecaa6630d6d849c39b9e9d53603699..83afda94b7d5fc2be341712e2661f6095f608e0d:/src/bdrem/Config.php diff --git a/src/bdrem/Config.php b/src/bdrem/Config.php index 7a0fd68..65e353d 100644 --- a/src/bdrem/Config.php +++ b/src/bdrem/Config.php @@ -5,18 +5,21 @@ class Config { public $source; public $date; - public $daysBefore; - public $daysAfter; + public $daysPrev = 3; + public $daysNext = 7; public $locale; + 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) @@ -40,6 +43,16 @@ class Config return new $class($settings[0]); } + public function setDate($date) + { + if ($date === null) { + $this->date = date('Y-m-d'); + } else { + $dt = new \DateTime($date); + $this->date = $dt->format('Y-m-d'); + } + } + public function get($varname, $default = '') { if (!isset($this->$varname) || $this->$varname == '') {