aboutsummaryrefslogtreecommitdiff
path: root/src/bdrem/UserInterface.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2014-02-18 20:55:43 +0100
committerChristian Weiske <cweiske@cweiske.de>2014-02-18 20:55:43 +0100
commite946d300f1c3c0d5c5805cd73c035fde0a4d0de2 (patch)
tree09e83b73e9f9a97952badf371a6d50edcc39b55d /src/bdrem/UserInterface.php
parent00bd8739a246c157bfc97221156799590e8811af (diff)
downloadbdrem-e946d300f1c3c0d5c5805cd73c035fde0a4d0de2.tar.gz
bdrem-e946d300f1c3c0d5c5805cd73c035fde0a4d0de2.zip
add stopOnEmpty and date parameters
Diffstat (limited to 'src/bdrem/UserInterface.php')
-rw-r--r--src/bdrem/UserInterface.php35
1 files changed, 30 insertions, 5 deletions
diff --git a/src/bdrem/UserInterface.php b/src/bdrem/UserInterface.php
index da5e9a3..7e6bf9a 100644
--- a/src/bdrem/UserInterface.php
+++ b/src/bdrem/UserInterface.php
@@ -10,7 +10,6 @@ abstract class UserInterface
try {
$this->config = new Config();
$this->config->load();
- $this->config->date = date('Y-m-d');
setlocale(LC_TIME, $this->config->locale);
$source = $this->config->loadSource();
@@ -76,6 +75,25 @@ abstract class UserInterface
)
);
$parser->addOption(
+ 'stopOnEmpty',
+ array(
+ 'short_name' => '-e',
+ 'long_name' => '--stoponempty',
+ 'description' => 'Output nothing when list is empty',
+ 'action' => 'StoreTrue',
+ 'default' => false
+ )
+ );
+ $parser->addOption(
+ 'date',
+ array(
+ 'short_name' => '-d',
+ 'long_name' => '--date',
+ 'description' => 'Date to show events for',
+ 'action' => 'StoreString'
+ )
+ );
+ $parser->addOption(
'quiet',
array(
'short_name' => '-q',
@@ -92,10 +110,12 @@ abstract class UserInterface
try {
$result = $parser->parse();
// do something with the result object
- $this->config->daysNext = $result->options['daysNext'];
- $this->config->daysPrev = $result->options['daysPrev'];
- $this->config->renderer = $result->options['renderer'];
- $this->config->quiet = $result->options['quiet'];
+ $this->config->daysNext = $result->options['daysNext'];
+ $this->config->daysPrev = $result->options['daysPrev'];
+ $this->config->renderer = $result->options['renderer'];
+ $this->config->quiet = $result->options['quiet'];
+ $this->config->stopOnEmpty = $result->options['stopOnEmpty'];
+ $this->config->setDate($result->options['date']);
} catch (\Exception $exc) {
$this->preRenderParameterError();
$parser->displayError($exc->getMessage());
@@ -106,6 +126,11 @@ abstract class UserInterface
{
$r = $this->getRenderer();
$r->config = $this->config;
+
+ if ($this->config->stopOnEmpty && count($arEvents) == 0) {
+ $r->handleStopOnEmpty();
+ return;
+ }
$r->renderAndOutput($arEvents);
}