]> git.pld-linux.org Git - packages/CodeIgniter-lib-smarty.git/blame - Smarty_tpl.php
- drop obsolete and outdated manual inclusion of rpm macros
[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
fb4b60c2 13 $this->setTemplateDir(APPPATH."views/templates");
f0cc9300 14 // compiled templates folder
fb4b60c2 15 $this->setCompileDir(APPPATH."views/templates_c");
f0cc9300 16 // cache folder
fb4b60c2 17 $this->setCacheDir(APPPATH."views/cache");
f0cc9300 18 //config folder
fb4b60c2 19 $this->setConfigDir(APPPATH."views/config");
8b91c9cd 20 //plugins folder
fb4b60c2 21 $this->setPluginsDir(array(
8b91c9cd
ZU
22 "/usr/share/php/Smarty3/plugins/",
23 "/usr/share/php/Smarty3/sysplugins/"
fb4b60c2 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.036344 seconds and 4 git commands to generate.