]> git.mxchange.org Git - hub.git/blobdiff - inc/classes/main/output/class_WebOutput.php
Code syncronized with shipsimu code base
[hub.git] / inc / classes / main / output / class_WebOutput.php
index b1eecc9f36ef37046556a9adeab8192c61d29c66..7a508058ddd1cc90acd210e9b8f0f82b80cbf612 100644 (file)
@@ -3,11 +3,11 @@
  * This class simply puts HTML code / JavaScript code or CSS code out to the
  * browser
  *
- * @author             Roland Haeder <webmaster@mxchange.org>
+ * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.ship-simu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class WebOutput extends BaseFrameworkSystem implements OutputStreamer {
+class WebOutput extends BaseFrameworkSystem implements OutputStreamer, Registerable {
        /**
         * The instance for the singleton design pattern
         */
@@ -36,12 +36,6 @@ class WebOutput extends BaseFrameworkSystem implements OutputStreamer {
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
-
-               // Set description
-               $this->setObjectDescription("Class for web output e.g. XHTML code");
-
-               // Create an unique ID
-               $this->createUniqueID();
        }
 
        /**
@@ -90,7 +84,7 @@ class WebOutput extends BaseFrameworkSystem implements OutputStreamer {
         * @return      void
         */
        public final function output ($outStream=false) {
-               print $outStream;
+               print($outStream);
        }
 }