X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fclasses%2Fmain%2Fdecorator%2Ftemplate%2Fclass_XmlRewriterTemplateDecorator.php;h=9aad65d8d975888401eba2474adf3ed773e224e5;hb=32702da3e7035c52f9124720310b797e05fd7410;hp=fe3a437cb278c9262d58b31843826331bbb6cc83;hpb=0462ab432ba34563798ac810bc0178da4d5b3295;p=core.git diff --git a/inc/classes/main/decorator/template/class_XmlRewriterTemplateDecorator.php b/inc/classes/main/decorator/template/class_XmlRewriterTemplateDecorator.php index fe3a437c..9aad65d8 100644 --- a/inc/classes/main/decorator/template/class_XmlRewriterTemplateDecorator.php +++ b/inc/classes/main/decorator/template/class_XmlRewriterTemplateDecorator.php @@ -3,11 +3,11 @@ * A decorator for XML template engines which rewrites the XML for compacting * it. * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.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 @@ -194,25 +194,15 @@ class XmlRewriterTemplateDecorator extends BaseDecorator implements CompileableT } /** - * Getter for compiled templates - * - * @return $compiledData Compiled template data - */ - public final function getCompiledData () { - // Call the inner class' method - return $this->getTemplateInstance()->getCompiledData(); - } - - /** - * Load a specified web template into the engine + * Load a specified HTML template into the engine * * @param $template The web template we shall load which is located in * 'html' by default * @return void */ - public function loadWebTemplate ($template) { + public function loadHtmlTemplate ($template) { // Call the inner class' method - $this->getTemplateInstance()->loadWebTemplate($template); + $this->getTemplateInstance()->loadHtmlTemplate($template); } /** @@ -309,16 +299,16 @@ class XmlRewriterTemplateDecorator extends BaseDecorator implements CompileableT * * @param $rawCode Raw code to compile * @param $setMatchAsCode Sets $match if readVariable() returns empty result - * @return $rawCode Compile code with inserted variable value + * @return $rawCode Compile code with inserted variable value */ - public function compileRawCode ($rawCode, $setMatchAsCode=false) { + public function compileRawCode ($rawCode, $setMatchAsCode = FALSE) { return $this->getTemplateInstance()->compileRawCode($rawCode, $setMatchAsCode); } /** * Getter for variable group array * - * @return $vargroups All variable groups + * @return $variableGroups All variable groups */ public final function getVariableGroups () { // Call the inner class' method