X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FBackgroundJobHistory.pm;h=4fbd7ece0c3614725f58ae06848a73d3c9341714;hb=af0847405bd1a45eda7897a8bbfcb5b73a032580;hp=fae870643892750afd716d3dbee33a36f4833795;hpb=7e601869345e7cbdb958a1295ea25f7e2b354a13;p=kivitendo-erp.git diff --git a/SL/Controller/BackgroundJobHistory.pm b/SL/Controller/BackgroundJobHistory.pm index fae870643..4fbd7ece0 100644 --- a/SL/Controller/BackgroundJobHistory.pm +++ b/SL/Controller/BackgroundJobHistory.pm @@ -29,6 +29,7 @@ sub action_list { $self->make_filter_summary; + $self->setup_list_action_bar; $self->render('background_job_history/list', title => $::locale->text('Background job history'), ENTRIES => $self->models->get, @@ -41,6 +42,7 @@ sub action_show { my $back_to = $::form->{back_to} || $self->url_for(action => 'list'); $self->history(SL::DB::BackgroundJobHistory->new(id => $::form->{id})->load); + $self->setup_show_action_bar; $self->render('background_job_history/show', title => $::locale->text('View background job execution result'), back_to => $back_to); @@ -111,4 +113,34 @@ sub init_models { ); } +sub setup_list_action_bar { + my ($self) = @_; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + link => [ + t8('Server control'), + link => $self->url_for(controller => 'TaskServer', action => 'show'), + ], + link => [ + t8('List of jobs'), + link => $self->url_for(controller => 'BackgroundJob', action => 'list'), + ], + ); + } +} + +sub setup_show_action_bar { + my ($self) = @_; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + link => [ + t8('Back'), + link => $self->url_for(action => 'list'), + ], + ); + } +} + 1;