2 /*=====================================================================*\
3 || ###################################################################
4 || # Blue Static ISSO Framework
5 || # Copyright ©2002-[#]year[#] Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
23 * File System Template System (TemplateFs.php)
28 require_once('ISSO/Template.php');
29 require_once('ISSO/Functions.php');
32 * File System Template System
34 * This framework merely replaces the template loading functions with
35 * file-system based ones.
38 * @copyright Copyright ©2002 - [#]year[#], Blue Static
43 class BSTemplateFs
extends BSTemplate
46 * The path, from the path of the application, where templates are stored
49 private $templateDir = '';
52 * The extension all the template files have
55 private $extension = 'tpl';
57 // ###################################################################
59 * Constructor (overriding so we don't require the Db module)
61 public function __construct() {}
63 // ###################################################################
65 * Sets the template directory name
67 * @param string Template directory name
69 public function setTemplateDirectory($dir)
71 $this->templateDir
= BSFunctions
::FetchSourcePath($dir);
74 // ###################################################################
76 * Sets the file extension for the templates
78 * @param string File extension
80 public function setExtension($ext)
82 $this->extension
= $ext;
85 // ###################################################################
87 * Takes an array of template names, loads them, and then stores a
88 * parsed version for optimum speed.
90 * @param array List of template names to be cached
92 public function cache($namearray)
94 if (sizeof($this->cache
) > 0)
96 trigger_error('You cannot cache templates more than once per initialization');
100 foreach ($namearray AS $name)
102 $template = $this->_loadTemplate($name);
103 $template = $this->_parseTemplate($template);
104 $this->cache
["$name"] = $template;
105 $this->usage["$name"] = 0;
110 // ###################################################################
112 * Loads a template from the file system from the specified
113 * $templatedir with the file extension $extension
115 * @param string The name of the template call
117 protected function _loadTemplate($name)
119 $path = BSRegister
::GetAppPath() . $this->templateDir
. $name . '.' . $this->extension
;
122 if (($template = @file_get_contents($path)) !== false)
128 trigger_error("Could not load the template '$path'");
134 trigger_error("Could not load the template
'$path'");
140 /*=====================================================================*\
141 || ###################################################################
144 || ###################################################################
145 \*=====================================================================*/