PHP 8.6.0 Beta 3 is available for testing

Yaf_Dispatcher::enableView

(Yaf >=1.0.0)

Yaf_Dispatcher::enableViewEnable view rendering

Опис

public function Yaf_Dispatcher::enableView(): ?Yaf_Dispatcher

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

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

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

Приклади

Приклад #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();
        }
    }
}
?>

Прогляньте також

add a note

User Contributed Notes

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