PHP 8.5.10 Released!

Yaf_Dispatcher::autoRender

(Yaf >=1.0.0)

Yaf_Dispatcher::autoRenderSwitch on/off autorendering

Açıklama

public function Yaf_Dispatcher::autoRender(?bool $flag = null): Yaf_Dispatcher|bool

Yaf_Dispatcher will render the view automatically after dispatching an incoming request. You can prevent the rendering by calling this method with flag false.

Bilginize:

You can also simply return false in an action to prevent the auto-rendering of that action only.

Bağımsız Değişkenler

flag

Whether to enable auto-rendering.

Bilginize:

Since Yaf 2.2.0, if this parameter is not given, the current state is returned instead.

Dönen Değerler

Returns the Yaf_Dispatcher object itself when flag is given, or a bool indicating whether auto-rendering is enabled when it is not.

Örnekler

Örnek 1 Yaf_Dispatcher::autoRender() example

<?php
class IndexController extends Yaf_Controller_Abstract {
     /* init method will be called as soon as a controller is initialized */
     public function init() {
         if ($this->getRequest()->isXmlHttpRequest()) {
             //do not call render for ajax request
             //we will output a json string
             Yaf_Dispatcher::getInstance()->autoRender(FALSE);
         }
     }
}
?>

Ayrıca Bakınız

add a note

User Contributed Notes

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