]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/decorator/template/class_XmlRewriterTemplateDecorator.php
Renamed a lot more stuff from 'web' to 'html'.
[core.git] / inc / classes / main / decorator / template / class_XmlRewriterTemplateDecorator.php
index f2fcfd48be898767a6729d7de5847775fe6c2746..9aad65d8d975888401eba2474adf3ed773e224e5 100644 (file)
@@ -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);
        }
 
        /**