weathermap |
Subversion Repositories: |
Line No. | Rev | Author | Line |
---|---|---|---|
1 | 1 | simandl | <?php |
2 | // a test pre-processor plugin - does nothing but pollute the namespace |
||
3 | // the run() method will be called just after the config is read, but before any rendering or data reading is done. |
||
4 | |
||
5 | class WeatherMapPreProcessorTest extends WeatherMapPreProcessor { |
||
6 | |
||
7 | function run(&$map) |
||
8 | { |
||
9 | $map->add_note("test","TEST!"); |
||
10 | debug("Test Preprocessor in the hizouse\n"); |
||
11 | } |
||
12 | |
||
13 | } |
||
14 | |
||
15 | // vim:ts=4:sw=4: |
||
16 | ?> |