GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Pluggable(3) User Contributed Perl Documentation Pluggable(3)

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.

$c->forward_all($action,[$argsref $sort])

    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} }

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

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.
2005-11-28 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.