app/helpers/application_helper/toolbar/miq_ae_class_center.rb
class ApplicationHelper::Toolbar::MiqAeClassCenter < ApplicationHelper::Toolbar::Basic
button_group('miq_ae_class_vmdb', [
select(
:miq_ae_class_vmdb_choice,
nil,
t = N_('Configuration'),
t,
:items => [
button(
:miq_ae_class_edit,
'pficon pficon-edit fa-lg',
t = N_('Edit this Class'),
t,
:klass => ApplicationHelper::Button::MiqAeDefault),
button(
:miq_ae_class_copy,
'fa fa-files-o fa-lg',
t = N_('Copy this Class'),
t,
:klass => ApplicationHelper::Button::MiqAeClassCopy),
button(
:miq_ae_class_delete,
'pficon pficon-delete fa-lg',
t = N_('Remove this Class'),
t,
:url_parms => "&refresh=y",
:confirm => N_("Are you sure you want to remove this Class?"),
:klass => ApplicationHelper::Button::MiqAeDefault),
]
),
])
end