|
@@ 344-347 (lines=4) @@
|
| 341 |
|
$xResponseManager = $this->getResponseManager(); |
| 342 |
|
|
| 343 |
|
// Handle before processing event |
| 344 |
|
if(isset($this->aProcessingEvents[self::PROCESSING_EVENT_BEFORE])) |
| 345 |
|
{ |
| 346 |
|
$this->aProcessingEvents[self::PROCESSING_EVENT_BEFORE]->call(array(&$bEndRequest)); |
| 347 |
|
} |
| 348 |
|
|
| 349 |
|
if(!$bEndRequest) |
| 350 |
|
{ |
|
@@ 404-408 (lines=5) @@
|
| 401 |
|
if($mResult === true) |
| 402 |
|
{ |
| 403 |
|
// Handle after processing event |
| 404 |
|
if(isset($this->aProcessingEvents[self::PROCESSING_EVENT_AFTER])) |
| 405 |
|
{ |
| 406 |
|
$bEndRequest = false; |
| 407 |
|
$this->aProcessingEvents[self::PROCESSING_EVENT_AFTER]->call(array($bEndRequest)); |
| 408 |
|
} |
| 409 |
|
// If the called function returned no response, give the the global response instead |
| 410 |
|
if($xResponseManager->hasNoResponse()) |
| 411 |
|
{ |