X-Git-Url: https://git.cweiske.de/bdrem.git/blobdiff_plain/90672c8a146c77a194cb774d8088ca4da534defe..5c88f5e19a69485da44e132e0b102b835eee7f05:/src/bdrem/UserInterface.php diff --git a/src/bdrem/UserInterface.php b/src/bdrem/UserInterface.php index b0b21cc..8a25bf4 100644 --- a/src/bdrem/UserInterface.php +++ b/src/bdrem/UserInterface.php @@ -149,6 +149,14 @@ abstract class UserInterface 'action' => 'StoreString' ) ); + $parser->addOption( + 'debug', + array( + 'long_name' => '--debug', + 'description' => 'Development helper (mail)', + 'action' => 'StoreTrue' + ) + ); return $parser; } @@ -171,6 +179,7 @@ abstract class UserInterface $this->config->daysNext = $result->options['daysNext']; $this->config->daysPrev = $result->options['daysPrev']; + $this->config->debug = $result->options['debug']; $this->config->renderer = $result->options['renderer']; $this->config->stopOnEmpty = $result->options['stopOnEmpty']; $this->config->setDate($result->options['date']);