
WE_Frontend::Plugin::NullFilter - a sample custom filter

# In the calling script (normally already done by WebEditor::OldController)
my $t = Template->new({PLUGIN_BASE => "WE_Frontend::Plugin"});
# In the template
[% USE NullFilter %]
[% FILTER $NullFilter %]
...
[% END %]
[% variable | $NullFilter %]

This filter does nothing, i.e. it copies the input unchanged to the output. This module serves as a sample filter for own extensions.

Slaven Rezic - slaven@rezic.de
