ManageIQ/manageiq-ui-classic

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

Summary

Maintainability
A
0 mins
Test Coverage
class ApplicationHelper::Toolbar::ChargebackRatesCenter < ApplicationHelper::Toolbar::Basic
  button_group('chargeback_rates_vmdb', [
    select(
      :chargeback_rates_vmdb_choice,
      nil,
      t = N_('Configuration'),
      t,
      :items => [
        button(
          :chargeback_rates_new,
          'pficon pficon-add-circle-o fa-lg',
          t = N_('Add a new Chargeback Rate'),
          t,
          :url   => "/new",
          :klass => ApplicationHelper::Button::ChargebackRates),
        button(
          :chargeback_rates_edit,
          'pficon pficon-edit fa-lg',
          t = N_('Edit the selected Chargeback Rate'),
          t,
          :url          => "/edit",
          :url_parms    => "main_div",
          :send_checked => true,
          :enabled      => false,
          :onwhen       => "1",
          :klass        => ApplicationHelper::Button::ChargebackRates),
        button(
          :chargeback_rates_copy,
          'fa fa-files-o fa-lg',
          t = N_('Copy the selected Chargeback Rate to a new Chargeback Rate'),
          t,
          :url          => "/copy",
          :url_parms    => "main_div",
          :send_checked => true,
          :enabled      => false,
          :onwhen       => "1",
          :klass        => ApplicationHelper::Button::ChargebackRates),
        button(
          :chargeback_rates_delete,
          'pficon pficon-delete fa-lg',
          t = N_('Remove selected Chargeback Rates from the VMDB'),
          t,
          :url          => "delete",
          :url_parms    => "main_div",
          :send_checked => true,
          :confirm      => N_("Warning: The selected Chargeback Rate will be permanently removed!"),
          :enabled      => false,
          :onwhen       => "1+",
          :klass        => ApplicationHelper::Button::ChargebackRates)
      ]
    ),
  ])
end