app/helpers/application_helper/toolbar/cloud_network_center.rb
class ApplicationHelper::Toolbar::CloudNetworkCenter < ApplicationHelper::Toolbar::Basic
button_group(
'cloud_network_vmdb',
[
select(
:cloud_network_vmdb_choice,
nil,
t = N_('Configuration'),
t,
:items => [
button(
:cloud_network_edit,
'pficon pficon-edit fa-lg',
t = N_('Edit this Cloud Network'),
t,
:url_parms => 'main_div',
:send_checked => true,
:klass => ApplicationHelper::Button::GenericFeatureButtonWithDisable,
:options => {:feature => :update}
),
button(
:cloud_network_delete,
'pficon pficon-delete fa-lg',
t = N_('Delete this Cloud Network'),
t,
:url_parms => 'main_div',
:send_checked => true,
:confirm => N_('Warning: This Cloud Network and ALL of its components will be removed!'),
:klass => ApplicationHelper::Button::GenericFeatureButtonWithDisable,
:options => {:feature => :delete}
)
]
)
]
)
button_group(
'cloud_network_policy',
[
select(
:cloud_network_policy_choice,
nil,
t = N_('Policy'),
t,
:items => [
button(
:cloud_network_tag,
'pficon pficon-edit fa-lg',
N_('Edit Tags for this Cloud Network'),
N_('Edit Tags')
)
]
)
]
)
end