1 | <?php |
||
5 | class ErrorMessage |
||
6 | { |
||
7 | protected $template = 'Invalid'; |
||
8 | protected $variables = array(); |
||
9 | |||
10 | 34 | public function __construct($template = '', $variables = array()) |
|
15 | |||
16 | 34 | public function setTemplate($template) |
|
25 | |||
26 | public function getTemplate() |
||
30 | |||
31 | 34 | public function setVariables($variables = array()) |
|
39 | |||
40 | public function getVariables() |
||
44 | |||
45 | 20 | public function __toString() |
|
56 | } |
||
57 |