commit version 22.12.12447
This commit is contained in:
@ -0,0 +1,28 @@
|
||||
<?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:
|
Reference in New Issue
Block a user