Skip to content

Instantly share code, notes, and snippets.

@benvanstaveren
Created May 4, 2011 03:59
Show Gist options
  • Save benvanstaveren/954730 to your computer and use it in GitHub Desktop.
Save benvanstaveren/954730 to your computer and use it in GitHub Desktop.
package My::Plugin;
use strict;
use warnings;
use base 'TheApp::Plugin::Base';
sub register {
my $self = shift;
my $app = shift;
$self->hook(render_filter => sub { s/foo/bar/ and return $_ });
$app->register($self, { 'foo' => 'bar' });
}
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment