Prado\Web\UI\TTemplateControl::loadTemplate PHP Method

loadTemplate() protected method

Loads the template associated with this control class.
protected loadTemplate ( ) : Prado\Web\UI\ITemplate
return Prado\Web\UI\ITemplate the parsed template structure
    protected function loadTemplate()
    {
        Prado::trace("Loading template " . get_class($this), '\\Prado\\Web\\UI\\TTemplateControl');
        $template = $this->getService()->getTemplateManager()->getTemplateByClassName(get_class($this));
        return $template;
    }