Dutch PHP Conference 2027

Yaf_Dispatcher::enableView

(Yaf >=1.0.0)

Yaf_Dispatcher::enableViewEnable view rendering

Açıklama

public function Yaf_Dispatcher::enableView(): ?Yaf_Dispatcher

Turn on view rendering. This is the opposite of Yaf_Dispatcher::disableView().

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Returns the Yaf_Dispatcher object itself on success, or null if the application is not initialized.

Örnekler

Örnek 1 Yaf_Dispatcher::enableView() example

<?php
class ApiPlugin extends Yaf_Plugin_Abstract
{
    public function routerStartup(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response)
    {
        $dispatcher = Yaf_Dispatcher::getInstance();

        if ($request->getModuleName() === "Api") {
            // API actions emit JSON themselves, no view rendering wanted
            $dispatcher->disableView();
        } else {
            $dispatcher->enableView();
        }
    }
}
?>

Ayrıca Bakınız

add a note

User Contributed Notes

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