X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fclasses%2Fmain%2Foutput%2Fclass_ConsoleOutput.php;h=ff2ad10cfad4f6a8fe867a39bdbe82ccfa3ad4f5;hb=db61178ebaf96aa11cc16f18af4fedaaf32fe2de;hp=fc4d7502e5dee41447046d9a625d693afb7a10c3;hpb=cfe047bc347eebc611270d996cb4f0f21246139f;p=shipsimu.git diff --git a/inc/classes/main/output/class_ConsoleOutput.php b/inc/classes/main/output/class_ConsoleOutput.php index fc4d750..ff2ad10 100644 --- a/inc/classes/main/output/class_ConsoleOutput.php +++ b/inc/classes/main/output/class_ConsoleOutput.php @@ -3,11 +3,11 @@ * This class simply puts text without any HTML code out. This class is suiable * for console output * - * @author Roland Haeder - * @version 0.3.0 - * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software + * @author Roland Haeder + * @version 0.0.0 + * @copyright Copyright (c) 2007, 2008 Roland Haeder, this is free software * @license GNU GPL 3.0 or any newer version - * @link http://www.mxchange.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 @@ -34,26 +34,26 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { private $vars = array(); /** - * Private constructor + * Protected constructor * * @return void */ - private function __construct () { + protected function __construct () { // Call parent constructor - parent::constructor(__CLASS__); + parent::__construct(__CLASS__); // Set description - $this->setObjectDescription("Console-Ausgabe-Handler"); + $this->setObjectDescription("Console output class"); // Create an unique ID - $this->createUniqueID(); + $this->generateUniqueId(); } /** * Create a new web output system and set the content type * - * @param $contentType A valid content-type - * @return $debugInstance An instance of this middleware class + * @param $contentType A valid content-type + * @return $debugInstance An instance of this middleware class */ public final static function createConsoleOutput ($contentType) { // Cast the content-type to string @@ -77,11 +77,11 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { /** * Getter for an instance of this class * - * @return $consoleInstance An instance of this class + * @return $consoleInstance An instance of this class */ public final static function getInstance() { if (is_null(self::$consoleInstance)) { - $contentType = FrameworkConfiguration::getInstance()->readConfig("web_content_type"); + $contentType = FrameworkConfiguration::getInstance()->readConfig('web_content_type'); self::$consoleInstance = ConsoleOutput::createConsoleOutput($contentType); } return self::$consoleInstance; @@ -90,7 +90,7 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { /** * Output the code * - * @param $outStream Something we shall sent to the console + * @param $outStream Something we shall sent to the console * @return void */ public final function output ($outStream=false) { @@ -108,8 +108,8 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { /** * Assigns a variable for output * - * @param $var The variable we shall assign - * @param $value The value to store in the variable + * @param $var The variable we shall assign + * @param $value The value to store in the variable * @return void */ public function assignVariable ($var, $value) {