mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-26 07:16:28 +02:00
fixed styles
This commit is contained in:
parent
41a20a90fa
commit
e82de5d6aa
@ -240,7 +240,28 @@ function pandora_files_repo_operation()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Header.
|
// Header.
|
||||||
ui_print_page_header(__('Files repository'), 'images/extensions.png', false, '', false, $onheader);
|
ui_print_standard_header(
|
||||||
|
__('Files repository'),
|
||||||
|
'images/extensions.png',
|
||||||
|
false,
|
||||||
|
'',
|
||||||
|
false,
|
||||||
|
$onheader,
|
||||||
|
[
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => __('Admin tools'),
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => __('Extension manager'),
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => __('Files repository'),
|
||||||
|
],
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
$full_extensions_dir = $config['homedir'].'/'.EXTENSIONS_DIR.'/';
|
$full_extensions_dir = $config['homedir'].'/'.EXTENSIONS_DIR.'/';
|
||||||
include_once $full_extensions_dir.'files_repo/functions_files_repo.php';
|
include_once $full_extensions_dir.'files_repo/functions_files_repo.php';
|
||||||
|
@ -445,9 +445,8 @@ $tableBasicThresholds->rowclass['caption_warning_threshold'] = 'field_half_width
|
|||||||
$tableBasicThresholds->rowclass['warning_threshold'] = 'field_half_width';
|
$tableBasicThresholds->rowclass['warning_threshold'] = 'field_half_width';
|
||||||
$tableBasicThresholds->data['caption_warning_threshold'][0] .= __('Warning threshold').' ';
|
$tableBasicThresholds->data['caption_warning_threshold'][0] .= __('Warning threshold').' ';
|
||||||
|
|
||||||
if ((isset($stringTypeModule) === false || $stringTypeModule === false)) {
|
$tableBasicThresholds->data['caption_warning_threshold'][0] .= '<span class="font_11" id="caption_minmax_warning">('.__('Min / Max').')</span>';
|
||||||
$tableBasicThresholds->data['caption_warning_threshold'][0] .= '<span class="font_11" id="caption_minmax_warning">('.__('Min / Max').')</span>';
|
$tableBasicThresholds->data['warning_threshold'][0] .= html_print_input_text(
|
||||||
$tableBasicThresholds->data['warning_threshold'][0] .= html_print_input_text(
|
|
||||||
'min_warning',
|
'min_warning',
|
||||||
$min_warning,
|
$min_warning,
|
||||||
'',
|
'',
|
||||||
@ -458,8 +457,8 @@ if ((isset($stringTypeModule) === false || $stringTypeModule === false)) {
|
|||||||
false,
|
false,
|
||||||
'',
|
'',
|
||||||
$classdisabledBecauseInPolicy
|
$classdisabledBecauseInPolicy
|
||||||
);
|
);
|
||||||
$tableBasicThresholds->data['warning_threshold'][1] .= html_print_input_text(
|
$tableBasicThresholds->data['warning_threshold'][1] .= html_print_input_text(
|
||||||
'max_warning',
|
'max_warning',
|
||||||
$max_warning,
|
$max_warning,
|
||||||
'',
|
'',
|
||||||
@ -470,9 +469,9 @@ if ((isset($stringTypeModule) === false || $stringTypeModule === false)) {
|
|||||||
false,
|
false,
|
||||||
'',
|
'',
|
||||||
$classdisabledBecauseInPolicy
|
$classdisabledBecauseInPolicy
|
||||||
).'</span>';
|
).'</span>';
|
||||||
|
|
||||||
$tableBasicThresholds->data['switch_warning_threshold'][0] .= html_print_switch_radio_button(
|
$tableBasicThresholds->data['switch_warning_threshold'][0] .= html_print_switch_radio_button(
|
||||||
[
|
[
|
||||||
html_print_radio_button_extended('warning_thresholds_checks', 'normal_warning', __('Normal'), ($percentage_warning && $warning_inverse) === false, false, '', '', true, false, '', 'radius-normal_warning'),
|
html_print_radio_button_extended('warning_thresholds_checks', 'normal_warning', __('Normal'), ($percentage_warning && $warning_inverse) === false, false, '', '', true, false, '', 'radius-normal_warning'),
|
||||||
html_print_radio_button_extended('warning_thresholds_checks', 'warning_inverse', __('Inverse interval'), $warning_inverse, $disabledBecauseInPolicy, '', '', true, false, '', 'radius-warning_inverse'),
|
html_print_radio_button_extended('warning_thresholds_checks', 'warning_inverse', __('Inverse interval'), $warning_inverse, $disabledBecauseInPolicy, '', '', true, false, '', 'radius-warning_inverse'),
|
||||||
@ -480,32 +479,30 @@ if ((isset($stringTypeModule) === false || $stringTypeModule === false)) {
|
|||||||
],
|
],
|
||||||
[ 'class' => 'margin-top-10' ],
|
[ 'class' => 'margin-top-10' ],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($stringTypeModule) === true && $stringTypeModule === true) {
|
$basicThresholdsIntervalWarning = [];
|
||||||
$basicThresholdsIntervalWarning = [];
|
$basicThresholdsIntervalWarning[] = '<span>'.__('Inverse interval').'</span>';
|
||||||
$basicThresholdsIntervalWarning[] = '<span>'.__('Inverse interval').'</span>';
|
$basicThresholdsIntervalWarning[] = html_print_checkbox_switch(
|
||||||
$basicThresholdsIntervalWarning[] = html_print_checkbox_switch(
|
|
||||||
'warning_inverse_string',
|
'warning_inverse_string',
|
||||||
1,
|
1,
|
||||||
$warning_inverse,
|
$warning_inverse,
|
||||||
true,
|
true,
|
||||||
$disabledBecauseInPolicy
|
$disabledBecauseInPolicy
|
||||||
);
|
);
|
||||||
|
|
||||||
$tableBasicThresholds->rowclass['caption_switch_warning_inverse_string'] = 'field_half_width';
|
$tableBasicThresholds->rowclass['caption_switch_warning_inverse_string'] = 'field_half_width';
|
||||||
$tableBasicThresholds->data['caption_switch_warning_inverse_string'][0] = html_print_div(
|
$tableBasicThresholds->data['caption_switch_warning_inverse_string'][0] = html_print_div(
|
||||||
[
|
[
|
||||||
'class' => 'margin-top-10',
|
'class' => 'margin-top-10',
|
||||||
'style' => 'display: flex; flex-direction: row-reverse; align-items: center;',
|
'style' => 'display: flex; flex-direction: row-reverse; align-items: center;',
|
||||||
'content' => implode('', $basicThresholdsIntervalWarning),
|
'content' => implode('', $basicThresholdsIntervalWarning),
|
||||||
],
|
],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
$tableBasicThresholds->data['caption_warning_threshold'][0] .= '<span class="font_11" id="caption_str_warning">('.__('Str.').')</span>';
|
$tableBasicThresholds->data['caption_warning_threshold'][0] .= '<span class="font_11" id="caption_str_warning">('.__('Str.').')</span>';
|
||||||
$tableBasicThresholds->data['warning_threshold'][0] .= html_print_input_text(
|
$tableBasicThresholds->data['warning_threshold'][0] .= html_print_input_text(
|
||||||
'str_warning',
|
'str_warning',
|
||||||
str_replace('"', '', $str_warning),
|
str_replace('"', '', $str_warning),
|
||||||
'',
|
'',
|
||||||
@ -516,8 +513,7 @@ if (isset($stringTypeModule) === true && $stringTypeModule === true) {
|
|||||||
false,
|
false,
|
||||||
'',
|
'',
|
||||||
$classdisabledBecauseInPolicy
|
$classdisabledBecauseInPolicy
|
||||||
).'</span>';
|
).'</span>';
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$tableBasicThresholds->data['switch_warning_threshold'][0] .= html_print_div(
|
$tableBasicThresholds->data['switch_warning_threshold'][0] .= html_print_div(
|
||||||
@ -532,9 +528,8 @@ $tableBasicThresholds->data['switch_warning_threshold'][0] .= html_print_div(
|
|||||||
$tableBasicThresholds->rowclass['caption_critical_threshold'] = 'field_half_width pdd_t_10px';
|
$tableBasicThresholds->rowclass['caption_critical_threshold'] = 'field_half_width pdd_t_10px';
|
||||||
$tableBasicThresholds->rowclass['critical_threshold'] = 'field_half_width';
|
$tableBasicThresholds->rowclass['critical_threshold'] = 'field_half_width';
|
||||||
$tableBasicThresholds->data['caption_critical_threshold'][0] .= __('Critical threshold').' ';
|
$tableBasicThresholds->data['caption_critical_threshold'][0] .= __('Critical threshold').' ';
|
||||||
if ((isset($stringTypeModule) === false || $stringTypeModule === false)) {
|
$tableBasicThresholds->data['caption_critical_threshold'][0] .= '<span class="font_11" id="caption_minmax_critical">('.__('Min / Max').')</span>';
|
||||||
$tableBasicThresholds->data['caption_critical_threshold'][0] .= '<span class="font_11" id="caption_minmax_critical">('.__('Min / Max').')</span>';
|
$tableBasicThresholds->data['critical_threshold'][0] .= html_print_input_text(
|
||||||
$tableBasicThresholds->data['critical_threshold'][0] .= html_print_input_text(
|
|
||||||
'min_critical',
|
'min_critical',
|
||||||
$min_critical,
|
$min_critical,
|
||||||
'',
|
'',
|
||||||
@ -545,8 +540,8 @@ if ((isset($stringTypeModule) === false || $stringTypeModule === false)) {
|
|||||||
false,
|
false,
|
||||||
'',
|
'',
|
||||||
$classdisabledBecauseInPolicy
|
$classdisabledBecauseInPolicy
|
||||||
);
|
);
|
||||||
$tableBasicThresholds->data['critical_threshold'][1] .= html_print_input_text(
|
$tableBasicThresholds->data['critical_threshold'][1] .= html_print_input_text(
|
||||||
'max_critical',
|
'max_critical',
|
||||||
$max_critical,
|
$max_critical,
|
||||||
'',
|
'',
|
||||||
@ -557,9 +552,9 @@ if ((isset($stringTypeModule) === false || $stringTypeModule === false)) {
|
|||||||
false,
|
false,
|
||||||
'',
|
'',
|
||||||
$classdisabledBecauseInPolicy
|
$classdisabledBecauseInPolicy
|
||||||
).'</span>';
|
).'</span>';
|
||||||
|
|
||||||
$tableBasicThresholds->data['switch_critical_threshold'][0] .= html_print_switch_radio_button(
|
$tableBasicThresholds->data['switch_critical_threshold'][0] .= html_print_switch_radio_button(
|
||||||
[
|
[
|
||||||
html_print_radio_button_extended('critical_thresholds_checks', 'normal_critical', __('Normal'), ($percentage_critical && $critical_inverse) === false, false, '', '', true, false, '', 'radius-normal_critical'),
|
html_print_radio_button_extended('critical_thresholds_checks', 'normal_critical', __('Normal'), ($percentage_critical && $critical_inverse) === false, false, '', '', true, false, '', 'radius-normal_critical'),
|
||||||
html_print_radio_button_extended('critical_thresholds_checks', 'critical_inverse', __('Inverse interval'), $critical_inverse, $disabledBecauseInPolicy, '', '', true, false, '', 'radius-critical_inverse'),
|
html_print_radio_button_extended('critical_thresholds_checks', 'critical_inverse', __('Inverse interval'), $critical_inverse, $disabledBecauseInPolicy, '', '', true, false, '', 'radius-critical_inverse'),
|
||||||
@ -567,40 +562,39 @@ if ((isset($stringTypeModule) === false || $stringTypeModule === false)) {
|
|||||||
],
|
],
|
||||||
[ 'class' => 'margin-top-10' ],
|
[ 'class' => 'margin-top-10' ],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($stringTypeModule) === true && $stringTypeModule === true) {
|
|
||||||
$basicThresholdsIntervalCritical = [];
|
$basicThresholdsIntervalCritical = [];
|
||||||
$basicThresholdsIntervalCritical[] = '<span>'.__('Inverse interval').'</span>';
|
$basicThresholdsIntervalCritical[] = '<span>'.__('Inverse interval').'</span>';
|
||||||
$basicThresholdsIntervalCritical[] = html_print_checkbox_switch(
|
$basicThresholdsIntervalCritical[] = html_print_checkbox_switch(
|
||||||
'critical_inverse_string',
|
'critical_inverse_string',
|
||||||
1,
|
1,
|
||||||
$critical_inverse,
|
$critical_inverse,
|
||||||
true,
|
true,
|
||||||
$disabledBecauseInPolicy
|
$disabledBecauseInPolicy
|
||||||
);
|
);
|
||||||
|
|
||||||
$tableBasicThresholds->rowclass['caption_switch_critical_inverse_string'] = 'field_half_width';
|
$tableBasicThresholds->rowclass['caption_switch_critical_inverse_string'] = 'field_half_width';
|
||||||
$tableBasicThresholds->data['caption_switch_critical_inverse_string'][0] = html_print_div(
|
$tableBasicThresholds->data['caption_switch_critical_inverse_string'][0] = html_print_div(
|
||||||
[
|
[
|
||||||
'class' => 'margin-top-10',
|
'class' => 'margin-top-10',
|
||||||
'style' => 'display: flex; flex-direction: row-reverse; align-items: center;',
|
'style' => 'display: flex; flex-direction: row-reverse; align-items: center;',
|
||||||
'content' => implode('', $basicThresholdsIntervalCritical),
|
'content' => implode('', $basicThresholdsIntervalCritical),
|
||||||
],
|
],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
$tableBasicThresholds->data['switch_critical_threshold'][0] .= html_print_div(
|
$tableBasicThresholds->data['switch_critical_threshold'][0] .= html_print_div(
|
||||||
[
|
[
|
||||||
'id' => 'percentage_critical',
|
'id' => 'percentage_critical',
|
||||||
'content' => $divPercentageContent,
|
'content' => $divPercentageContent,
|
||||||
],
|
],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
$tableBasicThresholds->data['caption_critical_threshold'][0] .= '<span class="font_11" id="caption_str_critical">('.__('Str.').')</span>';
|
$tableBasicThresholds->data['caption_critical_threshold'][0] .= '<span class="font_11" id="caption_str_critical">('.__('Str.').')</span>';
|
||||||
$tableBasicThresholds->data['critical_threshold'][0] .= html_print_input_text(
|
$tableBasicThresholds->data['critical_threshold'][0] .= html_print_input_text(
|
||||||
'str_critical',
|
'str_critical',
|
||||||
str_replace('"', '', $str_critical),
|
str_replace('"', '', $str_critical),
|
||||||
'',
|
'',
|
||||||
@ -611,8 +605,7 @@ if (isset($stringTypeModule) === true && $stringTypeModule === true) {
|
|||||||
false,
|
false,
|
||||||
'',
|
'',
|
||||||
$classdisabledBecauseInPolicy
|
$classdisabledBecauseInPolicy
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
$table_simple->rowstyle['thresholds_table'] = 'margin-top: 15px;height: 340px;width: 100%';
|
$table_simple->rowstyle['thresholds_table'] = 'margin-top: 15px;height: 340px;width: 100%';
|
||||||
$table_simple->cellclass['thresholds_table'][0] = 'table_section half_section_left';
|
$table_simple->cellclass['thresholds_table'][0] = 'table_section half_section_left';
|
||||||
@ -1623,6 +1616,11 @@ ui_require_jquery_file('json');
|
|||||||
/* <![CDATA[ */
|
/* <![CDATA[ */
|
||||||
$(document).ready (function () {
|
$(document).ready (function () {
|
||||||
var disabledBecauseInPolicy = <?php echo '\''.((empty($disabledBecauseInPolicy) === true) ? '0' : '1').'\''; ?>;
|
var disabledBecauseInPolicy = <?php echo '\''.((empty($disabledBecauseInPolicy) === true) ? '0' : '1').'\''; ?>;
|
||||||
|
var idModuleType = '<?php echo $type_names_hash[$id_module_type]; ?>';
|
||||||
|
if (idModuleType != '') {
|
||||||
|
setModuleType(idModuleType);
|
||||||
|
}
|
||||||
|
|
||||||
$("#right").click (function () {
|
$("#right").click (function () {
|
||||||
jQuery.each($("select[name='id_tag_available[]'] option:selected"), function (key, value) {
|
jQuery.each($("select[name='id_tag_available[]'] option:selected"), function (key, value) {
|
||||||
tag_name = $(value).html();
|
tag_name = $(value).html();
|
||||||
|
@ -69,7 +69,6 @@ if ($is_management_allowed === true) {
|
|||||||
$table->head[4] = '';
|
$table->head[4] = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
$table->align[1] = 'center';
|
|
||||||
if ($is_management_allowed === true) {
|
if ($is_management_allowed === true) {
|
||||||
$table->align[4] = 'center';
|
$table->align[4] = 'center';
|
||||||
}
|
}
|
||||||
@ -100,7 +99,7 @@ $table->data = [];
|
|||||||
foreach ($osList as $os) {
|
foreach ($osList as $os) {
|
||||||
$data = [];
|
$data = [];
|
||||||
$data[] = $os['id_os'];
|
$data[] = $os['id_os'];
|
||||||
$data[] = html_print_div(['class' => 'invert_filter main_menu_icon', 'content' => ui_print_os_icon($os['id_os'], false, true)], true);
|
$data[] = ui_print_os_icon($os['id_os'], false, true);
|
||||||
if ($is_management_allowed === true) {
|
if ($is_management_allowed === true) {
|
||||||
if (is_metaconsole() === true) {
|
if (is_metaconsole() === true) {
|
||||||
$osNameUrl = 'index.php?sec=advanced&sec2=advanced/component_management&tab=os_manage&action=edit&tab2=builder&id_os='.$os['id_os'];
|
$osNameUrl = 'index.php?sec=advanced&sec2=advanced/component_management&tab=os_manage&action=edit&tab2=builder&id_os='.$os['id_os'];
|
||||||
|
@ -6097,6 +6097,8 @@ function html_print_autocomplete_users_from_integria(
|
|||||||
$attrs['class'] = $class;
|
$attrs['class'] = $class;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ui_print_help_tip(__('Type at least two characters to search the user.'), false);
|
||||||
|
|
||||||
html_print_input_text_extended(
|
html_print_input_text_extended(
|
||||||
$name,
|
$name,
|
||||||
$default,
|
$default,
|
||||||
@ -6110,8 +6112,6 @@ function html_print_autocomplete_users_from_integria(
|
|||||||
);
|
);
|
||||||
html_print_input_hidden($name.'_hidden', $id_agent_module);
|
html_print_input_hidden($name.'_hidden', $id_agent_module);
|
||||||
|
|
||||||
ui_print_help_tip(__('Type at least two characters to search the user.'), false);
|
|
||||||
|
|
||||||
$javascript_ajax_page = ui_get_full_url('ajax.php', false, false, false, false);
|
$javascript_ajax_page = ui_get_full_url('ajax.php', false, false, false, false);
|
||||||
?>
|
?>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
@ -31,7 +31,7 @@ require_once $config['homedir'].'/include/functions.php';
|
|||||||
* @param string $active_tab Current tab or false for View page.
|
* @param string $active_tab Current tab or false for View page.
|
||||||
* @param number $view Id of incident. Show View tab.
|
* @param number $view Id of incident. Show View tab.
|
||||||
*
|
*
|
||||||
* @return string HTML code. Print tabs in header.
|
* @return array HTML code. Print tabs in header.
|
||||||
*/
|
*/
|
||||||
function integriaims_tabs($active_tab, $view=false)
|
function integriaims_tabs($active_tab, $view=false)
|
||||||
{
|
{
|
||||||
|
@ -558,6 +558,16 @@ table.filter-table-adv td > div label {
|
|||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.filter-table-adv-manual > div.inline,
|
||||||
|
table.filter-table-adv td > div.inline {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.filter-table-adv-manual > div.inline input,
|
||||||
|
table.filter-table-adv td > div.inline input {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
table.filter-table-adv td > div.add-input-reverse {
|
table.filter-table-adv td > div.add-input-reverse {
|
||||||
flex-direction: row-reverse;
|
flex-direction: row-reverse;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
|
@ -1163,7 +1163,6 @@ foreach ($agents as $agent) {
|
|||||||
|
|
||||||
$data[2] = html_print_div(
|
$data[2] = html_print_div(
|
||||||
[
|
[
|
||||||
'class' => 'invert_filter main_menu_icon',
|
|
||||||
'content' => ui_print_os_icon($agent['id_os'], false, true),
|
'content' => ui_print_os_icon($agent['id_os'], false, true),
|
||||||
],
|
],
|
||||||
true
|
true
|
||||||
|
@ -23,11 +23,30 @@ $update = (isset($_GET['incident_id']) === true);
|
|||||||
// Header tabs.
|
// Header tabs.
|
||||||
$onheader = integriaims_tabs('create_tab', $_GET['incident_id']);
|
$onheader = integriaims_tabs('create_tab', $_GET['incident_id']);
|
||||||
if ($update) {
|
if ($update) {
|
||||||
ui_print_page_header(__('Update Integria IMS Ticket'), '', false, '', false, $onheader);
|
$title_header = __('Update Integria IMS Ticket');
|
||||||
} else {
|
} else {
|
||||||
ui_print_page_header(__('Create Integria IMS Ticket'), '', false, '', false, $onheader);
|
$title_header = __('Create Integria IMS Ticket');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ui_print_standard_header(
|
||||||
|
$title_header,
|
||||||
|
'',
|
||||||
|
false,
|
||||||
|
'',
|
||||||
|
false,
|
||||||
|
$onheader,
|
||||||
|
[
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => __('Issues'),
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => $title_header,
|
||||||
|
],
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
// Check if Integria integration enabled.
|
// Check if Integria integration enabled.
|
||||||
if ($config['integria_enabled'] == 0) {
|
if ($config['integria_enabled'] == 0) {
|
||||||
ui_print_error_message(__('In order to access ticket management system, integration with Integria IMS must be enabled and properly configured'));
|
ui_print_error_message(__('In order to access ticket management system, integration with Integria IMS must be enabled and properly configured'));
|
||||||
@ -166,19 +185,14 @@ if ($update) {
|
|||||||
$table = new stdClass();
|
$table = new stdClass();
|
||||||
$table->width = '100%';
|
$table->width = '100%';
|
||||||
$table->id = 'add_alert_table';
|
$table->id = 'add_alert_table';
|
||||||
$table->class = 'databox filters integria_incidents_options';
|
$table->class = 'databox filter-table-adv';
|
||||||
$table->head = [];
|
$table->head = [];
|
||||||
|
|
||||||
$table->data = [];
|
$table->data = [];
|
||||||
$table->size = [];
|
$table->size = [];
|
||||||
$table->size = [];
|
$table->size = [];
|
||||||
$table->style[0] = 'width: 33%; padding-right: 50px; padding-left: 100px;';
|
|
||||||
$table->style[1] = 'width: 33%; padding-right: 50px; padding-left: 50px;';
|
|
||||||
$table->style[2] = 'width: 33%; padding-right: 100px; padding-left: 50px;';
|
|
||||||
$table->colspan[0][0] = 2;
|
$table->colspan[0][0] = 2;
|
||||||
$table->colspan[4][0] = 3;
|
$table->colspan[4][0] = 3;
|
||||||
$table->colspan[6][0] = 3;
|
$table->colspan[6][0] = 3;
|
||||||
|
|
||||||
$help_macros = isset($_GET['from_event']) ? ui_print_help_icon('response_macros', true) : '';
|
$help_macros = isset($_GET['from_event']) ? ui_print_help_icon('response_macros', true) : '';
|
||||||
|
|
||||||
if ($update) {
|
if ($update) {
|
||||||
@ -210,8 +224,9 @@ if ($update) {
|
|||||||
$input_value_resolution = 0;
|
$input_value_resolution = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
$table->data[0][0] = '<div class="label_select"><p class="input_label">'.__('Title').': '.$help_macros.'</p>';
|
$table->data[0][0] = html_print_label_input_block(
|
||||||
$table->data[0][0] .= '<div class="label_select_parent">'.html_print_input_text(
|
__('Title').$help_macros,
|
||||||
|
html_print_input_text(
|
||||||
'incident_title',
|
'incident_title',
|
||||||
$input_value_title,
|
$input_value_title,
|
||||||
__('Name'),
|
__('Name'),
|
||||||
@ -222,17 +237,19 @@ $table->data[0][0] .= '<div class="label_select_parent">'.html_print_input_text(
|
|||||||
true,
|
true,
|
||||||
'',
|
'',
|
||||||
'w100p'
|
'w100p'
|
||||||
).'</div>';
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$integria_logo = 'images/integria_logo_gray.png';
|
$integria_logo = 'images/integria_logo_gray.png';
|
||||||
if ($config['style'] === 'pandora_black' && !is_metaconsole()) {
|
if ($config['style'] === 'pandora_black' && !is_metaconsole()) {
|
||||||
$integria_logo = 'images/integria_logo.svg';
|
$integria_logo = 'images/integria_logo.svg';
|
||||||
}
|
}
|
||||||
|
|
||||||
$table->data[0][2] = html_print_image($integria_logo, true, ['style' => 'width: 70%; float: right;'], false);
|
$table->data[0][2] = html_print_image($integria_logo, true, ['style' => 'width: 30%; float: right;'], false);
|
||||||
|
|
||||||
$table->data[1][0] = '<div class="label_select"><p class="input_label">'.__('Type').': </p>';
|
$table->data[1][0] = html_print_label_input_block(
|
||||||
$table->data[1][0] .= '<div class="label_select_parent">'.html_print_select(
|
__('Type'),
|
||||||
|
html_print_select(
|
||||||
$integria_types_values,
|
$integria_types_values,
|
||||||
'type',
|
'type',
|
||||||
$input_value_type,
|
$input_value_type,
|
||||||
@ -245,26 +262,12 @@ $table->data[1][0] .= '<div class="label_select_parent">'.html_print_select(
|
|||||||
'',
|
'',
|
||||||
false,
|
false,
|
||||||
'width: 100%;'
|
'width: 100%;'
|
||||||
).'</div>';
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$table->data[2][0] = '<div class="label_select"><p class="input_label">'.__('Status').': </p>';
|
$table->data[1][1] = html_print_label_input_block(
|
||||||
$table->data[2][0] .= '<div class="label_select_parent">'.html_print_select(
|
__('Group'),
|
||||||
$integria_status_values,
|
html_print_select(
|
||||||
'status',
|
|
||||||
$input_value_status,
|
|
||||||
'',
|
|
||||||
__('Select'),
|
|
||||||
1,
|
|
||||||
true,
|
|
||||||
false,
|
|
||||||
true,
|
|
||||||
'',
|
|
||||||
false,
|
|
||||||
'width: 100%;'
|
|
||||||
).'</div>';
|
|
||||||
|
|
||||||
$table->data[1][1] = '<div class="label_select"><p class="input_label">'.__('Group').': </p>';
|
|
||||||
$table->data[1][1] .= '<div class="label_select_parent">'.html_print_select(
|
|
||||||
$integria_group_values,
|
$integria_group_values,
|
||||||
'group',
|
'group',
|
||||||
$input_value_group,
|
$input_value_group,
|
||||||
@ -277,24 +280,12 @@ $table->data[1][1] .= '<div class="label_select_parent">'.html_print_select(
|
|||||||
'',
|
'',
|
||||||
false,
|
false,
|
||||||
'width: 100%;'
|
'width: 100%;'
|
||||||
).'</div>';
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$table->data[2][1] = '<div class="label_select"><p class="input_label">'.__('Creator').': </p>';
|
$table->data[1][2] = html_print_label_input_block(
|
||||||
$table->data[2][1] .= '<div class="label_select_parent">'.html_print_input_text(
|
__('Priority'),
|
||||||
'creator',
|
html_print_select(
|
||||||
$config['integria_user'],
|
|
||||||
'',
|
|
||||||
'30',
|
|
||||||
100,
|
|
||||||
true,
|
|
||||||
true,
|
|
||||||
false,
|
|
||||||
'',
|
|
||||||
'w100p'
|
|
||||||
).ui_print_help_tip(__('This field corresponds to the Integria IMS user specified in Integria IMS setup'), true).'</div>';
|
|
||||||
|
|
||||||
$table->data[1][2] = '<div class="label_select"><p class="input_label">'.__('Priority').': </p>';
|
|
||||||
$table->data[1][2] .= '<div class="label_select_parent">'.html_print_select(
|
|
||||||
$integria_criticity_values,
|
$integria_criticity_values,
|
||||||
'criticity',
|
'criticity',
|
||||||
$input_value_criticity,
|
$input_value_criticity,
|
||||||
@ -307,11 +298,46 @@ $table->data[1][2] .= '<div class="label_select_parent">'.html_print_select(
|
|||||||
'',
|
'',
|
||||||
false,
|
false,
|
||||||
'width: 100%;'
|
'width: 100%;'
|
||||||
).'</div>';
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$table->data[2][2] = '<div class="label_select"><p class="input_label">'.__('Owner').': </p>';
|
$table->data[2][0] = html_print_label_input_block(
|
||||||
|
__('Status'),
|
||||||
|
html_print_select(
|
||||||
|
$integria_status_values,
|
||||||
|
'status',
|
||||||
|
$input_value_status,
|
||||||
|
'',
|
||||||
|
__('Select'),
|
||||||
|
1,
|
||||||
|
true,
|
||||||
|
false,
|
||||||
|
true,
|
||||||
|
'',
|
||||||
|
false,
|
||||||
|
'width: 100%;'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$table->data[2][2] .= '<div class="label_select_parent">'.html_print_autocomplete_users_from_integria(
|
$table->data[2][1] = html_print_label_input_block(
|
||||||
|
__('Creator').ui_print_help_tip(__('This field corresponds to the Integria IMS user specified in Integria IMS setup'), true),
|
||||||
|
html_print_input_text(
|
||||||
|
'creator',
|
||||||
|
$config['integria_user'],
|
||||||
|
'',
|
||||||
|
'30',
|
||||||
|
100,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
false,
|
||||||
|
'',
|
||||||
|
'w100p'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
$table->data[2][2] = html_print_label_input_block(
|
||||||
|
__('Owner'),
|
||||||
|
html_print_autocomplete_users_from_integria(
|
||||||
'owner',
|
'owner',
|
||||||
$input_value_owner,
|
$input_value_owner,
|
||||||
true,
|
true,
|
||||||
@ -319,12 +345,13 @@ $table->data[2][2] .= '<div class="label_select_parent">'.html_print_autocomplet
|
|||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
'w100p'
|
'w100p'
|
||||||
).'</div>';
|
),
|
||||||
|
['div_class' => 'inline']
|
||||||
|
);
|
||||||
|
|
||||||
|
$table->data[3][0] = html_print_label_input_block(
|
||||||
$table->data[3][0] = '<div class="label_select"><p class="input_label">'.__('Resolution').': </p>';
|
__('Resolution'),
|
||||||
|
html_print_select(
|
||||||
$table->data[3][0] .= '<div class="label_select_parent">'.html_print_select(
|
|
||||||
$integria_resolution_values,
|
$integria_resolution_values,
|
||||||
'resolution',
|
'resolution',
|
||||||
$input_value_resolution,
|
$input_value_resolution,
|
||||||
@ -337,50 +364,65 @@ $table->data[3][0] .= '<div class="label_select_parent">'.html_print_select(
|
|||||||
'',
|
'',
|
||||||
false,
|
false,
|
||||||
'width: 100%;'
|
'width: 100%;'
|
||||||
).'</div>';
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$table->data[4][0] = '<div class="label_select"><p class="input_label">'.__('Description').': '.$help_macros.'</p>';
|
$table->data[4][0] = html_print_label_input_block(
|
||||||
$table->data[4][0] .= '<div class="label_select_parent">'.html_print_textarea(
|
__('Description').$help_macros,
|
||||||
|
html_print_textarea(
|
||||||
'incident_content',
|
'incident_content',
|
||||||
3,
|
3,
|
||||||
20,
|
20,
|
||||||
$input_value_content,
|
$input_value_content,
|
||||||
'',
|
'',
|
||||||
true
|
true
|
||||||
).'</div>';
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$table->data[5][0] = '<div class="label_select"><p class="input_label">'.__('File name').':</p>';
|
$table->data[5][0] = html_print_label_input_block(
|
||||||
$table->data[5][0] .= html_print_input_file('userfile', true);
|
__('File name'),
|
||||||
$table->data[6][0] = '<div class="label_select"><p class="input_label">'.__('Attachment description').':</p>';
|
html_print_input_file('userfile', true)
|
||||||
$table->data[6][0] .= html_print_textarea(
|
);
|
||||||
|
|
||||||
|
$table->data[6][0] = html_print_label_input_block(
|
||||||
|
__('Attachment description'),
|
||||||
|
html_print_textarea(
|
||||||
'file_description',
|
'file_description',
|
||||||
3,
|
3,
|
||||||
20,
|
20,
|
||||||
'',
|
'',
|
||||||
'',
|
'',
|
||||||
true
|
true
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
// Print forms and stuff.
|
// Print forms and stuff.
|
||||||
echo '<form id="create_integria_incident_form" name="create_integria_incident_form" method="POST" enctype="multipart/form-data">';
|
echo '<form class="max_floating_element_size" id="create_integria_incident_form" name="create_integria_incident_form" method="POST" enctype="multipart/form-data">';
|
||||||
html_print_table($table);
|
html_print_table($table);
|
||||||
|
$buttons = '';
|
||||||
if (!$update) {
|
if (!$update) {
|
||||||
html_print_input_hidden('create_incident', 1);
|
$buttons .= html_print_input_hidden('create_incident', 1, true);
|
||||||
|
$buttons .= html_print_submit_button(
|
||||||
|
__('Create'),
|
||||||
|
'accion',
|
||||||
|
false,
|
||||||
|
[ 'icon' => 'next' ],
|
||||||
|
true
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
html_print_input_hidden('update_incident', 1);
|
$buttons .= html_print_input_hidden('update_incident', 1, true);
|
||||||
|
$buttons .= html_print_submit_button(
|
||||||
|
__('Update'),
|
||||||
|
'accion',
|
||||||
|
false,
|
||||||
|
[ 'icon' => 'upd' ],
|
||||||
|
true
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html_print_action_buttons($buttons);
|
||||||
|
|
||||||
echo '</form>';
|
echo '</form>';
|
||||||
|
|
||||||
echo '<div class="w100p right">';
|
|
||||||
if ($update) {
|
|
||||||
html_print_submit_button(__('Update'), 'accion', false, 'form="create_integria_incident_form" class="sub wand"');
|
|
||||||
} else {
|
|
||||||
html_print_submit_button(__('Create'), 'accion', false, 'form="create_integria_incident_form" class="sub wand"');
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '</div>';
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
@ -50,14 +50,30 @@ $result_api_call_list = integria_api_call(
|
|||||||
// Return array of api call 'get_incidents'.
|
// Return array of api call 'get_incidents'.
|
||||||
$array_get_incidents = [];
|
$array_get_incidents = [];
|
||||||
get_array_from_csv_data_all($result_api_call_list, $array_get_incidents);
|
get_array_from_csv_data_all($result_api_call_list, $array_get_incidents);
|
||||||
// Remove index (id)
|
|
||||||
$array_get_incidents = $array_get_incidents[$incident_id];
|
|
||||||
|
|
||||||
|
// Remove index (id).
|
||||||
|
$array_get_incidents = $array_get_incidents[$incident_id];
|
||||||
|
|
||||||
// Header tabs.
|
// Header tabs.
|
||||||
$onheader = integriaims_tabs(false, $incident_id);
|
$onheader = integriaims_tabs(false, $incident_id);
|
||||||
ui_print_page_header($array_get_incidents[3].' - '.__('Details'), '', false, '', false, $onheader);
|
ui_print_standard_header(
|
||||||
|
$array_get_incidents[3],
|
||||||
|
'',
|
||||||
|
false,
|
||||||
|
'',
|
||||||
|
false,
|
||||||
|
$onheader,
|
||||||
|
[
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => __('Issues'),
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => __('Details'),
|
||||||
|
],
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
// Data.
|
// Data.
|
||||||
$status = $array_get_incidents[6];
|
$status = $array_get_incidents[6];
|
||||||
@ -215,7 +231,7 @@ $table_files_section->data[1][0] .= html_print_textarea(
|
|||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
$table_files_section->data[2][0] .= '<div class="w100p right">'.html_print_submit_button(__('Upload'), 'accion', false, 'class="sub wand"', true).'</div>';
|
$table_files_section->data[2][0] .= '<div class="w100p right">'.html_print_submit_button(__('Upload'), 'accion', false, ['icon' => 'wand', 'mode' => 'mini secondary'], true).'</div>';
|
||||||
|
|
||||||
$upload_file_form = '<div class="w100p">';
|
$upload_file_form = '<div class="w100p">';
|
||||||
|
|
||||||
@ -268,7 +284,7 @@ $table_comments_section->data[0][0] .= html_print_textarea(
|
|||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
$table_comments_section->data[1][1] .= '<div class="w100p right">'.html_print_submit_button(__('Add'), 'accion', $comment_disabled, 'class="sub wand"', true).'</div>';
|
$table_comments_section->data[1][1] .= '<div class="w100p right">'.html_print_submit_button(__('Add'), 'accion', $comment_disabled, ['icon' => 'wand', 'mode' => 'mini secondary'], true).'</div>';
|
||||||
|
|
||||||
// Upload comment. If ticket is closed, this action cannot be performed.
|
// Upload comment. If ticket is closed, this action cannot be performed.
|
||||||
if ($upload_comment && $array_get_incidents[6] != 7) {
|
if ($upload_comment && $array_get_incidents[6] != 7) {
|
||||||
@ -399,8 +415,8 @@ ui_toggle(
|
|||||||
'',
|
'',
|
||||||
true,
|
true,
|
||||||
false,
|
false,
|
||||||
'white_box white_box_opened',
|
'white-box-content',
|
||||||
'no-border flex'
|
'w98p'
|
||||||
);
|
);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
@ -412,15 +428,14 @@ ui_toggle(
|
|||||||
'',
|
'',
|
||||||
true,
|
true,
|
||||||
false,
|
false,
|
||||||
'white_box white_box_opened',
|
'white-box-content',
|
||||||
'no-border flex'
|
'w98p'
|
||||||
);
|
);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(document).ready (function () {
|
$(document).ready (function () {
|
||||||
|
|
||||||
$('#details_box .white_table_graph_header').click(function(){
|
$('#details_box .white_table_graph_header').click(function(){
|
||||||
$('div#details_box').toggleClass('integria_details_shadow');
|
$('div#details_box').toggleClass('integria_details_shadow');
|
||||||
});
|
});
|
||||||
@ -432,6 +447,5 @@ $(document).ready (function () {
|
|||||||
$('#dates_box .white_table_graph_header').click(function(){
|
$('#dates_box .white_table_graph_header').click(function(){
|
||||||
$('div#dates_box').toggleClass('integria_details_shadow');
|
$('div#dates_box').toggleClass('integria_details_shadow');
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
@ -18,13 +18,31 @@ require_once $config['homedir'].'/include/functions_graph.php';
|
|||||||
|
|
||||||
check_login();
|
check_login();
|
||||||
|
|
||||||
ui_print_page_header(__('Incidents').' » '.__('Statistics'), 'images/book_edit.png', false, '', false, '');
|
ui_print_standard_header(
|
||||||
|
__('Statistics'),
|
||||||
|
'images/book_edit.png',
|
||||||
|
false,
|
||||||
|
'',
|
||||||
|
false,
|
||||||
|
[],
|
||||||
|
[
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => __('Issues'),
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => __('Statistics'),
|
||||||
|
],
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
if (!$config['integria_enabled']) {
|
if (!$config['integria_enabled']) {
|
||||||
ui_print_error_message(__('In order to access ticket management system, integration with Integria IMS must be enabled and properly configured'));
|
ui_print_error_message(__('In order to access ticket management system, integration with Integria IMS must be enabled and properly configured'));
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
echo '<div class="info_box">';
|
||||||
echo '<table width="90%">
|
echo '<table width="90%">
|
||||||
<tr><td valign="top" style="width:50%;"><h3>'.__('Incidents by status').'</h3>';
|
<tr><td valign="top" style="width:50%;"><h3>'.__('Incidents by status').'</h3>';
|
||||||
echo graph_incidents_status();
|
echo graph_incidents_status();
|
||||||
@ -39,3 +57,4 @@ echo '<td style="width:50%;"><h3>'.__('Incidents by user').'</h3>';
|
|||||||
echo graphic_incident_user();
|
echo graphic_incident_user();
|
||||||
|
|
||||||
echo '</table>';
|
echo '</table>';
|
||||||
|
echo '</div>';
|
||||||
|
@ -20,13 +20,23 @@ check_login();
|
|||||||
|
|
||||||
// Header tabs.
|
// Header tabs.
|
||||||
$onheader = integriaims_tabs('list_tab');
|
$onheader = integriaims_tabs('list_tab');
|
||||||
ui_print_page_header(
|
ui_print_standard_header(
|
||||||
__('Integria IMS Tickets'),
|
__('Integria IMS Tickets'),
|
||||||
'',
|
'',
|
||||||
false,
|
false,
|
||||||
'integria_tab',
|
'integria_tab',
|
||||||
false,
|
false,
|
||||||
$onheader
|
$onheader,
|
||||||
|
[
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => __('Issues'),
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'link' => '',
|
||||||
|
'label' => __('Integria IMS Tickets'),
|
||||||
|
],
|
||||||
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
// Check if Integria integration enabled.
|
// Check if Integria integration enabled.
|
||||||
@ -308,17 +318,21 @@ $resolution_incident = integriaims_get_details('resolution');
|
|||||||
// TABLE FILTERS.
|
// TABLE FILTERS.
|
||||||
$table = new StdClass();
|
$table = new StdClass();
|
||||||
$table->width = '100%';
|
$table->width = '100%';
|
||||||
$table->class = 'databox filters';
|
$table->size = [];
|
||||||
$table->styleTable = 'margin-bottom:0px';
|
$table->size[0] = '33%';
|
||||||
$table->cellpadding = '0';
|
$table->size[1] = '33%';
|
||||||
$table->cellspacing = '0';
|
$table->size[2] = '33%';
|
||||||
|
$table->class = 'filter-table-adv';
|
||||||
|
|
||||||
$table->data = [];
|
$table->data = [];
|
||||||
|
$table->data[0][0] = html_print_label_input_block(
|
||||||
|
__('Text filter'),
|
||||||
|
html_print_input_text('incident_text', $incident_text, '', 30, 100, true)
|
||||||
|
);
|
||||||
|
|
||||||
$table->data[0][0] = __('Text filter');
|
$table->data[0][1] = html_print_label_input_block(
|
||||||
$table->data[0][1] = html_print_input_text('incident_text', $incident_text, '', 30, 100, true);
|
__('Status'),
|
||||||
|
html_print_select(
|
||||||
$table->data[0][2] = __('Status');
|
|
||||||
$table->data[0][3] = html_print_select(
|
|
||||||
$status_incident,
|
$status_incident,
|
||||||
'incident_status',
|
'incident_status',
|
||||||
$incident_status,
|
$incident_status,
|
||||||
@ -326,10 +340,12 @@ $table->data[0][3] = html_print_select(
|
|||||||
__('All'),
|
__('All'),
|
||||||
0,
|
0,
|
||||||
true
|
true
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
$table->data[0][4] = __('Group');
|
$table->data[0][2] = html_print_label_input_block(
|
||||||
$table->data[0][5] = html_print_select(
|
__('Group'),
|
||||||
|
html_print_select(
|
||||||
$group_incident,
|
$group_incident,
|
||||||
'incident_group',
|
'incident_group',
|
||||||
$incident_group,
|
$incident_group,
|
||||||
@ -337,16 +353,40 @@ $table->data[0][5] = html_print_select(
|
|||||||
__('All'),
|
__('All'),
|
||||||
1,
|
1,
|
||||||
true
|
true
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
$table->data[1][0] = __('Owner');
|
$table->data[1][0] = html_print_label_input_block(
|
||||||
$table->data[1][1] = html_print_autocomplete_users_from_integria('incident_owner', $incident_owner, true);
|
__('Owner'),
|
||||||
|
html_print_autocomplete_users_from_integria(
|
||||||
|
'incident_owner',
|
||||||
|
$incident_owner,
|
||||||
|
true,
|
||||||
|
'30',
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
'w100p'
|
||||||
|
),
|
||||||
|
['div_class' => 'inline']
|
||||||
|
);
|
||||||
|
|
||||||
$table->data[1][2] = __('Creator');
|
$table->data[1][1] = html_print_label_input_block(
|
||||||
$table->data[1][3] = html_print_autocomplete_users_from_integria('incident_creator', $incident_creator, true);
|
__('Creator'),
|
||||||
|
html_print_autocomplete_users_from_integria(
|
||||||
|
'incident_creator',
|
||||||
|
$incident_creator,
|
||||||
|
true,
|
||||||
|
'30',
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
'w100p'
|
||||||
|
),
|
||||||
|
['div_class' => 'inline']
|
||||||
|
);
|
||||||
|
|
||||||
$table->data[1][4] = __('Priority');
|
$table->data[1][2] = html_print_label_input_block(
|
||||||
$table->data[1][5] = html_print_select(
|
__('Priority'),
|
||||||
|
html_print_select(
|
||||||
$priority_incident,
|
$priority_incident,
|
||||||
'incident_priority',
|
'incident_priority',
|
||||||
$incident_priority,
|
$incident_priority,
|
||||||
@ -354,10 +394,12 @@ $table->data[1][5] = html_print_select(
|
|||||||
__('All'),
|
__('All'),
|
||||||
-1,
|
-1,
|
||||||
true
|
true
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
$table->data[2][0] = __('Resolution');
|
$table->data[2][0] = html_print_label_input_block(
|
||||||
$table->data[2][1] = html_print_select(
|
__('Resolution'),
|
||||||
|
html_print_select(
|
||||||
$resolution_incident,
|
$resolution_incident,
|
||||||
'incident_resolution',
|
'incident_resolution',
|
||||||
$incident_resolution,
|
$incident_resolution,
|
||||||
@ -365,11 +407,11 @@ $table->data[2][1] = html_print_select(
|
|||||||
__('All'),
|
__('All'),
|
||||||
'',
|
'',
|
||||||
true
|
true
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
// TODO: field type date.
|
$input_date = '<div>';
|
||||||
$table->data[2][2] = __('Date');
|
$input_date .= html_print_input_text_extended(
|
||||||
$table->data[2][3] = html_print_input_text_extended(
|
|
||||||
'created_from',
|
'created_from',
|
||||||
$created_from,
|
$created_from,
|
||||||
'created_from',
|
'created_from',
|
||||||
@ -381,7 +423,7 @@ $table->data[2][3] = html_print_input_text_extended(
|
|||||||
'placeholder="'.__('Created from').'"',
|
'placeholder="'.__('Created from').'"',
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
$table->data[2][3] .= html_print_input_text_extended(
|
$input_date .= html_print_input_text_extended(
|
||||||
'created_to',
|
'created_to',
|
||||||
$created_to,
|
$created_to,
|
||||||
'created_to',
|
'created_to',
|
||||||
@ -393,11 +435,12 @@ $table->data[2][3] .= html_print_input_text_extended(
|
|||||||
'class="mrgn_lft_5px" placeholder="'.__('Created to').'"',
|
'class="mrgn_lft_5px" placeholder="'.__('Created to').'"',
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
$input_date .= '</div>';
|
||||||
|
|
||||||
// TODO: image of Integria IMS.
|
$table->data[2][2] = html_print_label_input_block(
|
||||||
$table->data[2][4] = '';
|
__('Date'),
|
||||||
$table->data[2][5] = '';
|
$input_date
|
||||||
|
);
|
||||||
|
|
||||||
// Send filters to get_tickets_integriaims().
|
// Send filters to get_tickets_integriaims().
|
||||||
$tickets_filters = [
|
$tickets_filters = [
|
||||||
@ -423,20 +466,48 @@ $url = ui_get_full_url(
|
|||||||
// ---- PRINT TABLE FILTERS ----
|
// ---- PRINT TABLE FILTERS ----
|
||||||
$integria_incidents_form = '<form method="post" action="'.$url.'" class="pdd_0px">';
|
$integria_incidents_form = '<form method="post" action="'.$url.'" class="pdd_0px">';
|
||||||
$integria_incidents_form .= html_print_table($table, true);
|
$integria_incidents_form .= html_print_table($table, true);
|
||||||
$integria_incidents_form .= '<div class="w100p right">';
|
$buttons = html_print_submit_button(
|
||||||
$integria_incidents_form .= '<div class="float-right mrgn_lft_5px">'.html_print_button(
|
__('Filter'),
|
||||||
|
'filter_button',
|
||||||
|
false,
|
||||||
|
[
|
||||||
|
'icon' => 'search',
|
||||||
|
'mode' => 'mini secondary',
|
||||||
|
],
|
||||||
|
true
|
||||||
|
);
|
||||||
|
$buttons .= html_print_button(
|
||||||
__('Export to CSV'),
|
__('Export to CSV'),
|
||||||
'csv_export',
|
'csv_export',
|
||||||
false,
|
false,
|
||||||
"blockResubmit($(this)); location.href='operation/incidents/integriaims_export_csv.php?tickets_filters=$decode_csv'",
|
"blockResubmit($(this)); location.href='operation/incidents/integriaims_export_csv.php?tickets_filters=$decode_csv'",
|
||||||
'class="sub next"',
|
[
|
||||||
|
'icon' => 'cog',
|
||||||
|
'mode' => 'mini secondary',
|
||||||
|
],
|
||||||
true
|
true
|
||||||
).'</div>';
|
);
|
||||||
$integria_incidents_form .= '<div>'.html_print_submit_button(__('Filter'), 'filter_button', false, 'class="sub filter"', true).'</div>';
|
|
||||||
$integria_incidents_form .= '</div>';
|
$integria_incidents_form .= html_print_div(
|
||||||
|
[
|
||||||
|
'class' => 'action-buttons',
|
||||||
|
'content' => $buttons,
|
||||||
|
],
|
||||||
|
true
|
||||||
|
);
|
||||||
$integria_incidents_form .= '</form>';
|
$integria_incidents_form .= '</form>';
|
||||||
|
|
||||||
ui_toggle($integria_incidents_form, __('Filter'), '', '', false);
|
ui_toggle(
|
||||||
|
$integria_incidents_form,
|
||||||
|
'<span class="subsection_header_title">'.__('Filters').'</span>',
|
||||||
|
'filter_form',
|
||||||
|
'',
|
||||||
|
true,
|
||||||
|
false,
|
||||||
|
'',
|
||||||
|
'white-box-content',
|
||||||
|
'box-flat white_table_graph fixed_filter_bar'
|
||||||
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Order api call 'get_incidents'.
|
* Order api call 'get_incidents'.
|
||||||
@ -552,33 +623,52 @@ foreach ($incidents_paginated as $key => $value) {
|
|||||||
|
|
||||||
$table->data[$i][8] .= '<a id="link_delete_incident" href="'.ui_get_full_url('index.php?sec=incident&sec2=operation/incidents/list_integriaims_incidents&delete_incident='.$array_get_incidents[$key][0]).'"
|
$table->data[$i][8] .= '<a id="link_delete_incident" href="'.ui_get_full_url('index.php?sec=incident&sec2=operation/incidents/list_integriaims_incidents&delete_incident='.$array_get_incidents[$key][0]).'"
|
||||||
onClick="javascript:if (!confirm(\''.__('Are you sure?').'\')) return false;">';
|
onClick="javascript:if (!confirm(\''.__('Are you sure?').'\')) return false;">';
|
||||||
$table->data[$i][8] .= html_print_image('images/delete.svg', true, ['title' => __('Delete'), 'class' => 'invert_filter']);
|
$table->data[$i][8] .= html_print_image('images/delete.svg', true, ['title' => __('Delete'), 'class' => 'invert_filter main_menu_icon']);
|
||||||
$table->data[$i][8] .= '</a>';
|
$table->data[$i][8] .= '</a>';
|
||||||
|
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$tablePagination = '';
|
||||||
// Show table incidents.
|
// Show table incidents.
|
||||||
ui_pagination(count($array_get_incidents), $url, $offset);
|
|
||||||
if (empty($table->data) === true) {
|
if (empty($table->data) === true) {
|
||||||
ui_print_info_message(['no_close' => true, 'message' => __('No tickets to show').'.' ]);
|
ui_print_info_message(['no_close' => true, 'message' => __('No tickets to show').'.' ]);
|
||||||
} else {
|
} else {
|
||||||
html_print_table($table);
|
html_print_table($table);
|
||||||
ui_pagination(count($array_get_incidents), $url, $offset, 0, false, 'offset', true, 'pagination-bottom');
|
$tablePagination = ui_pagination(
|
||||||
|
count($array_get_incidents),
|
||||||
|
$url,
|
||||||
|
$offset,
|
||||||
|
0,
|
||||||
|
true,
|
||||||
|
'offset',
|
||||||
|
false,
|
||||||
|
'pagination-bottom'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show button to create incident.
|
// Show button to create incident.
|
||||||
echo '<form method="POST" action="'.ui_get_full_url('index.php?sec=incident&sec2=operation/incidents/configure_integriaims_incident').'">';
|
echo '<form method="POST" action="'.ui_get_full_url('index.php?sec=incident&sec2=operation/incidents/configure_integriaims_incident').'">';
|
||||||
echo '<div class="wi100p right">';
|
html_print_action_buttons(
|
||||||
html_print_submit_button(__('Create'), 'create_new_incident', false, 'class="sub next"');
|
html_print_submit_button(
|
||||||
echo '</div>';
|
__('Create'),
|
||||||
|
'create_new_incident',
|
||||||
|
false,
|
||||||
|
[ 'icon' => 'next' ],
|
||||||
|
true
|
||||||
|
),
|
||||||
|
[
|
||||||
|
'type' => 'data_table',
|
||||||
|
'class' => 'fixed_action_buttons',
|
||||||
|
'right_content' => $tablePagination,
|
||||||
|
]
|
||||||
|
);
|
||||||
echo '</form>';
|
echo '</form>';
|
||||||
|
|
||||||
// Datapicker library for show calendar.
|
// Datapicker library for show calendar.
|
||||||
ui_require_jquery_file('ui.datepicker-'.get_user_language(), 'include/javascript/i18n/');
|
ui_require_jquery_file('ui.datepicker-'.get_user_language(), 'include/javascript/i18n/');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
$(document).ready( function() {
|
$(document).ready( function() {
|
||||||
$("#created_from, #created_to").datepicker({
|
$("#created_from, #created_to").datepicker({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user