summaryrefslogtreecommitdiffstats
path: root/src/etc/inc/pfsense-utils.inc
diff options
context:
space:
mode:
authordoktornotor <notordoktor@gmail.com>2017-03-24 21:02:26 +0100
committerGitHub <noreply@github.com>2017-03-24 21:02:26 +0100
commit61fe6d83dea8dbf28a1495906cf6d7b2261cc834 (patch)
treee7e4802b62112d57b7623c85a85db13caff79e1b /src/etc/inc/pfsense-utils.inc
parent19b3f5bcb3151e3dda985783affa3bd5eee03037 (diff)
parentdd844c430622fa68de1f868b62ec375d7131ce16 (diff)
downloadpfsense-61fe6d83dea8dbf28a1495906cf6d7b2261cc834.zip
pfsense-61fe6d83dea8dbf28a1495906cf6d7b2261cc834.tar.gz
Merge branch 'master' into patch-18
Diffstat (limited to 'src/etc/inc/pfsense-utils.inc')
-rw-r--r--src/etc/inc/pfsense-utils.inc21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/etc/inc/pfsense-utils.inc b/src/etc/inc/pfsense-utils.inc
index 12621cd..6482065 100644
--- a/src/etc/inc/pfsense-utils.inc
+++ b/src/etc/inc/pfsense-utils.inc
@@ -351,6 +351,25 @@ function gen_webguileftcolumnhyper_field(&$section, $value) {
))->setHelp('If selected, clicking a label in the left column will select/toggle the first item of the group.');
}
+/****f* pfsense-utils/gen_disablealiaspopupdetail_field
+ * NAME
+ * gen_disablealiaspopupdetail_field
+ * INPUTS
+ * Pointer to section object
+ * Initial value for the field
+ * RESULT
+ * no return value, section object is updated
+ ******/
+function gen_disablealiaspopupdetail_field(&$section, $value) {
+
+ $section->addInput(new Form_Checkbox(
+ 'disablealiaspopupdetail',
+ 'Alias Popups',
+ 'Disable details in alias popups',
+ $value
+ ))->setHelp('If selected, the details in alias popups will not be shown, just the alias description (e.g. in Firewall Rules).');
+}
+
/****f* pfsense-utils/gen_pagenamefirst_field
* NAME
* gen_pagenamefirst_field
@@ -394,6 +413,7 @@ function gen_user_settings_fields(&$section, $pconfig) {
$pconfig['systemlogsmanagelogpanel'],
$pconfig['statusmonitoringsettingspanel']);
gen_webguileftcolumnhyper_field($section, $pconfig['webguileftcolumnhyper']);
+ gen_disablealiaspopupdetail_field($section, $pconfig['disablealiaspopupdetail']);
gen_pagenamefirst_field($section, $pconfig['pagenamefirst']);
}
@@ -3042,6 +3062,7 @@ function huawei_service_to_string($state) {
$modes[2] = gettext("Valid Service");
$modes[3] = gettext("Restricted Regional Service");
$modes[4] = gettext("Powersaving Service");
+ $modes[255] = gettext("Unknown Service");
$string = $modes[$state];
return $string;
}
OpenPOWER on IntegriCloud