X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FLayout%2FActionBar%2FAction.pm;h=aea2e2cf04bd716341f51ff21d405344b757a36c;hb=1e941de2f7c090706dd61435f3dea9f2275172df;hp=4243b652ba7e79c8e5b789396258ca7b5cdb4b4c;hpb=f9c6711c22848fbc30edac1944e46bb21aba8c05;p=kivitendo-erp.git diff --git a/SL/Layout/ActionBar/Action.pm b/SL/Layout/ActionBar/Action.pm index 4243b652b..aea2e2cf0 100644 --- a/SL/Layout/ActionBar/Action.pm +++ b/SL/Layout/ActionBar/Action.pm @@ -3,7 +3,7 @@ package SL::Layout::ActionBar::Action; use strict; use parent qw(Rose::Object); -use SL::Presenter; +use SL::Presenter::Tag qw(name_to_id); use Rose::Object::MakeMethods::Generic ( 'scalar --get_set_init' => [ qw(id params text) ], @@ -35,43 +35,183 @@ sub callable { 0 } # shortcut for presenter -sub p { - SL::Presenter->get -} - sub init_params { +{} } # unique id to tie div and javascript together sub init_id { - $_[0]->params->{id} // - $_[0]->p->name_to_id('action[]') + $_[0]->params->{id} // name_to_id('action[]') } - 1; __END__ -=head 1 +=encoding utf-8 + +=head1 NAME + +SL::Layout::ActionBar::Action - base class for action bar actions + +=head1 DESCRIPTION + +This base class for actions can be used to implement elements that can be +added to L. + +Elements can be interactive or simply used for layout. Most of the actual +semantics are handled in the corresponding javascript C, so +this is only used to generate the DOM elements and to provide information for +request time logic decisions. + + +=head1 SYNOPSIS + + # implement: + package SL::Layout::ActionBar::Custom; + use parent qw(SL::Layout::ActionBar::Action); + + # unsugared use + SL::Layout::ActionBar::Custom->new( + text => t8('Description'), + params => { + key => $attr, + key => $attr, + ... + }, + ); + + # parse sugared version: + SL::Layout::ActionBar::Custom->from_params( + t8('Description'), + key => $attr, + key => $attr, + ... + ); + +=head1 INTERFACE + +=over 4 + +=item * C + +Needs to be implemented. Should render only the bare minimum necessary to +identify the element at run time. + +=item * C