blob: 4dd24e6ab983bb84803dae45f0bf88096e75e350 (
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->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()
}
?>
|