Use alias as name with option default tconfig - #1255
This commit is contained in:
parent
2689213fdf
commit
74e4ae3f71
|
@ -205,7 +205,7 @@ if (!$new_agent) {
|
||||||
$table->data[1][0] = __('Alias');
|
$table->data[1][0] = __('Alias');
|
||||||
$table->data[1][1] = html_print_input_text ('alias', $alias, '', 50, 100, true);
|
$table->data[1][1] = html_print_input_text ('alias', $alias, '', 50, 100, true);
|
||||||
if($new_agent){
|
if($new_agent){
|
||||||
$table->data[1][1] .= html_print_checkbox ("alias_as_name", 1, $alias_as_name, true).__('Use alias as name');
|
$table->data[1][1] .= html_print_checkbox ("alias_as_name", 1, $config['alias_as_name'], true).__('Use alias as name');
|
||||||
}
|
}
|
||||||
|
|
||||||
$table->data[2][0] = __('IP Address');
|
$table->data[2][0] = __('IP Address');
|
||||||
|
|
|
@ -222,6 +222,10 @@ $table->data[37][0] = __('audit log directory') .
|
||||||
ui_print_help_tip (__("Directory where audit log is stored."), true);
|
ui_print_help_tip (__("Directory where audit log is stored."), true);
|
||||||
$table->data[37][1] = html_print_input_text ('auditdir', io_safe_output($config["auditdir"]), '', 30, 100, true);
|
$table->data[37][1] = html_print_input_text ('auditdir', io_safe_output($config["auditdir"]), '', 30, 100, true);
|
||||||
|
|
||||||
|
$table->data[38][0] = __('To use alias as name when creating agent');
|
||||||
|
$table->data[38][1] = __('Yes').' '.html_print_radio_button ('alias_as_name', 1, '', $config["alias_as_name"], true).' ';
|
||||||
|
$table->data[38][1] .= __('No').' '.html_print_radio_button ('alias_as_name', 0, '', $config["alias_as_name"], true);
|
||||||
|
|
||||||
echo '<form id="form_setup" method="post" action="index.php?sec=gsetup&sec2=godmode/setup/setup&section=general&pure='.$config['pure'].'">';
|
echo '<form id="form_setup" method="post" action="index.php?sec=gsetup&sec2=godmode/setup/setup&section=general&pure='.$config['pure'].'">';
|
||||||
|
|
||||||
echo "<fieldset>";
|
echo "<fieldset>";
|
||||||
|
|
|
@ -206,6 +206,8 @@ function config_update_config () {
|
||||||
$error_update[] = __('Identification_reminder');
|
$error_update[] = __('Identification_reminder');
|
||||||
if (!config_update_value ('include_agents', (bool)get_parameter('include_agents')))
|
if (!config_update_value ('include_agents', (bool)get_parameter('include_agents')))
|
||||||
$error_update[] = __('Include_agents');
|
$error_update[] = __('Include_agents');
|
||||||
|
if (!config_update_value ('alias_as_name', get_parameter('alias_as_name')))
|
||||||
|
$error_update[] = __('alias_as_name');
|
||||||
if (!config_update_value ('auditdir', get_parameter('auditdir')))
|
if (!config_update_value ('auditdir', get_parameter('auditdir')))
|
||||||
$error_update[] = __('Audit log directory');
|
$error_update[] = __('Audit log directory');
|
||||||
break;
|
break;
|
||||||
|
@ -1012,6 +1014,10 @@ function config_process_config () {
|
||||||
if (!isset ($config["include_agents"])) {
|
if (!isset ($config["include_agents"])) {
|
||||||
config_update_value ('include_agents', 0);
|
config_update_value ('include_agents', 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isset ($config["alias_as_name"])) {
|
||||||
|
config_update_value ('alias_as_name', 0);
|
||||||
|
}
|
||||||
|
|
||||||
if (!isset ($config["auditdir"])) {
|
if (!isset ($config["auditdir"])) {
|
||||||
config_update_value ('auditdir',"/var/www/html/pandora_console");
|
config_update_value ('auditdir',"/var/www/html/pandora_console");
|
||||||
|
|
Loading…
Reference in New Issue