|
|
|
@ -20,7 +20,6 @@ require_once ($config["homedir"] . "/include/functions_ui.php");
|
|
|
|
|
$sort_field = get_parameter("sort_field", "timestamp");
|
|
|
|
|
$sort = get_parameter("sort", "down");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$table = new stdClass();
|
|
|
|
|
if(!isset($table->width)) {
|
|
|
|
|
$table->width = '100%';
|
|
|
|
@ -34,37 +33,54 @@ if(!isset($table->class)) {
|
|
|
|
|
$table->head = array ();
|
|
|
|
|
$table->data = array ();
|
|
|
|
|
|
|
|
|
|
$params = array (
|
|
|
|
|
// Pandora sections
|
|
|
|
|
"sec" => "eventos",
|
|
|
|
|
"sec2" => "operation/events/events",
|
|
|
|
|
|
|
|
|
|
// Events query params
|
|
|
|
|
"search" => io_safe_input($search),
|
|
|
|
|
"severity" => $severity,
|
|
|
|
|
"status" => $status,
|
|
|
|
|
"id_group" => $id_group,
|
|
|
|
|
"recursion" => $recursion,
|
|
|
|
|
"refr" => (int)get_parameter("refr", 0),
|
|
|
|
|
"id_agent_module" => $id_agent_module,
|
|
|
|
|
"pagination" => $pagination,
|
|
|
|
|
"group_rep" => $group_rep,
|
|
|
|
|
"event_view_hr" => $event_view_hr,
|
|
|
|
|
"id_user_ack" => $id_user_ack,
|
|
|
|
|
"tag_with" => $tag_with_base64,
|
|
|
|
|
"tag_without" => $tag_without_base64,
|
|
|
|
|
"filter_only_alert" => $filter_only_alert,
|
|
|
|
|
"offset" => $offset,
|
|
|
|
|
"toogle_filter" => "no",
|
|
|
|
|
"filter_id" => $filter_id,
|
|
|
|
|
"id_name" => $id_name,
|
|
|
|
|
"history" => (int)$history,
|
|
|
|
|
"section" => $section,
|
|
|
|
|
"open_filter" => $open_filter,
|
|
|
|
|
"date_from" => $date_from,
|
|
|
|
|
"date_to" => $date_to,
|
|
|
|
|
"pure" => $config["pure"],
|
|
|
|
|
|
|
|
|
|
// Display params
|
|
|
|
|
"offset" => $offset,
|
|
|
|
|
"disabled" => $disabled,
|
|
|
|
|
"sort" => $sort,
|
|
|
|
|
"sort_field" => $sort_field
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if ($group_rep == 2) {
|
|
|
|
|
$table->class = "databox filters data";
|
|
|
|
|
$table->head[1] = __('Agent');
|
|
|
|
|
$table->head[5] = __('More detail');
|
|
|
|
|
|
|
|
|
|
$params = "search=" . io_safe_input($search) .
|
|
|
|
|
"&severity=" . $severity .
|
|
|
|
|
"&status=" . $status .
|
|
|
|
|
"&id_group=" . $id_group .
|
|
|
|
|
"&recursion=" . $recursion .
|
|
|
|
|
"&refr=" . (int)get_parameter("refr", 0) .
|
|
|
|
|
"&id_agent_module=" . $id_agent_module .
|
|
|
|
|
"&pagination=" . $pagination .
|
|
|
|
|
"&group_rep=2" .
|
|
|
|
|
"&event_view_hr=" . $event_view_hr .
|
|
|
|
|
"&id_user_ack=" . $id_user_ack .
|
|
|
|
|
"&tag_with=". $tag_with_base64 .
|
|
|
|
|
"&tag_without=" . $tag_without_base64 .
|
|
|
|
|
"&filter_only_alert" . $filter_only_alert .
|
|
|
|
|
"&offset=" . $offset .
|
|
|
|
|
"&toogle_filter=no" .
|
|
|
|
|
"&filter_id=" . $filter_id .
|
|
|
|
|
"&id_name=" . $id_name .
|
|
|
|
|
"&history=" . (int)$history .
|
|
|
|
|
"&section=" . $section .
|
|
|
|
|
"&open_filter=" . $open_filter .
|
|
|
|
|
"&date_from=" . $date_from .
|
|
|
|
|
"&date_to=" . $date_to .
|
|
|
|
|
"&pure=" . $config["pure"];
|
|
|
|
|
|
|
|
|
|
$url = "index.php?sec=eventos&sec2=operation/events/events&" . $params;
|
|
|
|
|
$url = html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'status')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
foreach ($result as $key => $res) {
|
|
|
|
|
|
|
|
|
|
if ($res['event_type'] == 'alert_fired') {
|
|
|
|
@ -122,7 +138,6 @@ if ($group_rep == 2) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
|
|
//fields that the user has selected to show
|
|
|
|
|
if ($meta) {
|
|
|
|
|
$show_fields = events_meta_get_custom_fields_user();
|
|
|
|
@ -133,7 +148,10 @@ else {
|
|
|
|
|
|
|
|
|
|
//headers
|
|
|
|
|
$i = 0;
|
|
|
|
|
$table->head[$i] = __('ID') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=event_id&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=event_id&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('ID') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'event_id')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
@ -144,104 +162,154 @@ else {
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('estado', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Status') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=status&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=status&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Status') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'status')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('id_evento', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Event ID') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=event_id&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=event_id&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Event ID') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'event_id')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('evento', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Event Name') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=event_name&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=event_name&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Event Name') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'event_name')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
$table->style[$i] = 'min-width: 200px; max-width: 350px; word-break: break-all;';
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('id_agente', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Agent name') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=agent_id&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=agent_id&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Agent name') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'agent_id')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
$table->style[$i] = 'max-width: 350px; word-break: break-all;';
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('timestamp', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Timestamp') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=timestamp&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=timestamp&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Timestamp') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'timestamp')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('id_usuario', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('User') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=user_id&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=user_id&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('User') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'user_id')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('owner_user', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Owner') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=owner&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=owner&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Owner') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'owner')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('id_grupo', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Group') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=group_id&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=group_id&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Group') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'group_id')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('event_type', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Event Type') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=event_type&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=event_type&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Event Type') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'event_type')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$table->style[$i] = 'min-width: 85px;';
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('id_agentmodule', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Module Name') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=module_name&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=module_name&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Module Name') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'module_name')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('id_alert_am', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Alert') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=alert_id&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=alert_id&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Alert') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'alert_id')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (in_array('criticity', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Severity') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=criticity&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=criticity&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Severity') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'criticity')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('user_comment', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Comment') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=comment&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=comment&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Comment') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'comment')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('tags', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Tags') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=tags&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=tags&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Tags') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'tags')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('source', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Source') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=source&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=source&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
$table->head[$i] = __('Source') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'source')),
|
|
|
|
|
'sort'
|
|
|
|
|
);$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('id_extra', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Extra ID') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=extra_id&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=extra_id&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Extra ID') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'extra_id')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('ack_utimestamp', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('ACK Timestamp') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=ack_timestamp&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=ack_utimestamp&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('ACK Timestamp') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'ack_utimestamp')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
@ -253,14 +321,19 @@ else {
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('data', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Data') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=data&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=data&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';
|
|
|
|
|
$table->head[$i] = __('Data') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'data')),
|
|
|
|
|
'sort'
|
|
|
|
|
);
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
if (in_array('module_status', $show_fields)) {
|
|
|
|
|
$table->head[$i] = __('Module Status') . ' ' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=module_status&sort=up&disabled='.$disabled.'">' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '</a>' . '<a href="index.php?sec=eventos&sec2=operation/events/events&offset='.$offset.'&sort_field=module_status&sort=down&disabled=$disabled">' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . '</a>';;
|
|
|
|
|
$table->align[$i] = 'left';
|
|
|
|
|
$table->head[$i] = __('Module Status') . html_print_sort_arrows(
|
|
|
|
|
array_merge($params, array('sort_field' => 'module_status')),
|
|
|
|
|
'sort'
|
|
|
|
|
);$table->align[$i] = 'left';
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
@ -772,7 +845,10 @@ else {
|
|
|
|
|
if (!empty ($table->data)) {
|
|
|
|
|
|
|
|
|
|
if ($allow_pagination) {
|
|
|
|
|
ui_pagination ($total_events, "index.php?sec=eventos&sec2=operation/events/events&sort_field=$sort_field&sort=$sort&disabled=$disabled", $offset, $pagination);
|
|
|
|
|
$params_to_paginate = $params;
|
|
|
|
|
unset($params_to_paginate['offset']);
|
|
|
|
|
$url_paginate = "index.php?" . http_build_query($params_to_paginate, '', '&');
|
|
|
|
|
ui_pagination ($total_events, $url_paginate, $offset, $pagination);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($allow_action) {
|
|
|
|
|