X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Foutput%2Fclass_ConsoleOutput.php;h=61b6f8ab42c382a369d683f6222da3a2beb0431b;hb=28469f41b28046e5478a8e2e111de73536317753;hp=599ec7f95d8a14c4923fe96b2c78ca92d0e9849a;hpb=b9c18d6c24e3be4393bf41005aa4e428a0ea3218;p=core.git diff --git a/inc/classes/main/output/class_ConsoleOutput.php b/inc/classes/main/output/class_ConsoleOutput.php index 599ec7f9..61b6f8ab 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, 2008 Roland Haeder, 2009 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -26,12 +26,7 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { /** * The instance for the singleton design pattern */ - private static $consoleInstance = null; - - /** - * Assigned variables - */ - private $vars = array(); + private static $consoleInstance = NULL; /** * 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); @@ -74,11 +69,14 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { * * @return $consoleInstance An instance of this class */ - public final static function getInstance() { + public static final function getInstance() { + // Is the self-instance already set? if (is_null(self::$consoleInstance)) { - $contentType = FrameworkConfiguration::getInstance()->getConfigEntry('web_content_type'); + $contentType = FrameworkConfiguration::getSelfInstance()->getConfigEntry('web_content_type'); self::$consoleInstance = ConsoleOutput::createConsoleOutput($contentType); - } + } // END - if + + // Return the instance return self::$consoleInstance; } @@ -86,29 +84,11 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { * Output the code * * @param $outStream Something we shall sent to the console + * @param $stripTags Whether HTML tags shall be stripped out * @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, $stripTags = false) { + print trim($outStream) . PHP_EOL; } }