Registry rewritten, exception added #2
[core.git] / inc / classes / main / output / class_ConsoleOutput.php
index 599ec7f95d8a14c4923fe96b2c78ca92d0e9849a..a03b9512a76c758b1b3b8b7a8f9eb1db5eb0b0fc 100644 (file)
@@ -5,7 +5,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
  *
@@ -28,11 +28,6 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
         */
        private static $consoleInstance = null;
 
-       /**
-        * Assigned variables
-        */
-       private $vars = array();
-
        /**
         * Protected constructor
         *
@@ -89,26 +84,7 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
         * @return      void
         */
        public final function output ($outStream = false) {
-               if ($outStream === false) {
-                       // Output something here...
-                       foreach ($this->vars as $var => $value) {
-                               $this->output("var=".$var.", value=".$value.'');
-                       }
-               } else {
-                       // Output it to the console
-                       printf("%s\n", trim(html_entity_decode(strip_tags(stripslashes($outStream)))));
-               }
-       }
-
-       /**
-        * Assigns a variable for output
-        *
-        * @param       $var    The variable we shall assign
-        * @param       $value  The value to store in the variable
-        * @return      void
-        */
-       public function assignVariable ($var, $value) {
-               $this->vars[$var] = $value;
+               print trim($outStream) . "\n";
        }
 }