]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/template/objects/class_XmlObjectRegistryTemplateEngine.php
Introduced experimental apt-proxy sub project (a connector for apt-proxy usage into...
[hub.git] / application / hub / main / template / objects / class_XmlObjectRegistryTemplateEngine.php
index d6284a89550b38f81171247a77f0130adeb415a8..751e9f8ab3f5429bef0f2ad5067f113fe5ae685b 100644 (file)
@@ -100,7 +100,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
                } // END - if
 
                // Get current XML node name as an array index
-               $nodeName = $this->getStackerInstance()->getNamed('object_registry');
+               $nodeName = $this->getStackerInstance()->getNamed('node_object_registry');
 
                // Is the node name self::OBJECT_TYPE_DATA_NAME?
                if ($nodeName == self::OBJECT_TYPE_DATA_NAME) {
@@ -128,7 +128,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function startObjectRegistry () {
                // Push the node name on the stacker
-               $this->getStackerInstance()->pushNamed('object_registry', 'object-registry');
+               $this->getStackerInstance()->pushNamed('node_object_registry', 'object-registry');
        }
 
        /**
@@ -140,7 +140,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function startObjectList ($objectCount) {
                // Push the node name on the stacker
-               $this->getStackerInstance()->pushNamed('object_registry', 'object-list');
+               $this->getStackerInstance()->pushNamed('node_object_registry', 'object-list');
        }
 
        /**
@@ -150,7 +150,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function startObjectListEntry () {
                // Push the node name on the stacker
-               $this->getStackerInstance()->pushNamed('object_registry', 'object-list');
+               $this->getStackerInstance()->pushNamed('node_object_registry', 'object-list');
        }
 
        /**
@@ -160,7 +160,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function startObjectName () {
                // Push the node name on the stacker
-               $this->getStackerInstance()->pushNamed('object_registry', self::OBJECT_TYPE_DATA_NAME);
+               $this->getStackerInstance()->pushNamed('node_object_registry', self::OBJECT_TYPE_DATA_NAME);
        }
 
        /**
@@ -170,7 +170,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function startObjectRecipientLimitation () {
                // Push the node name on the stacker
-               $this->getStackerInstance()->pushNamed('object_registry', self::OBJECT_TYPE_DATA_RECIPIENT_LIMITATION);
+               $this->getStackerInstance()->pushNamed('node_object_registry', self::OBJECT_TYPE_DATA_RECIPIENT_LIMITATION);
        }
 
        /**
@@ -180,7 +180,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function startObjectMaxSpread () {
                // Push the node name on the stacker
-               $this->getStackerInstance()->pushNamed('object_registry', self::OBJECT_TYPE_DATA_MAX_SPREAD);
+               $this->getStackerInstance()->pushNamed('node_object_registry', self::OBJECT_TYPE_DATA_MAX_SPREAD);
        }
 
        /**
@@ -190,7 +190,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function startObjectProtocol () {
                // Push the node name on the stacker
-               $this->getStackerInstance()->pushNamed('object_registry', self::OBJECT_TYPE_DATA_PROTOCOL);
+               $this->getStackerInstance()->pushNamed('node_object_registry', self::OBJECT_TYPE_DATA_PROTOCOL);
        }
 
        /**
@@ -200,7 +200,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function startObjectRecipientType () {
                // Push the node name on the stacker
-               $this->getStackerInstance()->pushNamed('object_registry', self::OBJECT_TYPE_DATA_RECIPIENT_TYPE);
+               $this->getStackerInstance()->pushNamed('node_object_registry', self::OBJECT_TYPE_DATA_RECIPIENT_TYPE);
        }
 
        /**
@@ -210,7 +210,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function finishObjectRecipientType () {
                // Pop the last entry
-               $this->getStackerInstance()->popNamed('object_registry');
+               $this->getStackerInstance()->popNamed('node_object_registry');
        }
 
        /**
@@ -220,7 +220,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function finishObjectProtocol () {
                // Pop the last entry
-               $this->getStackerInstance()->popNamed('object_registry');
+               $this->getStackerInstance()->popNamed('node_object_registry');
        }
 
        /**
@@ -230,7 +230,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function finishObjectMaxSpread () {
                // Pop the last entry
-               $this->getStackerInstance()->popNamed('object_registry');
+               $this->getStackerInstance()->popNamed('node_object_registry');
        }
 
        /**
@@ -240,7 +240,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function finishObjectRecipientLimitation () {
                // Pop the last entry
-               $this->getStackerInstance()->popNamed('object_registry');
+               $this->getStackerInstance()->popNamed('node_object_registry');
        }
 
        /**
@@ -250,7 +250,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function finishObjectName () {
                // Pop the last entry
-               $this->getStackerInstance()->popNamed('object_registry');
+               $this->getStackerInstance()->popNamed('node_object_registry');
        }
 
        /**
@@ -260,7 +260,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function finishObjectListEntry () {
                // Pop the last entry
-               $this->getStackerInstance()->popNamed('object_registry');
+               $this->getStackerInstance()->popNamed('node_object_registry');
        }
 
        /**
@@ -270,7 +270,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function finishObjectList () {
                // Pop the last entry
-               $this->getStackerInstance()->popNamed('object_registry');
+               $this->getStackerInstance()->popNamed('node_object_registry');
        }
 
        /**
@@ -280,7 +280,7 @@ class XmlObjectRegistryTemplateEngine extends BaseXmlTemplateEngine implements C
         */
        protected function finishObjectRegistry () {
                // Pop the last entry
-               $this->getStackerInstance()->popNamed('object_registry');
+               $this->getStackerInstance()->popNamed('node_object_registry');
        }
 }