ManageIQ/manageiq-ui-classic

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class ApplicationHelper::Toolbar::OrchestrationTemplateCenter < ApplicationHelper::Toolbar::Basic
  button_group('orchestration_template_vmdb', [
    select(
      :orchestration_template_vmdb_choice,
      nil,
      t = N_('Configuration'),
      t,
      :items => [
        button(
          :service_dialog_from_ot,
          'pficon pficon-add-circle-o fa-lg',
          t = N_('Create Service Dialog from Orchestration Template'),
          t),
        separator,
        button(
          :orchestration_template_edit,
          'pficon pficon-edit fa-lg',
          t = N_('Edit this Orchestration Template'),
          t,
          :klass => ApplicationHelper::Button::OrchestrationTemplateEditRemove
        ),
        button(
          :orchestration_template_copy,
          'fa fa-files-o fa-lg',
          t = N_('Copy this Orchestration Template'),
          t),
        button(
          :orchestration_template_remove,
          'pficon pficon-delete fa-lg',
          t = N_('Remove this Orchestration Template from Inventory'),
          t,
          :klass => ApplicationHelper::Button::OrchestrationTemplateEditRemove,
          :confirm => N_("Remove this Orchestration Template from Inventory?")),
      ]
    ),
  ])
  button_group('orchestration_template_policy', [
    select(
      :orchestration_template_policy_choice,
      nil,
      t = N_('Policy'),
      t,
      :items => [
        button(
          :orchestration_template_tag,
          'pficon pficon-edit fa-lg',
          N_('Edit Tags for this Orchestration Template'),
          N_('Edit Tags')),
      ]
    ),
  ])
end