]> git.mxchange.org Git - hub.git/blob - application/hub/main/template/class_
Added template class for entries in a request-node-list
[hub.git] / application / hub / main / template / class_
1 <?php
2 /**
3  * An ??? template engine class for XML templates
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  * @todo                This template engine does not make use of setTemplateType()
11  *
12  * This program is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program. If not, see <http://www.gnu.org/licenses/>.
24  */
25 die('YOU NEED TO REPLACE ???, !!! AND ||| IN THIS CLASS BEFORE YOU CAN USE IT.');
26 class Xml???TemplateEngine extends BaseXmlTemplateEngine implements CompileableTemplate, Registerable {
27         /**
28          * Protected constructor
29          *
30          * @return      void
31          */
32         protected function __construct () {
33                 // Call parent constructor
34                 parent::__construct(__CLASS__);
35         }
36
37         /**
38          * Creates an instance of the class TemplateEngine and prepares it for usage
39          *
40          * @return      $templateInstance               An instance of TemplateEngine
41          * @throws      BasePathIsEmptyException                If the provided $templateBasePath is empty
42          * @throws      InvalidBasePathStringException  If $templateBasePath is no string
43          * @throws      BasePathIsNoDirectoryException  If $templateBasePath is no
44          *                                                                                      directory or not found
45          * @throws      BasePathReadProtectedException  If $templateBasePath is
46          *                                                                                      read-protected
47          */
48         public static final function createXml???TemplateEngine () {
49                 // Get a new instance
50                 $templateInstance = new Xml???TemplateEngine();
51
52                 // Init template instannce
53                 $templateInstance->initXmlTemplateEngine('PREFIX', '!!!');
54
55                 // Return the prepared instance
56                 return $templateInstance;
57         }
58
59         /**
60          * Currently not used
61          *
62          * @param       $resource               XML parser resource (currently ignored)
63          * @param       $characters             Characters to handle
64          * @return      void
65          */
66         public function characterHandler ($resource, $characters) {
67                 // Trim all spaces away
68                 $characters = trim($characters);
69
70                 // Is this string empty?
71                 if (empty($characters)) {
72                         // Then skip it silently
73                         return false;
74                 } // END - if
75
76                 // Assign data with matching variable here
77                 parent::assignVariable($this->getStackerInstance()->getNamed('!!!'), $characters);
78         }
79
80         /**
81          * Getter for cache file (FQFN)
82          *
83          * @return      $fqfn   Full-qualified file name of the menu cache
84          */
85         public function get???CacheFqfn () {
86                 $this->partialStub('Please implement this method.');
87         }
88
89         /**
90          * Starts the |||
91          *
92          * @return      void
93          */
94         protected function start??? () {
95                 // Push the node name on the stacker
96                 $this->getStackerInstance()->pushNamed('!!!', '|||');
97         }
98
99         /**
100          * Finishes the |||
101          *
102          * @return      void
103          */
104         protected function finish??? () {
105                 // Pop the last entry
106                 $this->getStackerInstance()->popNamed('!!!');
107         }
108 }
109
110 // [EOF]
111 ?>