PHP 8.6.0 Beta 3 is available for testing

Yaf_View_Simple::getScriptPath

(Yaf >=1.0.0)

Yaf_View_Simple::getScriptPathGet the template directory

Descrizione

public function Yaf_View_Simple::getScriptPath(): string

Gets the directory in which templates are looked up.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Esempi

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();
    }
}
?>

Il precedente esempio visualizzerà qualcosa simile a:

/var/www/html/application/views

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top