ManageIQ/manageiq-ui-classic

View on GitHub
app/helpers/application_helper/toolbar/miq_report_schedule_center.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class ApplicationHelper::Toolbar::MiqReportScheduleCenter < ApplicationHelper::Toolbar::Basic
  button_group('miq_schedule_vmdb', [
    select(
      :miq_schedule_vmdb_choice,
      nil,
      t = N_('Configuration'),
      t,
      :items => [
        button(
          :miq_report_schedule_edit,
          'pficon pficon-edit fa-lg',
          t = N_('Edit this Schedule'),
          t),
        button(
          :miq_report_schedule_delete,
          'pficon pficon-delete fa-lg',
          t = N_('Delete this Schedule'),
          t,
          :url_parms => "&refresh=y",
          :confirm   => N_("Warning: This Schedule and ALL of its components will be permanently removed!")),
        button(
          :miq_report_schedule_enable,
          'fa fa-check fa-lg',
          t = N_('Enable this Schedule'),
          t
        ),
        button(
          :miq_report_schedule_disable,
          'fa fa-ban fa-lg',
          t = N_('Disable this Schedule'),
          t
        ),
        separator,
        button(
          :miq_report_schedule_run_now,
          'fa fa-play-circle-o fa-lg',
          t = N_('Queue up this Schedule to run now'),
          t),
      ]
    ),
  ])
end