Yaf_View_Simple::getScriptPath

(Yaf >=1.0.0)

Yaf_View_Simple::getScriptPathGet the template directory

Description

public function Yaf_View_Simple::getScriptPath(): string

Gets the directory in which templates are looked up.

Parameters

This function has no parameters.

Return Values

The template directory as a string, or null if it has not been set yet.

Examples

Example #1 Yaf_View_Simple::getScriptPath() example

<?php
class IndexController extends Yaf_Controller_Abstract
{
    public function indexAction()
    {
        /* the directory in which templates are looked up,
         * usually application.view.directory */
        echo $this->getView()->getScriptPath();
    }
}
?>

The above example will output something similar to:

/var/www/html/application/views

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.