ManageIQ/manageiq-ui-classic

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

Summary

Maintainability
A
0 mins
Test Coverage
class ApplicationHelper::Toolbar::ChargebackRateCenter < ApplicationHelper::Toolbar::Basic
  button_group('chargeback_rate_vmdb', [
    select(
      :chargeback_rate_vmdb_choice,
      nil,
      t = N_('Configuration'),
      t,
      :items => [
        button(
          :chargeback_rates_edit,
          'pficon pficon-edit fa-lg',
          t = N_('Edit this Chargeback Rate'),
          t,
          :url   => '/edit',
          :klass => ApplicationHelper::Button::ChargebackRateEdit),
        button(
          :chargeback_rates_copy,
          'fa fa-files-o fa-lg',
          t = N_('Copy this Chargeback Rate'),
          t,
          :klass => ApplicationHelper::Button::ChargebackRates,
          :url   => '/copy'),
        button(
          :chargeback_rates_delete,
          'pficon pficon-delete fa-lg',
          N_('Remove this Chargeback Rate from the VMDB'),
          N_('Remove from the VMDB'),
          :url     => 'delete',
          :confirm => N_("Warning: This Chargeback Rate will be permanently removed!"),
          :klass   => ApplicationHelper::Button::ChargebackRateRemove),
      ]
    ),
  ])
end