Prado\Web\UI\TTemplateControl::getTemplateDirectory PHP 메소드

getTemplateDirectory() 공개 메소드

public getTemplateDirectory ( ) : string
리턴 string the directory containing the template. Empty if no template available.
    public function getTemplateDirectory()
    {
        if (($template = $this->getTemplate()) !== null) {
            return $template->getContextPath();
        } else {
            return '';
        }
    }