commands to show readme and extract config template
[bdrem.git] / src / bdrem / UserInterface.php
index 1b8cb56c66d28768b0ff6e33f843ae3b35b2c16e..4e27d5da12715475e61e2d6ed0c5509965e785be 100644 (file)
@@ -13,7 +13,8 @@ abstract class UserInterface
             setlocale(LC_TIME, $this->config->locale);
 
             $parser = $this->loadParameters();
-            $this->parseParameters($parser);
+            $res = $this->parseParameters($parser);
+            $this->handleCommands($res);
 
             if (!$this->config->cfgFileExists) {
                 throw new \Exception('No config file found');
@@ -110,6 +111,7 @@ abstract class UserInterface
             $this->config->renderer    = $result->options['renderer'];
             $this->config->stopOnEmpty = $result->options['stopOnEmpty'];
             $this->config->setDate($result->options['date']);
+            return $result;
         } catch (\Exception $exc) {
             $this->preRenderParameterError();
             $parser->displayError($exc->getMessage());
@@ -138,6 +140,10 @@ abstract class UserInterface
         return new $class();
     }
 
+    protected function handleCommands($res)
+    {
+    }
+
     protected function preRenderParameterError()
     {
     }