1 | <?php |
||
8 | class CLogController |
||
9 | { |
||
10 | /** |
||
11 | * Properties |
||
12 | * |
||
13 | */ |
||
14 | private $log; |
||
15 | private $table; |
||
16 | |||
17 | /** |
||
18 | * Constructor |
||
19 | * |
||
20 | */ |
||
21 | public function __construct() { |
||
25 | |||
26 | /** |
||
27 | * Timestamp, log a event with a time. |
||
28 | * |
||
29 | */ |
||
30 | public function Timestamp($domain, $where, $comment=null) { |
||
33 | |||
34 | /** |
||
35 | * Render log |
||
36 | * @return string with a html-table to display all timestamps |
||
37 | * |
||
38 | */ |
||
39 | public function printLog() { |
||
50 | |||
51 | /** |
||
52 | * Get Timestamps as Array |
||
53 | */ |
||
54 | public function getTimestampsAsArray() { |
||
57 | |||
58 | /* |
||
59 | * Test if class is loaded |
||
60 | */ |
||
61 | public function saySomething($word) { |
||
66 | } |