Prado\Web\UI\TTemplateControl::getIsSourceTemplateControl PHP Метод

getIsSourceTemplateControl() публичный Метод

public getIsSourceTemplateControl ( ) : boolean
Результат boolean whether this control is a source template control. A source template control loads its template from external storage, such as file, db, rather than from within another template.
    public function getIsSourceTemplateControl()
    {
        if (($template = $this->getTemplate()) !== null) {
            return $template->getIsSourceTemplate();
        } else {
            return false;
        }
    }