3 * An ??? template engine class for XML templates
5 * @author Roland Haeder <webmaster@ship-simu.org>
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()
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.
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.
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/>.
25 class Xml???TemplateEngine extends BaseXmlTemplateEngine implements CompileableTemplate, Registerable {
27 * Protected constructor
31 protected function __construct () {
32 // Call parent constructor
33 parent::__construct(__CLASS__);
37 * Creates an instance of the class TemplateEngine and prepares it for usage
39 * @return $templateInstance An instance of TemplateEngine
40 * @throws BasePathIsEmptyException If the provided $templateBasePath is empty
41 * @throws InvalidBasePathStringException If $templateBasePath is no string
42 * @throws BasePathIsNoDirectoryException If $templateBasePath is no
43 * directory or not found
44 * @throws BasePathReadProtectedException If $templateBasePath is
47 public static final function createXml???TemplateEngine () {
49 $templateInstance = new Xml???TemplateEngine();
51 // Init template instannce
52 $templateInstance->initXmlTemplateEngine('PREFIX', '!!!');
54 // Return the prepared instance
55 return $templateInstance;
61 * @param $resource XML parser resource (currently ignored)
62 * @param $characters Characters to handle
65 public function characterHandler ($resource, $characters) {
66 // Trim all spaces away
67 $characters = trim($characters);
69 // Is this string empty?
70 if (empty($characters)) {
71 // Then skip it silently
75 // Assign data with matching variable here
76 parent::assignVariable($this->getStackerInstance()->getNamed('!!!'), $characters);
80 * Getter for cache file (FQFN)
82 * @return $fqfn Full-qualified file name of the menu cache
84 public function get???CacheFqfn () {
85 $this->partialStub('Please implement this method.');
93 protected function start??? () {
94 // Push the node name on the stacker
95 $this->getStackerInstance()->pushNamed('!!!', '|||');
103 protected function finish??? () {
104 // Pop the last entry
105 $this->getStackerInstance()->popNamed('!!!');