#10899 json_ucescaped_unicode to inventory manage and visual fix
This commit is contained in:
parent
aa9fefd30c
commit
f6be23c353
|
@ -75,7 +75,7 @@ if ($add_inventory_module) {
|
|||
'interval' => $interval,
|
||||
'username' => $username,
|
||||
'password' => $password,
|
||||
'custom_fields' => $custom_fields_enabled && !empty($custom_fields) ? base64_encode(json_encode(io_safe_output($custom_fields))) : '',
|
||||
'custom_fields' => $custom_fields_enabled && !empty($custom_fields) ? base64_encode(json_encode(io_safe_output($custom_fields), JSON_UNESCAPED_UNICODE)) : '',
|
||||
];
|
||||
|
||||
$result = db_process_sql_insert('tagent_module_inventory', $values);
|
||||
|
@ -119,7 +119,7 @@ if ($add_inventory_module) {
|
|||
'interval' => $interval,
|
||||
'username' => $username,
|
||||
'password' => $password,
|
||||
'custom_fields' => $custom_fields_enabled && !empty($custom_fields) ? base64_encode(json_encode(io_safe_output($custom_fields))) : '',
|
||||
'custom_fields' => $custom_fields_enabled && !empty($custom_fields) ? base64_encode(json_encode(io_safe_output($custom_fields), JSON_UNESCAPED_UNICODE)) : '',
|
||||
];
|
||||
|
||||
$result = db_process_sql_update('tagent_module_inventory', $values, ['id_agent_module_inventory' => $id_agent_module_inventory, 'id_agente' => $id_agente]);
|
||||
|
|
|
@ -2880,6 +2880,7 @@ function html_print_input_password(
|
|||
$class='',
|
||||
$autocomplete='off',
|
||||
$hide_div_eye=false,
|
||||
$div_class=''
|
||||
) {
|
||||
if ($maxlength == 0) {
|
||||
$maxlength = 255;
|
||||
|
@ -2910,7 +2911,7 @@ function html_print_input_password(
|
|||
}
|
||||
}
|
||||
|
||||
return '<div class="relative container-div-input-password">'.html_print_input_text_extended($name, $value, 'password-'.$name, $alt, $size, $maxlength, $disabled, '', $attr, $return, true, '', $autocomplete, false, $hide_div_eye).'</div>';
|
||||
return '<div class="relative container-div-input-password '.$div_class.'">'.html_print_input_text_extended($name, $value, 'password-'.$name, $alt, $size, $maxlength, $disabled, '', $attr, $return, true, '', $autocomplete, false, $hide_div_eye).'</div>';
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -7537,10 +7537,18 @@ function ui_get_inventory_module_add_form(
|
|||
$table->data['userpass-row'] = $row;
|
||||
|
||||
$row = [];
|
||||
$row['hidden-title'] = '';
|
||||
$row['hidden-input'] = html_print_input_hidden('hidden-custom-field-name', '', true);
|
||||
$row['hidden-input'] .= html_print_input_hidden('hidden-custom-field-is-secure', 0, true);
|
||||
$row['hidden-input'] .= html_print_input_text(
|
||||
|
||||
$table->data['hidden-custom-field-row'] = html_print_label_input_block(
|
||||
'',
|
||||
'<div class="agent_details_agent_data">'.html_print_input_hidden(
|
||||
'hidden-custom-field-name',
|
||||
'',
|
||||
true
|
||||
).html_print_input_hidden(
|
||||
'hidden-custom-field-is-secure',
|
||||
0,
|
||||
true
|
||||
).html_print_input_text(
|
||||
'hidden-custom-field-input',
|
||||
'',
|
||||
'',
|
||||
|
@ -7550,9 +7558,8 @@ function ui_get_inventory_module_add_form(
|
|||
false,
|
||||
false,
|
||||
'',
|
||||
'w93p'
|
||||
);
|
||||
$row['hidden-input'] .= html_print_image(
|
||||
'w100p'
|
||||
).html_print_image(
|
||||
'images/delete.svg',
|
||||
true,
|
||||
[
|
||||
|
@ -7561,35 +7568,14 @@ function ui_get_inventory_module_add_form(
|
|||
'style' => 'cursor: pointer;',
|
||||
'class' => 'remove-custom-field invert_filter main_menu_icon',
|
||||
]
|
||||
).'</div>'
|
||||
);
|
||||
|
||||
$table->data['hidden-custom-field-row'] = $row;
|
||||
$table->colspan['hidden-custom-field-row'][0] = 2;
|
||||
|
||||
if ($custom_fields_enabled) {
|
||||
foreach ($custom_fields as $i => $field) {
|
||||
$row = [];
|
||||
$row['title'] = '<b>'.$field['name'].'</b>';
|
||||
$row['input'] = html_print_input_hidden(
|
||||
'custom_fields['.$i.'][name]',
|
||||
$field['name'],
|
||||
true
|
||||
);
|
||||
$row['input'] .= html_print_input_hidden(
|
||||
'custom_fields['.$i.'][secure]',
|
||||
$field['secure'],
|
||||
true
|
||||
);
|
||||
if ($field['secure']) {
|
||||
$row['input'] .= html_print_input_password(
|
||||
'custom_fields['.$i.'][value]',
|
||||
$field['value'],
|
||||
'',
|
||||
25,
|
||||
40,
|
||||
true
|
||||
);
|
||||
} else {
|
||||
$row['input'] .= html_print_input_text(
|
||||
$secure = html_print_input_password(
|
||||
'custom_fields['.$i.'][value]',
|
||||
$field['value'],
|
||||
'',
|
||||
|
@ -7599,12 +7585,37 @@ function ui_get_inventory_module_add_form(
|
|||
false,
|
||||
false,
|
||||
'',
|
||||
'w90p'
|
||||
'off',
|
||||
false,
|
||||
'w100p'
|
||||
);
|
||||
} else {
|
||||
$secure = html_print_input_text(
|
||||
'custom_fields['.$i.'][value]',
|
||||
$field['value'],
|
||||
'',
|
||||
false,
|
||||
40,
|
||||
true,
|
||||
false,
|
||||
false,
|
||||
'',
|
||||
'w100p'
|
||||
);
|
||||
}
|
||||
|
||||
$row['input'] .= '<span> </span>';
|
||||
$row['input'] .= html_print_image(
|
||||
$table->colspan['custom-field-row-'.$i][0] = 2;
|
||||
$table->data['custom-field-row-'.$i] = html_print_label_input_block(
|
||||
$field['name'],
|
||||
'<div class="agent_details_agent_data">'.html_print_input_hidden(
|
||||
'custom_fields['.$i.'][name]',
|
||||
$field['name'],
|
||||
true
|
||||
).html_print_input_hidden(
|
||||
'custom_fields['.$i.'][secure]',
|
||||
$field['secure'],
|
||||
true
|
||||
).$secure.html_print_image(
|
||||
'images/delete.svg',
|
||||
true,
|
||||
[
|
||||
|
@ -7613,9 +7624,8 @@ function ui_get_inventory_module_add_form(
|
|||
'style' => 'cursor: pointer;',
|
||||
'class' => 'remove-custom-field invert_filter main_menu_icon',
|
||||
]
|
||||
).'</div>'
|
||||
);
|
||||
|
||||
$table->data['custom-field-row-'.$i] = $row;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -7684,21 +7694,21 @@ function ui_get_inventory_module_add_form(
|
|||
}
|
||||
|
||||
function add_row_for_custom_field (fieldName, isSecure) {
|
||||
var custom_fields_num = $("tr[id^=inventory-module-form-custom-field-row-]").length;
|
||||
var custom_fields_num = $("tr[id^=inventory-module-form-custom-field-row-]").length+1;
|
||||
$("#inventory-module-form-hidden-custom-field-row")
|
||||
.clone()
|
||||
.prop("id", "inventory-module-form-custom-field-row-" + custom_fields_num)
|
||||
.children("#inventory-module-form-hidden-custom-field-row-hidden-title")
|
||||
.prop("id", "inventory-module-form-custom-field-row-title-" + custom_fields_num)
|
||||
.html("<b>" + fieldName + "</b>")
|
||||
.parent()
|
||||
.children("#inventory-module-form-hidden-custom-field-row-hidden-input")
|
||||
.prop("id", "inventory-module-form-custom-field-row-input-" + custom_fields_num)
|
||||
.prop("colspan", 2)
|
||||
.children("input[name=hidden-custom-field-name]")
|
||||
.children("[id^='inventory-module-form-hidden-custom-field-row']") // go to TD
|
||||
.prop("id", "inventory-module-form-hidden-custom-field-row-"+ custom_fields_num)
|
||||
.children() // go to DIV
|
||||
.find('label')
|
||||
.html(fieldName)
|
||||
.parent() // up to DIV padre
|
||||
.find('div') //go to DIV no label
|
||||
.children("[id^=hidden-hidden-custom-field-name]")
|
||||
.prop("id", "custom-field-name-" + custom_fields_num)
|
||||
.prop("name", "custom_fields[" + custom_fields_num + "][name]")
|
||||
.val(fieldName)
|
||||
.prop("value", fieldName)
|
||||
.parent()
|
||||
.children("input[name=hidden-custom-field-is-secure]")
|
||||
.prop("id", "custom-field-is-secure-" + custom_fields_num)
|
||||
|
@ -7714,6 +7724,8 @@ function ui_get_inventory_module_add_form(
|
|||
.click(remove_custom_field)
|
||||
.parent()
|
||||
.parent()
|
||||
.parent() // up to TD
|
||||
.parent() // up to TR
|
||||
.insertBefore($("#inventory-module-form-custom-fields-row"))
|
||||
.show();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue