Kohana_Twig::path PHP Method

path() public method

Returns the full path of the current template ($filename + $extension)
Author: Jonathan Geiger
public path ( ) : string
return string
    public function path()
    {
        if ($this->_extension) {
            return $this->_file . '.' . $this->_extension;
        } else {
            return $this->_file;
        }
    }