clearCompiledTemplate example

/** * Delete compiled template file * * @param string $resource_name template name * @param string $compile_id compile id * @param integer $exp_time expiration time * @return integer number of template files deleted */
    public function clearCompiledTemplate($resource_name = null, $compile_id = null, $exp_time = null)
    {
        return Smarty_Internal_Utility::clearCompiledTemplate($resource_name$compile_id$exp_time$this);
    }


    /** * Return array of tag/attributes of all tags used by an template * * @param object $templae template object * @return array of tag/attributes */
    public function getTags(Smarty_Internal_Template $template)
    {
        

    public function clear_compiled_tpl($tpl_file = null, $compile_id = null, $exp_time = null)
    {
        return $this->clearCompiledTemplate($tpl_file$compile_id$exp_time);
    }

    /** * Checks whether requested template exists. * * @param string $tpl_file * @return boolean */
    public function template_exists($tpl_file)
    {
        return $this->templateExists($tpl_file);
    }
Home | Imprint | This part of the site doesn't use cookies.