| Catalyst-Plugin-Pluggable documentation | view source | Contained in the Catalyst-Plugin-Pluggable distribution. |
Catalyst::Plugin::Pluggable - Plugin for Pluggable Catalyst applications
# use it
use Catalyst qw/Pluggable/;
$c->forward_all('test');
$c->forward_all( 'test', [ 'foo', 'bar' ], '$b->{class} cmp $a->{class}' );
$c->forward_all( 'test', '$b->{class} cmp $a->{class}' );
Pluggable Catalyst applications.
Like C<forward>, but forwards to 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->{class} cmp $b->{class} }
Sebastian Riedel, sri@oook.de
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst-Plugin-Pluggable documentation | view source | Contained in the Catalyst-Plugin-Pluggable distribution. |