app/helpers/application_helper/toolbar/physical_switches_center.rb
class ApplicationHelper::Toolbar::PhysicalSwitchesCenter < ApplicationHelper::Toolbar::Basic
button_group(
'physical_switch_vmdb',
[
select(
:physical_switch_vmdb_choice,
nil,
t = N_('Configuration'),
t,
:items => [
api_button(
:physical_switch_refresh,
'fa fa-refresh fa-lg',
N_('Refresh relationships and power states for all items related to these Physical Switches'),
N_('Refresh Relationships and Power States'),
:api => {
:action => 'refresh',
:entity => 'physical_switches'
},
:confirm => N_("Refresh relationships and power states for all items related to these Physical Switches?"),
:enabled => false,
:onwhen => "1+",
:options => {:feature => :refresh}
),
]
),
]
)
button_group(
'physical_switches_operations',
[
select(
:physical_switches_power_choice,
nil,
N_('Power Functions'),
N_('Power'),
:items => [
api_button(
:physical_switch_restart,
nil,
N_('Restart the selected switches'),
N_('Restart'),
:icon => "pficon pficon-restart fa-lg",
:api => {
:action => 'restart',
:entity => 'physical_switches'
},
:confirm => N_("Restart the selected switches?"),
:enabled => false,
:onwhen => "1+",
:options => {:feature => :restart}
),
]
),
]
)
end