blob: b5c1930fbac8818d07d92ecd52a88a9ecc43f663 (
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
|
<?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->compile_dir = $parent->cfg->base_path .'/templates_c';
$this->config_dir = $parent->cfg->base_path .'/smarty_config';
$this->cache_dir = $parent->cfg->base_path .'/smarty_cache';
} // __construct()
public function show($template)
{
$this->display($template);
} // show()
}
?>
|