|
NAMEReaction::UI::Controller::Role::Action::Update - Update action DESCRIPTIONProvides a "update" action, which sets up an Action Viewport by calling "action_for" on the object located in the "object" slot of 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',
'Reaction::UI::Controller::Role::Action::Update'
);
__PACKAGE__->config( action => {
object => { Chained => 'base' },
update => { Chained => 'object' },
} );
sub base :Chained('/base') :CaptureArgs(0) {
...
}
sub on_update_apply_callback{ #optional callback
my($self, $c, $vp, $result) = @_;
...
}
sub on_update_close_callback{ #optional callback
my($self, $c, $vp) = @_;
...
}
ROLES CONSUMEDThis role also consumes the following roles: REQUIRED METHODSThe following methods must be provided by the consuming class:
ACTIONSupdateChain endpoint with no args, sets up the viewport with the appropriate action. If the methods "on_update_apply_callback" and "on_update_close_callback" are present in the consuming class, they will be used as callbacks in the viewport. METHODS_build_action_viewport_mapExtends to set the "delete" key in the map to Reaction::UI::ViewPort::Action 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:
|