]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/template/class_
Added template class for entries in a request-node-list
[hub.git] / application / hub / main / template / class_
index ec23392a29e475965c6fa79527f5b343cf611dfb..da2a17cfcca8436a29fcbefefc115f0248bdb114 100644 (file)
@@ -62,7 +62,6 @@ class Xml???TemplateEngine extends BaseXmlTemplateEngine implements CompileableT
         * @param       $resource               XML parser resource (currently ignored)
         * @param       $characters             Characters to handle
         * @return      void
-        * @todo        Find something useful with this!
         */
        public function characterHandler ($resource, $characters) {
                // Trim all spaces away
@@ -74,10 +73,8 @@ class Xml???TemplateEngine extends BaseXmlTemplateEngine implements CompileableT
                        return false;
                } // END - if
 
-               // Get current XML node name as an array index
-               $nodeName = $this->getStackerInstance()->getNamed('!!!');
-
-               $this->partialStub('TODO: Do something with the gathered data.');
+               // Assign data with matching variable here
+               parent::assignVariable($this->getStackerInstance()->getNamed('!!!'), $characters);
        }
 
        /**