Kohana_Twig::path PHP Метод

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

Returns the full path of the current template ($filename + $extension)
Автор: Jonathan Geiger
public path ( ) : string
Результат string
    public function path()
    {
        if ($this->_extension) {
            return $this->_file . '.' . $this->_extension;
        } else {
            return $this->_file;
        }
    }