get rid of more functions

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2018-12-20 12:38:18 +01:00
parent f263175802
commit 5888927239
53 changed files with 639 additions and 858 deletions

View File

@@ -46,7 +46,7 @@ return array(
'varname' => 'ipaddress',
'type' => 'option',
'option_mode' => 'one',
'option_options_method' => 'getIpAddresses',
'option_options_method' => array('\\Froxlor\\Domain\\IpAddr', 'getIpAddresses'),
'default' => '',
'save_method' => 'storeSettingIpAddress',
),
@@ -56,7 +56,7 @@ return array(
'varname' => 'defaultip',
'type' => 'option',
'option_mode' => 'multiple',
'option_options_method' => 'getIpPortCombinations',
'option_options_method' => array('\\Froxlor\\Domain\\IpAddr', 'getIpPortCombinations'),
'default' => '',
'save_method' => 'storeSettingDefaultIp',
),
@@ -66,7 +66,7 @@ return array(
'varname' => 'defaultsslip',
'type' => 'option',
'option_mode' => 'multiple',
'option_options_method' => 'getSslIpPortCombinations',
'option_options_method' => array('\\Froxlor\\Domain\\IpAddr', 'getSslIpPortCombinations'),
'default' => '',
'save_method' => 'storeSettingDefaultSslIp',
),