29 lines
754 B
PHP
29 lines
754 B
PHP
<?php
|
|
// a test post-processor plugin - does nothing but pollute the namespace
|
|
// the run() method will be called just before rendering starts
|
|
//
|
|
// To use this plugin, add the following line to your config:
|
|
// SET post_test_enable 1
|
|
//
|
|
class WeatherMapPostProcessorExample extends WeatherMapPostProcessor
|
|
{
|
|
function run(&$map)
|
|
{
|
|
$enable = $map->get_hint("post_test_enable");
|
|
|
|
if ($enable) {
|
|
wm_debug(__CLASS__ . " is here\n");
|
|
|
|
// do your work in here...
|
|
|
|
$orig = $map->get_note("test");
|
|
$map->add_note("test", $orig . " TESTYTEST");
|
|
// -------------------------
|
|
} else {
|
|
wm_debug(__CLASS__ . " Not Enabled\n");
|
|
}
|
|
}
|
|
}
|
|
|
|
// vim:ts=4:sw=4:
|