Catalyst::Action - Catalyst Action |
Catalyst::Action - Catalyst Action
<form action="[%c.uri_for(c.action.reverse)%]">
This class represents a Catalyst Action. You can access the object for the currently dispatched action via $c->action. See the the Catalyst::Dispatcher manpage for more information on how actions are dispatched. Actions are defined in the Catalyst::Controller manpage subclasses.
The sub attributes that are set for this action, like Local, Path, Private and so on. This determines how the action is dispatched to.
Returns the class name where this action is defined.
Returns a code reference to this action.
Dispatch this action against a context
Execute this action's coderef against a given controller with a given context and arguments
Check Args attribute, and makes sure number of args matches the setting. Always returns true if Args is omitted.
Returns the private namespace this action lives in.
Returns the private path for this action.
returns the sub name of this action.
Matt S. Trout
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
Catalyst::Action - Catalyst Action |