]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/response/console/class_ConsoleResponse.php
Registry rewritten, exception added #2
[core.git] / inc / classes / main / response / console / class_ConsoleResponse.php
index dcd25d378a92900931927ae7c8e24e6fc422a88c..4c7ea2a23e09c144a3cb99a5247f63281a12e84f 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -118,9 +118,22 @@ class ConsoleResponse extends BaseResponse implements Responseable {
         * @return      $defaultCommand         Default command for this response
         */
        public function getDefaultCommand () {
-               $defaultCommand = $this->getConfigInstance()->readConfig('default_web_command');
+               $defaultCommand = $this->getConfigInstance()->getConfigEntry('default_console_command');
                return $defaultCommand;
        }
+
+       /**
+        * Flushs the cached console response to the console
+        *
+        * @param       $force  Wether we shall force the output or abort if headers are
+        *                                      already sent with an exception
+        * @return      void
+        * @throws      ResponseHeadersAlreadySentException             Thrown if headers are
+        *                                                                                                      already sent
+        */
+       public function flushBuffer ($force = false) {
+               $this->partialStub('Please implement this class.');
+       }
 }
 
 // [EOF]