blob: affb54373e20d2dca2d94cc29539dffd25d503ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php
require 'smarty/libs/Smarty.class.php';
class PHPFSPOT_TMPL extends Smarty {
var $parent;
public function __construct($parent)
{
$this->Smarty();
$this->template_dir = $parent->cfg->base_path .'/templates';
$this->config_dir = $parent->cfg->base_path .'/smarty_config';
$this->compile_dir = $parent->cfg->base_path .'/templates_c';
$this->cache_dir = $parent->cfg->base_path .'/smarty_cache';
} // __construct()
public function show($template)
{
$this->display($template);
} // show()
public function fetch($template)
{
return $this->fetch($template);
} // fetch()
}
?>
|