![]() |
![]()
| ![]() |
![]()
NAMEReaction::UI::Controller::Role::Action::Simple DESCRIPTIONProvides a "setup_viewport" method, which makes it easier to setup and configure a viewport in controller actions. SYNOPSYSpackage MyApp::Controller::Foo; use base 'Reaction::Controller'; use Reaction::Class; with 'Reaction::UI::Controller::Role::Action::Simple'; __PACKAGE__->config( action_viewport_map => { bar => 'Reaction::UI::Viewport::Object' }, action_viewport_args => { location => 'custom-location' }, ); sub bar :Local { my($self, $c) = @_; my $obj = $self->get_collection($c)->find( $some_key ); $self->setup_viewport($c, { model => $obj }); } ATTRIBUTESaction_viewport_map
Read-write lazy building hashref. The keys should match action names in the Controller and the value should be the ViewPort class that this action should use. action_viewport_argsRead-write lazy building hashref. Additional ViewPort arguments for the action named as the key in the controller.
METHODSsetup_viewport $c, \%vp_argsAccepts two arguments, context, and a hashref of viewport arguments. It will automatically determine the action name using the catalyst stack and call "push_viewport" with the ViewPort class name contained in the "action_viewport_map" with a set of options determined by merging $vp_args and the arguments contained in "action_viewport_args", if any. 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:
|