(Yaf >=1.0.0)
Yaf_Dispatcher::enableView — Enable view rendering
Turn on view rendering. This is the opposite of Yaf_Dispatcher::disableView().
This function has no parameters.
Returns the Yaf_Dispatcher object itself on
success, or null if the application is not initialized.
Example #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();
}
}
}
?>