Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update physical server toolbar buttons #3876

Merged
merged 1 commit into from Apr 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -16,7 +16,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Power on the server'),
N_('Power On'),
:image => "power_on",
:icon => "pficon pficon-on fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "power_on", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Power on the server?"),
Expand All @@ -27,7 +27,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Power off the server'),
N_('Power Off'),
:image => "power_off",
:icon => "pficon pficon-off fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "power_off", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Power off the server?"),
Expand All @@ -38,7 +38,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Power off the server immediately'),
N_('Power Off Immediately'),
:image => "power_off",
:icon => "pficon pficon-off fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "power_off_now", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Power off the server immediately?"),
Expand All @@ -49,7 +49,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Restart the server'),
N_('Restart'),
:image => "power_reset",
:icon => "pficon pficon-restart fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "restart", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Restart the server?"),
Expand All @@ -60,7 +60,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Restart Server Immediately'),
N_('Restart Immediately'),
:image => "power_reset",
:icon => "pficon pficon-restart fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "restart_now", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Restart the server immediately?"),
Expand All @@ -71,7 +71,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Restart Server to System Setup'),
N_('Restart to System Setup'),
:image => "power_reset",
:icon => "pficon pficon-restart fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "restart_to_sys_setup", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Restart the server to UEFI settings?"),
Expand All @@ -82,7 +82,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Restart Management Controller'),
N_('Restart Management Controller'),
:image => "power_reset",
:icon => "pficon pficon-restart fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "restart_mgmt_controller", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Restart management controller?"),
Expand All @@ -101,7 +101,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Blink the Identify LED'),
N_('Blink LED'),
:image => "blank_button",
:icon => "pficon pficon-connected fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "blink_loc_led", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Blink the Identify LED?"),
Expand All @@ -112,7 +112,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Turn on the Idenfity LED'),
N_('Turn On LED'),
:image => "blank_button",
:icon => "pficon pficon-on fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "turn_on_loc_led", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Turn on the Identify LED?"),
Expand All @@ -123,7 +123,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Turn off the Identify LED'),
N_('Turn Off LED'),
:image => "blank_button",
:icon => "pficon pficon-off fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "turn_off_loc_led", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Turn off the Identify LED?"),
Expand Down