]> git.mxchange.org Git - core.git/blob - inc/main/classes/decorator/template/class_XmlRewriterTemplateDecorator.php
Continued:
[core.git] / inc / main / classes / decorator / template / class_XmlRewriterTemplateDecorator.php
1 <?php
2 // Own namespace
3 namespace CoreFramework\Template\Xml;
4
5 // Import framework stuff
6 use CoreFramework\Manager\ManageableApplication;
7 use CoreFramework\Response\Responseable;
8 use CoreFramework\Template\CompileableTemplate;
9
10 /**
11  * A decorator for XML template engines which rewrites the XML for compacting
12  * it.
13  *
14  * @author              Roland Haeder <webmaster@shipsimu.org>
15  * @version             0.0.0
16  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
17  * @license             GNU GPL 3.0 or any newer version
18  * @link                http://www.shipsimu.org
19  *
20  * This program is free software: you can redistribute it and/or modify
21  * it under the terms of the GNU General Public License as published by
22  * the Free Software Foundation, either version 3 of the License, or
23  * (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28  * GNU General Public License for more details.
29  *
30  * You should have received a copy of the GNU General Public License
31  * along with this program. If not, see <http://www.gnu.org/licenses/>.
32  */
33 class XmlRewriterTemplateDecorator extends BaseDecorator implements CompileableTemplate {
34         /**
35          * Protected constructor
36          *
37          * @return      void
38          */
39         protected function __construct () {
40                 // Call parent constructor
41                 parent::__construct(__CLASS__);
42         }
43
44         /**
45          * Creates an instance of the class TemplateEngine and prepares it for usage
46          *
47          * @param       $innerTemplateInstance  A CompileableTemplate instance
48          * @return      $templateInstance       An instance of TemplateEngine
49          */
50         public static final function createXmlRewriterTemplateDecorator (CompileableTemplate $innerTemplateInstance) {
51                 // Get a new instance
52                 $templateInstance = new XmlRewriterTemplateDecorator();
53
54                 // Set the inner template engine
55                 $templateInstance->setTemplateInstance($innerTemplateInstance);
56
57                 // Return the prepared instance
58                 return $templateInstance;
59         }
60
61         /**
62          * Settter for variable group
63          *
64          * @param       $groupName      Name of variable group
65          * @param       $add            Whether add this group
66          * @return      void
67          */
68         public function setVariableGroup ($groupName, $add = TRUE) {
69                 // Call the inner class' method
70                 $this->getTemplateInstance()->setVariableGroup($groupName, $add);
71         }
72
73         /**
74          * Adds a variable to current group
75          *
76          * @param       $var    Variable to set
77          * @param       $value  Value to store in variable
78          * @return      void
79          */
80         public function addGroupVariable ($var, $value) {
81                 // Call the inner class' method
82                 $this->getTemplateInstance()->addGroupVariable($var, $value);
83         }
84
85         /**
86          * Getter for base path
87          *
88          * @return      $templateBasePath       The relative base path for all templates
89          */
90         public final function getTemplateBasePath () {
91                 // Call the inner class' method
92                 return $this->getTemplateInstance()->getTemplateBasePath();
93         }
94
95         /**
96          * Getter for generic base path
97          *
98          * @return      $templateBasePath       The relative base path for all templates
99          */
100         public final function getGenericBasePath () {
101                 // Call the inner class' method
102                 return $this->getTemplateInstance()->getGenericBasePath();
103         }
104
105         /**
106          * Getter for template extension
107          *
108          * @return      $templateExtension      The file extension for all uncompiled templates
109          */
110         public final function getRawTemplateExtension () {
111                 // Call the inner class' method
112                 return $this->getTemplateInstance()->getRawTemplateExtension();
113         }
114
115         /**
116          * Getter for given variable group
117          *
118          * @param       $variableGroup  Variable group to check
119          * @return      $varStack               Found variable group
120          */
121         public function getVarStack ($variableGroup) {
122                 // Call the inner class' method
123                 return $this->getTemplateInstance()->getVarStack($variableGroup);
124         }
125
126         /**
127          * Getter for code-template extension
128          *
129          * @return      $codeExtension  The file extension for all code templates
130          */
131         public final function getCodeTemplateExtension () {
132                 // Call the inner class' method
133                 return $this->getTemplateInstance()->getCodeTemplateExtension();
134         }
135
136         /**
137          * Getter for template type
138          *
139          * @return      $templateType   The current template's type
140          */
141         public final function getTemplateType () {
142                 // Call the inner class' method
143                 return $this->getTemplateInstance()->getTemplateType();
144         }
145
146         /**
147          * Assign (add) a given variable with a value
148          *
149          * @param       $var    The variable we are looking for
150          * @param       $value  The value we want to store in the variable
151          * @return      void
152          */
153         public function assignVariable ($var, $value) {
154                 // Call the inner class' method
155                 $this->getTemplateInstance()->assignVariable($var, $value);
156         }
157
158         /**
159          * Removes a given variable
160          *
161          * @param       $variableName   The variable we are looking for
162          * @param       $variableGroup  Name of variable group (default: 'general')
163          * @return      void
164          */
165         public function removeVariable ($variableName, $variableGroup = 'general') {
166                 // Call the inner class' method
167                 $this->getTemplateInstance()->removeVariable($variableName, $variableGroup);
168         }
169
170         /**
171          * Load a specified HTML template into the engine
172          *
173          * @param       $template       The web template we shall load which is located in
174          *                                              'html' by default
175          * @return      void
176          */
177         public function loadHtmlTemplate ($template) {
178                 // Call the inner class' method
179                 $this->getTemplateInstance()->loadHtmlTemplate($template);
180         }
181
182         /**
183          * Assign a given congfiguration variable with a value
184          *
185          * @param       $variableName   The configuration variable we want to assign
186          * @return      void
187          */
188         public function assignConfigVariable ($variableName) {
189                 // Call the inner class' method
190                 $this->getTemplateInstance()->assignConfigVariable($variableName);
191         }
192
193         /**
194          * Load a specified code template into the engine
195          *
196          * @param       $template       The code template we shall load which is
197          *                                              located in 'code' by default
198          * @return      void
199          */
200         public function loadCodeTemplate ($template) {
201                 // Call the inner class' method
202                 $this->getTemplateInstance()->loadCodeTemplate($template);
203         }
204
205         /**
206          * Load a specified email template into the engine for later compilation
207          * with other code/web/email templates.
208          *
209          * @param       $template       The email template we shall load which is
210          *                                              located in "html" by default
211          * @return      void
212          */
213         public function loadEmailTemplate ($template) {
214                 // Call the inner class' method
215                 $this->getTemplateInstance()->loadEmailTemplate($template);
216         }
217
218         /**
219          * Compiles configuration place-holders in all variables. This 'walks'
220          * through the variable stack 'general'. It interprets all values from that
221          * variables as configuration entries after compiling them.
222          *
223          * @return      void
224          */
225         public function compileConfigInVariables () {
226                 // Call the inner class' method
227                 $this->getTemplateInstance()->compileConfigInVariables();
228         }
229
230         /**
231          * Compile all variables by inserting their respective values
232          *
233          * @return      void
234          */
235         public function compileVariables () {
236                 // Call the inner class' method
237                 $this->getTemplateInstance()->compileVariables();
238         }
239
240         /**
241          * Compile all required templates into the current loaded one
242          *
243          * @return      void
244          */
245         public function compileTemplate () {
246                 // Call the inner class' method
247                 $this->getTemplateInstance()->compileTemplate();
248         }
249
250         /**
251          * Assigns the last loaded raw template content with a given variable
252          *
253          * @param       $templateName   Name of the template we want to assign
254          * @param       $variableName   Name of the variable we want to assign
255          * @return      void
256          */
257         public function assignTemplateWithVariable ($templateName, $variableName) {
258                 // Call the inner class' method
259                 $this->getTemplateInstance()->assignTemplateWithVariable($templateName, $variableName);
260         }
261
262         /**
263          * Transfers the content of this template engine to a given response instance
264          *
265          * @param       $responseInstance       An instance of a Responseable class
266          * @return      void
267          */
268         public function transferToResponse (Responseable $responseInstance) {
269                 // Call the inner class' method
270                 $this->getTemplateInstance()->transportToResponse($responseInstance);
271         }
272
273         /**
274          * Assigns all the application data with template variables
275          *
276          * @param       $applicationInstance    A manageable application instance
277          * @return      void
278          */
279         public function assignApplicationData (ManageableApplication $applicationInstance) {
280                 // Call the inner class' method
281                 $this->getTemplateInstance()->assignApplicationData($applicationInstance);
282         }
283
284         /**
285          * "Compiles" a variable by replacing {?var?} with it's content
286          *
287          * @param       $rawCode                        Raw code to compile
288          * @param       $setMatchAsCode         Sets $match if readVariable() returns empty result
289          * @return      $rawCode                        Compile code with inserted variable value
290          */
291         public function compileRawCode ($rawCode, $setMatchAsCode = FALSE) {
292                 return $this->getTemplateInstance()->compileRawCode($rawCode, $setMatchAsCode);
293         }
294
295         /**
296          * Getter for variable group array
297          *
298          * @return      $variableGroups         All variable groups
299          */
300         public final function getVariableGroups () {
301                 // Call the inner class' method
302                 return $this->getTemplateInstance()->getVariableGroups();
303         }
304
305         /**
306          * Getter for raw template data
307          *
308          * @return      $rawTemplateData        The raw data from the template
309          */
310         public function getRawTemplateData () {
311                 // Call the inner class' method
312                 return $this->getTemplateInstance()->getRawTemplateData();
313         }
314
315         /**
316          * Renames a variable in code and in stack
317          *
318          * @param       $oldName        Old name of variable
319          * @param       $newName        New name of variable
320          * @return      void
321          */
322         public function renameVariable ($oldName, $newName) {
323                 // Call the inner class' method
324                 $this->getTemplateInstance()->renameVariable($oldName, $newName);
325         }
326
327         /**
328          * Renders the given XML content
329          *
330          * @param       $content        Valid XML content or if not set the current loaded raw content
331          * @return      void
332          * @throws      XmlParserException      If an XML error was found
333          */
334         public function renderXmlContent ($content = NULL) {
335                 // Call the inner class' method
336                 $this->getTemplateInstance()->renderXmlContent($content);
337         }
338
339         /**
340          * Enables or disables language support
341          *
342          * @param       $languageSupport        New language support setting
343          * @return      void
344          */
345         public function enableLanguageSupport ($languageSupport = TRUE) {
346                 // Call the inner class' method
347                 $this->getTemplateInstance()->enableLanguageSupport($languageSupport);
348         }
349
350         /**
351          * Checks whether language support is enabled
352          *
353          * @return      $languageSupport        Whether language support is enabled or disabled
354          */
355         public function isLanguageSupportEnabled () {
356                 // Call the inner class' method
357                 return $this->getTemplateInstance()->isLanguageSupportEnabled();
358         }
359
360         /**
361          * Enables or disables XML compacting
362          *
363          * @param       $xmlCompacting  New XML compacting setting
364          * @return      void
365          */
366         public function enableXmlCompacting ($xmlCompacting = TRUE) {
367                 // Call the inner class' method
368                 $this->getTemplateInstance()->enableXmlCompacting($xmlCompacting);
369         }
370
371         /**
372          * Checks whether XML compacting is enabled
373          *
374          * @return      $xmlCompacting  Whether XML compacting is enabled or disabled
375          */
376         public function isXmlCompactingEnabled () {
377                 // Call the inner class' method
378                 return $this->getTemplateInstance()->isXmlCompactingEnabled();
379         }
380
381         /**
382          * Handles the start element of an XML resource
383          *
384          * @param       $resource               XML parser resource (currently ignored)
385          * @param       $element                The element we shall handle
386          * @param       $attributes             All attributes
387          * @return      void
388          * @throws      InvalidXmlNodeException         If an unknown/invalid XML node name was found
389          */
390         public function startElement ($resource, $element, array $attributes) {
391                 // Call the inner class' method
392                 $this->getTemplateInstance()->startElement($resource, $element, $attributes);
393         }
394
395         /**
396          * Ends the main or sub node by sending out the gathered data
397          *
398          * @param       $resource       An XML resource pointer (currently ignored)
399          * @param       $nodeName       Name of the node we want to finish
400          * @return      void
401          * @throws      XmlNodeMismatchException        If current main node mismatches the closing one
402          */
403         public function finishElement ($resource, $nodeName) {
404                 // Call the inner class' method
405                 $this->getTemplateInstance()->finishElement($resource, $nodeName);
406         }
407
408         /**
409          * Currently not used
410          *
411          * @param       $resource               XML parser resource (currently ignored)
412          * @param       $characters             Characters to handle
413          * @return      void
414          * @todo        Find something useful with this!
415          */
416         public function characterHandler ($resource, $characters) {
417                 // Call the inner class' method but trim the characters before
418                 $this->getTemplateInstance()->characterHandler($resource, trim($characters));
419         }
420
421         /**
422          * Removes all comments, tabs and new-line charcters to compact the content
423          *
424          * @param       $uncompactedContent             The uncompacted content
425          * @return      $compactedContent               The compacted content
426          */
427         public function compactContent ($uncompactedContent) {
428                 // Compact it ...
429                 $compactedContent = $this->getTemplateInstance()->compactContent($uncompactedContent);
430
431                 // ... and return it
432                 return $compactedContent;
433         }
434
435         /**
436          * Assigns a lot variables into the stack of currently loaded template.
437          * This method should only be used in very rare circumstances, e.g. when
438          * you have to copy a whole set of variables into the template engine.
439          * Before you use this method, please make sure you have considered all
440          * other possiblities.
441          *
442          * @param       $variables      An array with variables to be assigned
443          * @return      void
444          */
445         public function assignMultipleVariables (array $variables) {
446                 // Call the inner class' method but trim the characters before
447                 $this->getTemplateInstance()->assignMultipleVariables($variables);
448         }
449
450 }