_application=$application; $application->attachEventHandler('Error',array($this,'handleError')); $application->setErrorHandler($this); } /** * @return string id of this module */ public function getID() { return $this->_id; } /** * @param string id of this module */ public function setID($value) { $this->_id=$value; } public function handleError($sender,$param) { if(($response=Prado::getApplication()->getResponse())!==null) $response->clear(); switch(Prado::getApplication()->getMode()) { case 'Off': case 'Debug': $this->displayException($param); exit(1); case 'Normal': case 'Performance': error_log($param->__toString()); header("HTTP/1.0 500 Internal Error"); exit(1); } } protected function displayException($exception) { $lines=file($exception->getFile()); $errorLine=$exception->getLine(); $beginLine=$errorLine-9>=0?$errorLine-9:0; $endLine=$errorLine+8<=count($lines)?$errorLine+8:count($lines); $source=''; for($i=$beginLine;$i<$endLine;++$i) { if($i===$errorLine-1) { $line=highlight_string(sprintf("Line %4d: %s",$i+1,$lines[$i]),true); $source.="