blob: 458d3169524c33c154a0af48777c51159ddad1b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php
class TErrorHandler extends TComponent implements IErrorHandler
{
/**
* @var string module ID
*/
private $_id;
/**
* @var boolean whether the module is initialized
*/
private $_initialized=false;
/**
* Initializes the module.
* This method is required by IModule and is invoked by application.
* @param IApplication application
* @param TXmlElement module configuration
*/
public function init($application,$config)
{
$application->attachEventHandler('Error',array($this,'handle'));
$this->_initialized=true;
}
/**
* @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 handle($sender,$param)
{ echo '...........................';
echo $param;
}
}
?>
|