mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 16:24:54 +02:00
Merge branch 'ent-7477-Campos-de-integracion-con-Integria' into 'develop'
minor changes See merge request artica/pandorafms!4107
This commit is contained in:
commit
89dcde6ca7
@ -329,22 +329,20 @@ $row['control'] = html_print_input_text(
|
|||||||
true,
|
true,
|
||||||
false,
|
false,
|
||||||
false
|
false
|
||||||
).ui_print_help_icon('alert_macros', true);
|
);
|
||||||
$table_alert_settings->data['custom_response_incident_title'] = $row;
|
$table_alert_settings->data['custom_response_incident_title'] = $row;
|
||||||
|
|
||||||
// Alert incident description.
|
// Alert incident description.
|
||||||
$row = [];
|
$row = [];
|
||||||
$row['name'] = __('Description');
|
$row['name'] = __('Ticket body');
|
||||||
$row['control'] = html_print_input_text(
|
$row['control'] = html_print_textarea(
|
||||||
'incident_content',
|
'incident_content',
|
||||||
|
7,
|
||||||
|
25,
|
||||||
$config['incident_content'],
|
$config['incident_content'],
|
||||||
'',
|
'',
|
||||||
50,
|
true
|
||||||
100,
|
);
|
||||||
true,
|
|
||||||
false,
|
|
||||||
false
|
|
||||||
).ui_print_help_icon('alert_macros', true);
|
|
||||||
$table_alert_settings->data['custom_response_incident_content'] = $row;
|
$table_alert_settings->data['custom_response_incident_content'] = $row;
|
||||||
|
|
||||||
// Alert default group.
|
// Alert default group.
|
||||||
@ -452,22 +450,21 @@ $row['control'] = html_print_input_text(
|
|||||||
true,
|
true,
|
||||||
false,
|
false,
|
||||||
false
|
false
|
||||||
).ui_print_help_icon('response_macros', true);
|
);
|
||||||
$table_cr_settings->data['custom_response_incident_title'] = $row;
|
$table_cr_settings->data['custom_response_incident_title'] = $row;
|
||||||
|
|
||||||
// Custom response incident description.
|
// Custom response incident description.
|
||||||
$row = [];
|
$row = [];
|
||||||
$row['name'] = __('Description');
|
$row['name'] = __('Ticket body');
|
||||||
$row['control'] = html_print_input_text(
|
$row['control'] = html_print_textarea(
|
||||||
'cr_incident_content',
|
'cr_incident_content',
|
||||||
|
7,
|
||||||
|
25,
|
||||||
$config['cr_incident_content'],
|
$config['cr_incident_content'],
|
||||||
'',
|
'',
|
||||||
50,
|
true
|
||||||
100,
|
);
|
||||||
true,
|
|
||||||
false,
|
|
||||||
false
|
|
||||||
).ui_print_help_icon('response_macros', true);
|
|
||||||
$table_cr_settings->data['custom_response_incident_content'] = $row;
|
$table_cr_settings->data['custom_response_incident_content'] = $row;
|
||||||
|
|
||||||
// Custom response default group.
|
// Custom response default group.
|
||||||
@ -599,7 +596,7 @@ if ($has_connection != false) {
|
|||||||
// Form alert default settings.
|
// Form alert default settings.
|
||||||
echo '<div id="form_alert_settings">';
|
echo '<div id="form_alert_settings">';
|
||||||
echo '<fieldset>';
|
echo '<fieldset>';
|
||||||
echo '<legend>'.__('Alert default values').'</legend>';
|
echo '<legend>'.__('Alert default values').' '.ui_print_help_icon('alert_macros', true).'</legend>';
|
||||||
|
|
||||||
html_print_table($table_alert_settings);
|
html_print_table($table_alert_settings);
|
||||||
|
|
||||||
@ -609,7 +606,7 @@ if ($has_connection != false) {
|
|||||||
// Form custom response default settings.
|
// Form custom response default settings.
|
||||||
echo '<div id="form_custom_response_settings">';
|
echo '<div id="form_custom_response_settings">';
|
||||||
echo '<fieldset>';
|
echo '<fieldset>';
|
||||||
echo '<legend>'.__('Event custom response default values').'</legend>';
|
echo '<legend>'.__('Event custom response default values').' '.ui_print_help_icon('alert_macros', true).'</legend>';
|
||||||
|
|
||||||
html_print_table($table_cr_settings);
|
html_print_table($table_cr_settings);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user