Catalyst::Dispatcher - The Catalyst Dispatcher |
dispatch($c)
prepare_action($c)
Catalyst::Dispatcher - The Catalyst Dispatcher
See Catalyst.
This is the class that maps public urls to actions in your Catalyst application based on the attributes you set.
Construct a new dispatcher.
An arrayref of pre-loaded dispatchtype classes
Entries are considered to be available as Catalyst::DispatchType::CLASS
To use a custom class outside the regular Catalyst
namespace, prefix
it with a +
, like so:
+My::Dispatch::Type
An arrayref of post-loaded dispatchtype classes
Entries are considered to be available as Catalyst::DispatchType::CLASS
To use a custom class outside the regular Catalyst
namespace, prefix
it with a +
, like so:
+My::Dispatch::Type
Documented in Catalyst
dispatch($c)
Delegate the dispatch to the action that matched the url, or return a message about unknown resource
Documented in Catalyst
prepare_action($c)
Find an dispatch type that matches $c->req->path, and set args from it.
returns a named action from a given namespace.
Returns the named action by its full path.
Return all the action containers for a given namespace, inclusive
Takes a Catalyst::Action object and action parameters and returns a URI part such that if $c->req->path were this URI part, this action would be dispatched to with $c->req->captures set to the supplied arrayref.
If the action object is not available for external dispatch or the dispatcher cannot determine an appropriate URI, this method will return undef.
Make sure all required dispatch types for this action are loaded, then pass the action to our dispatch types so they can register it if required. Also, set up the tree with the action containers.
Sebastian Riedel, sri@cpan.org
Matt S Trout, mst@shadowcatsystems.co.uk
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
Catalyst::Dispatcher - The Catalyst Dispatcher |