Pop\Mvc\View::getTemplate PHP Метод

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

Get view template
public getTemplate ( ) : string
Результат string
    public function getTemplate()
    {
        $tmpl = null;
        if (null !== $this->templateFile) {
            $tmpl = $this->templateFile;
        } else {
            if (null !== $this->templateString) {
                $tmpl = $this->templateString;
            }
        }
        return $tmpl;
    }