En este código que es la clase plantilla para trabajar con Smarty 3, cómo defino mi clase constructor?
Código PHP:
<?php
include_once SMARTY_BASEFILE;
class Plantilla extends Smarty {
function Plantilla() {
$this->template_dir = APP_BASEDIR .'/plantillas/templates/';
$this->compile_dir = APP_BASEDIR .'/plantillas/templates_c/';
$this->config_dir = APP_BASEDIR .'/plantillas/configs/';
$this->cache_dir = APP_BASEDIR .'/plantillas/cache/';
}
}
?>
Gracias.