ManageIQ/manageiq-ui-classic

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

Summary

Maintainability
A
0 mins
Test Coverage
class ApplicationHelper::Toolbar::UserRoleCenter < ApplicationHelper::Toolbar::Basic
  button_group('rbac_role_vmdb', [
    select(
      :rbac_role_vmdb_choice,
      nil,
      t = N_('Configuration'),
      t,
      :items => [
        button(
          :rbac_role_edit,
          'pficon pficon-edit fa-lg',
          t = N_('Edit this Role'),
          t,
          :klass => ApplicationHelper::Button::RbacRoleEdit),
        button(
          :rbac_role_copy,
          'fa fa-files-o fa-lg',
          t = N_('Copy this Role to a new Role'),
          t),
        button(
          :rbac_role_delete,
          'pficon pficon-delete fa-lg',
          t = N_('Delete this Role'),
          t,
          :url_parms => "&refresh=y",
          :confirm   => N_("Are you sure you want to delete this Role?"),
          :klass     => ApplicationHelper::Button::RbacRoleDelete),
      ]
    ),
  ])
end