]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/template/entries/class_XmlRequestNodeListEntryTemplateEngine.php
Continued with hub:
[hub.git] / application / hub / main / template / entries / class_XmlRequestNodeListEntryTemplateEngine.php
index 0f88fc80cc3fa22c0269fa72fecc71c47965acd3..126b5f77f17eff78a97d6e4b86fdbf71975aa98c 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An RequestNodeListEntry template engine class for XML templates
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  * @todo               This template engine does not make use of setTemplateType()
  *
  * This program is free software: you can redistribute it and/or modify
@@ -22,7 +22,6 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-die('YOU NEED TO REPLACE RequestNodeListEntry, request_node_list_entry AND request-node-list-entry IN THIS CLASS BEFORE YOU CAN USE IT.');
 class XmlRequestNodeListEntryTemplateEngine extends BaseXmlTemplateEngine implements CompileableTemplate, Registerable {
        /**
         * Protected constructor
@@ -71,11 +70,11 @@ class XmlRequestNodeListEntryTemplateEngine extends BaseXmlTemplateEngine implem
                // Is this string empty?
                if (empty($characters)) {
                        // Then skip it silently
-                       return false;
+                       return;
                } // END - if
 
                // Assign data with matching variable here
-               parent::assignVariable($this->getStackerInstance()->getNamed('node_request_node_list_entry'), $characters);
+               parent::assignVariable($this->getStackInstance()->getNamed('node_request_node_list_entry'), $characters);
        }
 
        /**
@@ -94,7 +93,7 @@ class XmlRequestNodeListEntryTemplateEngine extends BaseXmlTemplateEngine implem
         */
        protected function startRequestNodeListEntry () {
                // Push the node name on the stacker
-               $this->getStackerInstance()->pushNamed('node_request_node_list_entry', 'request-node-list-entry');
+               $this->getStackInstance()->pushNamed('node_request_node_list_entry', 'request-node-list-entry');
        }
 
        /**
@@ -104,7 +103,7 @@ class XmlRequestNodeListEntryTemplateEngine extends BaseXmlTemplateEngine implem
         */
        protected function finishRequestNodeListEntry () {
                // Pop the last entry
-               $this->getStackerInstance()->popNamed('node_request_node_list_entry');
+               $this->getStackInstance()->popNamed('node_request_node_list_entry');
        }
 }