Smarty_Phrame(); } // TODO : En el futuro deberá integrarse en el constructor '__construct', eliminando esta función. public function Smarty_Phrame() { parent::__construct(); $configuration = ConfigFramework::getConfig(); $customDirname = $configuration->getCustomDirName(); $this->template_dir = array( 'plantillas', 'custom/'.$customDirname.'/plantillas', 'igep/plantillas' ); $this->compile_dir = $configuration->getTemplatesCompilationDir(); $this->plugins_dir = array( 'smarty/plugins', 'custom/'.$customDirname.'/smarty/plugins', SMARTY_DIR.'plugins/' ); $this->config_dir = 'lang'; $this->debug_tpl = SMARTY_DIR . 'debug.tpl' ; $this->caching = false; if( !$configuration->getSmartyCompileCheck() ) { $this->compile_check = false; } /* Instanciamos la clase que gestiona los componentes web */ $this->igepPlugin = new IgepPlugin(); }//FIN funcion Smarty_Phrame } //FIN clase Smarty_Phrame