PHP Conference Ehime 2026

Yaf_View_Interface::getScriptPath

(Yaf >=1.0.0)

Yaf_View_Interface::getScriptPathEl propósito de getScriptPath

Descripción

abstract public function Yaf_View_Interface::getScriptPath(): string

Obtiene el directorio en el que se buscan las plantillas.

Parámetros

Esta función no contiene ningún parámetro.

Valores devueltos

El directorio de plantillas como cadena, o null si aún no ha sido definido.

Ejemplos

Ejemplo #1 Ejemplo de Yaf_View_Interface::getScriptPath()

<?php
class MyView implements Yaf_View_Interface
{
    private $tpl_dir;
    private $vars = array();

    public function __construct($template_dir, $options = null)
    {
        $this->tpl_dir = $template_dir;
    }

    public function assign($name, $value = null)
    {
        $this->vars[$name] = $value;
        return true;
    }

    public function display($tpl, $tpl_vars = null)
    {
        echo $this->render($tpl, $tpl_vars);
        return true;
    }

    public function render($tpl, $tpl_vars = null)
    {
        extract($this->vars);
        if ($tpl_vars !== null) {
            extract($tpl_vars);
        }
        ob_start();
        include $this->tpl_dir . "/" . $tpl;
        return ob_get_clean();
    }

    public function setScriptPath($template_dir)
    {
        $this->tpl_dir = $template_dir;
        return $this;
    }

    public function getScriptPath()
    {
        return $this->tpl_dir;
    }
}

/* se conecta el motor de vistas personalizado al despachador en el bootstrap */
class Bootstrap extends Yaf_Bootstrap_Abstract
{
    public function _initView(Yaf_Dispatcher $dispatcher)
    {
        $dispatcher->setView(new MyView(APPLICATION_PATH . "/views"));
    }
}
?>

Véase también

add a note

User Contributed Notes

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