The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catalyst::Plugin::Pluggable - Plugin for Pluggable Catalyst applications

SYNOPSIS

    # use it
    use Catalyst qw/Pluggable/;

    $c->forward_all('do_stuff');

DESCRIPTION

Pluggable Catalyst applications.

METHODS

$c->forward_all($action,[$sortref])

    Like C<forward>, but executes all actions with the same name in the
    whole application, ordered by class name by default.
    The optional $sortref parameter allows you to pass a code reference
    to a function that will be used in the sort function. The default
    here is { $a->[0]->[0] cmp $b->[0]->[0] }

SEE ALSO

Catalyst::Manual, Catalyst::Test, Catalyst::Request, Catalyst::Response, Catalyst::Helper

AUTHOR

Sebastian Riedel, sri@oook.de

LICENSE

This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.