X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Foutput%2Fclass_ConsoleOutput.php;h=9c21c444d73114207513ab69b8914fe56f15a7cd;hb=a6ec0211ffb9b65e7c8efd81abdbb925774264ff;hp=b0df4fefb887dbc4f93ab3f78b117417487ee71b;hpb=3107989f93cfb5808ce9d75f1c7d2b7ee3d83d18;p=core.git diff --git a/inc/classes/main/output/class_ConsoleOutput.php b/inc/classes/main/output/class_ConsoleOutput.php index b0df4fef..9c21c444 100644 --- a/inc/classes/main/output/class_ConsoleOutput.php +++ b/inc/classes/main/output/class_ConsoleOutput.php @@ -5,7 +5,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007 - 2009 Roland Haeder, this is free software + * @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 * @@ -28,11 +28,6 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { */ private static $consoleInstance = null; - /** - * Assigned variables - */ - private $vars = array(); - /** * Protected constructor * @@ -49,7 +44,7 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { * @param $contentType A valid content-type * @return $debugInstance An instance of this middleware class */ - public final static function createConsoleOutput ($contentType) { + public static final function createConsoleOutput ($contentType) { // Cast the content-type to string $contentType = (string) $contentType; $contentType = trim($contentType); @@ -58,11 +53,12 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { self::$consoleInstance = new ConsoleOutput(); // Set the content type + // @TODO Need to rewrite this to $requestInstance->addHeader() if (!empty($contentType)) { @header(sprintf("Content-type: %s", $contentType )); - } + } // END - if // Return instance return self::$consoleInstance; @@ -73,9 +69,9 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { * * @return $consoleInstance An instance of this class */ - public final static function getInstance() { + public static final function getInstance() { if (is_null(self::$consoleInstance)) { - $contentType = FrameworkConfiguration::getInstance()->readConfig('web_content_type'); + $contentType = FrameworkConfiguration::getInstance()->getConfigEntry('web_content_type'); self::$consoleInstance = ConsoleOutput::createConsoleOutput($contentType); } return self::$consoleInstance; @@ -87,27 +83,8 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { * @param $outStream Something we shall sent to the console * @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; + public final function output ($outStream = false) { + print trim($outStream) . "\n"; } }