]> git.pld-linux.org Git - packages/CodeIgniter-lib-smarty.git/blame - Smarty_tpl.php
- plugin dir
[packages/CodeIgniter-lib-smarty.git] / Smarty_tpl.php
CommitLineData
b09f499c
ER
1<?php
2
3defined('BASEPATH') or die('No direct script access allowed');
4
5// load smarty class
6require 'Smarty/Smarty.class.php';
7
8// system/application/libraries/smarty_tpl.php
9class smarty_tpl extends Smarty {
10 function smarty_tpl() {
f0cc9300
ZU
11 $this->Smarty();
12 // templates folder
13 $this->template_dir= APPPATH."views/templates";
14 // compiled templates folder
15 $this->compile_dir= APPPATH."views/templates_c";
16 // cache folder
17 $this->cache_dir= APPPATH."views/cache";
18 //config folder
19 $this->config_dir= APPPATH."views/config";
8b91c9cd
ZU
20 //plugins folder
21 $this->plugins_dir = array(
22 "/usr/share/php/Smarty3/plugins/",
23 "/usr/share/php/Smarty3/sysplugins/"
24 );
b09f499c 25
f0cc9300
ZU
26 // template recheck on
27 $this->compile_check= true;
b09f499c 28
f0cc9300
ZU
29 // cache off
30 $this->caching= false;
31 $this->cache_lifetime= 86400;
32 }
33}
This page took 0.06479 seconds and 4 git commands to generate.