(Yaf >=1.0.0)
Yaf_Request_Abstract::isDispatched — Determine if the request is dispatched
Determine whether the request has been dispatched.
This function has no parameters.
Example #1 Yaf_Request_Abstract::isDispatched() example
<?php
class IndexController extends Yaf_Controller_Abstract
{
public function indexAction()
{
// Stop the dispatch loop, no further action will be dispatched
$this->getRequest()->setDispatched();
var_dump($this->getRequest()->isDispatched());
}
}
?>The above example will output something similar to:
bool(true)