]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/debug/class_DebugConsoleOutput.php
Copyright updated
[core.git] / inc / classes / main / debug / class_DebugConsoleOutput.php
index 4dd9c82666ee717a6a4735ecd9e605f122063937..a513d63394e81bba1896b7ecbb8ec2c23f55e6af 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 - 2011 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -35,9 +35,9 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output
        /**
         * Creates an instance of this class
         *
-        * @return      $debugInstance          The prepared debug instance
+        * @return      $debugInstance  The prepared debug instance
         */
-       public final static function createDebugConsoleOutput () {
+       public static final function createDebugConsoleOutput () {
                // Get a new instance
                $debugInstance = new DebugConsoleOutput();
 
@@ -48,23 +48,15 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output
        /**
         * Outputs the given data without HTML tags
         *
-        * @param               $output The HTML'ed output
+        * @param       $output         The HTML'ed output
         * @return      void
         */
        public final function outputStream ($output) {
-               print(html_entity_decode(strip_tags(stripslashes($output))));
-       }
+               // Prepare the output
+               $output = trim(html_entity_decode(strip_tags(stripslashes($output))));
 
-       /**
-        * Assigns a variable for output
-        *
-        * @param               $var            The variable we shall assign
-        * @param               $value  The value to store in the variable
-        * @return      void
-        */
-       public final function assignVariable ($var, $value) {
-               // Empty stub!
-               trigger_error(__METHOD__.": Stub!");
+               // And print it out...
+               printf("%s\n", $output);
        }
 
        /**
@@ -76,7 +68,7 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output
                // Empty output will be silently ignored
                if ($outStream !== false) {
                        $this->outputStream($outStream);
-               }
+               } // END - if
        }
 }