Class: Installation::Console::Plugins::NetworkButton
- Inherits:
-
CWM::PushButton
- Object
- CWM::PushButton
- Installation::Console::Plugins::NetworkButton
- Defined in:
- src/lib/installation/console/plugins/network_button.rb
Overview
define a CWM widget for starting proxy configuration
Instance Method Summary collapse
- #handle ⇒ Object
- #help ⇒ Object
-
#initialize ⇒ NetworkButton
constructor
A new instance of NetworkButton.
- #label ⇒ Object
Constructor Details
#initialize ⇒ NetworkButton
Returns a new instance of NetworkButton.
28 29 30 |
# File 'src/lib/installation/console/plugins/network_button.rb', line 28 def initialize textdomain "network" end |
Instance Method Details
#handle ⇒ Object
43 44 45 46 47 |
# File 'src/lib/installation/console/plugins/network_button.rb', line 43 def handle Yast::WFM.call("inst_lan", [{ "skip_detection" => true, "hide_abort_button" => true }]) nil end |
#help ⇒ Object
37 38 39 40 41 |
# File 'src/lib/installation/console/plugins/network_button.rb', line 37 def help # TRANSLATORS: help text _("<p>The <b>Configure Network Devices</b> button starts the network " \ "configuration module. You can configure your network connection there.</p>") end |
#label ⇒ Object
32 33 34 35 |
# File 'src/lib/installation/console/plugins/network_button.rb', line 32 def label # TRANSLATORS: a button label, it starts the network configuration _("Configure Network Devices...") end |