X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FCustomVariableConfig.pm;h=0b124e9fb97c068e12e93bbfcd42c5f45413d64d;hb=b1e1ad26766dc4c64000c33cf3a71d3e0cdea8f1;hp=1b780e5fc0441ef78616639b825bceb6e7508bd7;hpb=d9abca44cb1764bbd9e200dd3e086d0733b34d23;p=kivitendo-erp.git diff --git a/SL/Controller/CustomVariableConfig.pm b/SL/Controller/CustomVariableConfig.pm index 1b780e5fc..0b124e9fb 100644 --- a/SL/Controller/CustomVariableConfig.pm +++ b/SL/Controller/CustomVariableConfig.pm @@ -46,6 +46,7 @@ sub action_list { my $configs = SL::DB::Manager::CustomVariableConfig->get_all_sorted(where => [ module => $self->module ]); + $self->setup_list_action_bar; $::form->header; $self->render('custom_variable_config/list', title => t8('List of custom variables'), @@ -70,6 +71,7 @@ sub show_form { $params{all_partsgroups} = SL::DB::Manager::PartsGroup->get_all(); $::request->layout->use_javascript("${_}.js") for qw(jquery.selectboxes jquery.multiselect2side); + $self->setup_form_action_bar; $self->render('custom_variable_config/form', %params); } @@ -226,4 +228,57 @@ sub _set_cvar_validity { } } +sub setup_list_action_bar { + my ($self) = @_; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + action => [ + t8('Add'), + link => $self->url_for(action => 'new', module => $self->module), + ], + ); + } +} + +sub setup_form_action_bar { + my ($self) = @_; + + my $is_new = !$self->config->id; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + combobox => [ + action => [ + t8('Save'), + submit => [ '#form', { action => 'CustomVariableConfig/' . ($is_new ? 'create' : 'update') } ], + checks => [ 'check_prerequisites' ], + accesskey => 'enter', + ], + + action => [ + t8('Save as new'), + submit => [ '#form', { action => 'CustomVariableConfig/create'} ], + checks => [ 'check_prerequisites' ], + not_if => $is_new, + ], + ], # end of combobox "Save" + + action => [ + t8('Delete'), + submit => [ '#form', { action => 'CustomVariableConfig/destroy' } ], + confirm => t8('Do you really want to delete this object?'), + disabled => $is_new ? t8('This object has not been saved yet.') : undef, + ], + + 'separator', + + link => [ + t8('Abort'), + link => $self->url_for(action => 'list', module => $self->module), + ], + ); + } +} + 1;