Exemple #1
0
 /**
  * Send an empty response and exit.
  *
  * @internal
  * @param Zend_Controller_Request_Abstract $request
  * @see http://framework.zend.com/manual/1.12/en/zend.controller.request.html Zend_Controller_Request_Abstract
  */
 public function routeStartup(Zend_Controller_Request_Abstract $request)
 {
     if ($request->isOptions()) {
         $this->getResponse()->sendResponse();
         exit(0);
     }
 }