(Yaf >=1.0.0)
Yaf_Dispatcher::autoRender — Switch on/off autorendering
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
falsein an action to prevent the auto-rendering of that action only.
flagWhether to enable auto-rendering.
Bilginize:
Since Yaf 2.2.0, if this parameter is not given, the current state is returned instead.
Returns the Yaf_Dispatcher object itself when
flag is given, or a bool indicating whether
auto-rendering is enabled when it is not.
Ö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);
}
}
}
?>