Help for this page

Select Code to Download


  1. or download this
    package Something::Pluggable;
    use base qw(Class::Autoplug::Pluggable);
    1;
    
  2. or download this
    package Something::Plugin::Foo;
    use base qw(Class::AutoPlug::Plugin);
    ...
    sub z:Posthook(someBaseMethod) { ... }
    
    1;