ZBlogPHP::BuildTemplate PHP Method

BuildTemplate() public method

模板解析
public BuildTemplate ( ) : boolean
return boolean
    public function BuildTemplate()
    {
        $this->template->LoadTemplates();
        foreach ($GLOBALS['hooks']['Filter_Plugin_Zbp_BuildTemplate'] as $fpname => &$fpsignal) {
            $fpname($this->template->templates);
        }
        return $this->template->BuildTemplate();
    }
ZBlogPHP