|
NAMEReaction::UI::Controller::Role::Action::Object DESCRIPTIONProvides an "object" action, which attempts to find an item in a collection and store it in the stash. SYNOPSYS package MyApp::Controller::Foo;
use base 'Reaction::Controller';
use Reaction::Class;
with(
'Reaction::UI::Controller::Role::GetCollection',
'Reaction::UI::Controller::Role::Action::Simple',
'Reaction::UI::Controller::Role::Action::Object',
);
__PACKAGE__->config( action => {
object => { Chained => 'base', PathPart => 'id' },
foo_action => { Chained => 'object' },
} );
sub base :Chained('/base') :CaptureArgs(0) {
...
}
sub foo_action :Args(0){
my($self, $c) = @_;
$c->stash->{object}; #object is here....
}
REQUIRED METHODSThe following methods must be provided by the consuming class:
ACTIONSobjectChain link, captures one argument. Attempts to find a single object by passing the captured argument to the "find" method of the collection returned by "get_collection". If the object is found it is stored in the stash under the "object" key. SEE ALSO
AUTHORSSee Reaction::Class for authors. LICENSESee Reaction::Class for the license. POD ERRORSHey! The above document had some coding errors, which are explained below:
|