729 lines
23 KiB
PHP
729 lines
23 KiB
PHP
<?php
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
// ==================================================
|
|
// Copyright (c) 2005-2010 Artica Soluciones Tecnologicas
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation for version 2.
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// Load global vars
|
|
global $config;
|
|
|
|
require_once ("include/functions_events.php"); //Event processing functions
|
|
require_once ("include/functions_alerts.php"); //Alerts processing functions
|
|
require_once ($config['homedir'].'/include/functions_agents.php'); //Agents functions
|
|
require_once ($config['homedir'].'/include/functions_users.php'); //Users functions
|
|
require_once ($config['homedir'].'/include/functions_graph.php');
|
|
require_once ($config['homedir'].'/include/functions_ui.php');
|
|
|
|
check_login ();
|
|
|
|
if (! check_acl ($config["id_user"], 0, "IR")) {
|
|
db_pandora_audit("ACL Violation",
|
|
"Trying to access event viewer");
|
|
require ("general/noaccess.php");
|
|
return;
|
|
}
|
|
|
|
if (is_ajax ()) {
|
|
$get_event_tooltip = (bool) get_parameter ('get_event_tooltip');
|
|
$validate_event = (bool) get_parameter ('validate_event');
|
|
$delete_event = (bool) get_parameter ('delete_event');
|
|
$get_events_fired = (bool) get_parameter('get_events_fired');
|
|
$standby_alert = (bool) get_parameter('standby_alert');
|
|
$get_comment = (bool) get_parameter('get_comment');
|
|
$get_comment_header = (bool) get_parameter('get_comment_header');
|
|
|
|
if ($get_event_tooltip) {
|
|
$id = (int) get_parameter ('id');
|
|
$event = events_get_event ($id);
|
|
if ($event === false)
|
|
return;
|
|
|
|
echo '<h3>'.__('Event').'</h3>';
|
|
echo '<strong>'.__('Type').': </strong><br />';
|
|
|
|
events_print_type_img ($event["event_type"]);
|
|
echo ' ';
|
|
if ($event["event_type"] == "system") {
|
|
echo __('System');
|
|
}
|
|
elseif ($event["id_agente"] > 0) {
|
|
// Agent name
|
|
echo agents_get_name ($event["id_agente"]);
|
|
}
|
|
else {
|
|
echo '';
|
|
}
|
|
echo '<br />';
|
|
echo '<strong>'.__('Timestamp').': </strong><br />';
|
|
ui_print_timestamp ($event['utimestamp']);
|
|
|
|
echo '<br />';
|
|
echo '<strong>'.__('Description').': </strong><br />';
|
|
echo $event['evento'];
|
|
|
|
return;
|
|
}
|
|
|
|
if ($standby_alert) {
|
|
$id = (int) get_parameter ('id');
|
|
$event = events_get_event ($id);
|
|
if ($event === false)
|
|
return;
|
|
|
|
alerts_agent_module_standby ($event['id_alert_am'], 1);
|
|
return;
|
|
}
|
|
|
|
if ($validate_event) {
|
|
$id = (int) get_parameter ("id");
|
|
$similars = (bool) get_parameter ('similars');
|
|
$comment = (string) get_parameter ('comment');
|
|
$new_status = get_parameter ('new_status');
|
|
|
|
// Set off the standby mode when close an event
|
|
if($new_status == 1) {
|
|
$event = events_get_event ($id);
|
|
alerts_agent_module_standby ($event['id_alert_am'], 0);
|
|
}
|
|
|
|
$return = events_validate_event ($id, $similars, $comment, $new_status);
|
|
if ($return)
|
|
echo 'ok';
|
|
else
|
|
echo 'error';
|
|
return;
|
|
}
|
|
|
|
if ($delete_event) {
|
|
$id = (array) get_parameter ("id");
|
|
$similars = (bool) get_parameter ('similars');
|
|
|
|
$return = events_delete_event ($id, $similars);
|
|
if ($return)
|
|
echo 'ok';
|
|
else
|
|
echo 'error';
|
|
return;
|
|
}
|
|
|
|
if ($get_events_fired) {
|
|
|
|
$id = get_parameter('id_row');
|
|
$idGroup = get_parameter('id_group');
|
|
|
|
$query = ' AND id_evento > ' . $id;
|
|
|
|
$type = array();
|
|
$alert = get_parameter('alert_fired');
|
|
if ($alert == 'true') {
|
|
$resultAlert = alerts_get_event_status_group($idGroup, 'alert_fired', $query);
|
|
}
|
|
$critical = get_parameter('critical');
|
|
if ($critical == 'true') {
|
|
$resultCritical = alerts_get_event_status_group($idGroup, 'going_up_critical', $query);
|
|
}
|
|
$warning = get_parameter('warning');
|
|
if ($warning == 'true') {
|
|
$resultWarning = alerts_get_event_status_group($idGroup, 'going_up_warning', $query);
|
|
}
|
|
|
|
if ($resultAlert) {
|
|
$return = array('fired' => $resultAlert, 'sound' => $config['sound_alert']);
|
|
}
|
|
else if ($resultCritical) {
|
|
$return = array('fired' => $resultCritical, 'sound' => $config['sound_critical']);
|
|
}
|
|
else if ($resultWarning) {
|
|
$return = array('fired' => $resultWarning, 'sound' => $config['sound_warning']);
|
|
}
|
|
else {
|
|
$return = array('fired' => 0);
|
|
}
|
|
|
|
echo json_encode($return);
|
|
}
|
|
|
|
if ($get_comment){
|
|
$id = (int) get_parameter ("id");
|
|
$event = events_get_event ($id);
|
|
|
|
if ($event === false)
|
|
echo '';
|
|
else
|
|
echo $event['user_comment'];
|
|
}
|
|
|
|
if ($get_comment_header){
|
|
$id = (int) get_parameter ("id");
|
|
$event = events_get_event ($id);
|
|
|
|
if ($event === false)
|
|
echo '';
|
|
else
|
|
echo ui_print_truncate_text(strip_tags($event["user_comment"]));
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
$offset = (int) get_parameter ("offset", 0);
|
|
$ev_group = (int) get_parameter ("ev_group", 0); //0 = all
|
|
$event_type = get_parameter ("event_type", ''); // 0 all
|
|
$severity = (int) get_parameter ("severity", -1); // -1 all
|
|
$status = (int) get_parameter ("status", 3); // -1 all, 0 only new, 1 only validated, 2 only in process, 3 only not validated,
|
|
$id_agent = (int) get_parameter ("id_agent", -2); //-2 search by text, -1 all, 0 system
|
|
$id_event = (int) get_parameter ("id_event", -1);
|
|
$pagination = (int) get_parameter ("pagination", $config["block_size"]);
|
|
$event_view_hr = (int) get_parameter ("event_view_hr", $config["event_view_hr"]);
|
|
$id_user_ack = get_parameter ("id_user_ack", 0);
|
|
$group_rep = (int) get_parameter ("group_rep", 1);
|
|
$delete = (bool) get_parameter ("delete");
|
|
$validate = (bool) get_parameter ("validate", 0);
|
|
$section = (string) get_parameter ("section", "list");
|
|
$text_agent = (string) get_parameter('text_agent', __("All"));
|
|
$filter_only_alert = (int) get_parameter('filter_only_alert', -1);
|
|
$filter_id = (int) get_parameter('filter_id', 0);
|
|
$id_name = (string) get_parameter('id_name', '');
|
|
$id_group = (int) get_parameter('id_group', 0);
|
|
|
|
$search = io_safe_output(preg_replace ("/&([A-Za-z]{0,4}\w{2,3};|#[0-9]{2,3};)/", "&", rawurldecode (get_parameter ("search"))));
|
|
|
|
users_get_groups ($config["id_user"], "IR");
|
|
|
|
$ids = (array) get_parameter ("eventid", -1);
|
|
|
|
$url = "index.php?sec=eventos&sec2=operation/events/events&search=" .
|
|
io_safe_input($search) . "&event_type=" . $event_type .
|
|
"&severity=" . $severity . "&status=" . $status . "&ev_group=" .
|
|
$ev_group . "&refr=" . $config["refr"] . "&id_agent=" .
|
|
$id_agent . "&id_event=" . $id_event . "&pagination=" .
|
|
$pagination . "&group_rep=" . $group_rep . "&event_view_hr=" .
|
|
$event_view_hr . "&id_user_ack=" . $id_user_ack;
|
|
|
|
// Header
|
|
if ($config["pure"] == 0) {
|
|
$pss = get_user_info($config['id_user']);
|
|
$hashup = md5($config['id_user'] . $pss['password']);
|
|
|
|
// Fullscreen
|
|
$fullscreen['active'] = false;
|
|
$fullscreen['text'] = '<a href="'.$url.'&pure=1">' .
|
|
html_print_image("images/fullscreen.png", true, array ("title" => __('Full screen'))) .'</a>';
|
|
|
|
// Event list
|
|
$list['active'] = false;
|
|
$list['text'] = '<a href="index.php?sec=eventos&sec2=operation/events/events">' .
|
|
html_print_image("images/god6.png", true, array("title" => __('Event list'))) . '</a>';
|
|
$rss['active'] = false;
|
|
$rss['text'] = '<a href="operation/events/events_rss.php?user=' . $config['id_user'] . '&hashup=' . $hashup .
|
|
'&text_agent=' . $text_agent . '&ev_group='.$ev_group.'&event_type='.$event_type.'&search='.io_safe_input($search).'&severity='.$severity.'&status='.$status.'&event_view_hr='.$event_view_hr.'&id_agent='.$id_agent.'">' .
|
|
html_print_image("images/rss.png", true, array ("title" => __('RSS Events'))) .'</a>';
|
|
|
|
// Marquee
|
|
$marquee['active'] = false;
|
|
$marquee['text'] = '<a href="operation/events/events_marquee.php">' .
|
|
html_print_image("images/heart.png", true, array ("title" => __('Marquee display'))) .'</a>';
|
|
$csv['active'] = false;
|
|
$csv['text'] = '<a href="operation/events/export_csv.php?ev_group=' . $ev_group .
|
|
'&text_agent=' . $text_agent . '&event_type='.$event_type.'&search='.io_safe_input($search).'&severity='.$severity.'&status='.$status.'&event_view_hr='.$event_view_hr.'&id_agent='.$id_agent.'">' .
|
|
html_print_image("images/disk.png", true, array ("title" => __('Export to CSV file'))) .'</a>';
|
|
|
|
// Sound events
|
|
$sound_event['active'] = false;
|
|
$sound_event['text'] = '<a href="javascript: openSoundEventWindow();">' . html_print_image('images/music_note.png', true, array('title' => __('Sound events'))) . '</a>';
|
|
|
|
// If the user has administrator permission display manage tab
|
|
if (check_acl ($config["id_user"], 0, "IW")) {
|
|
// Manage events
|
|
$manage_events['active'] = false;
|
|
$manage_events['text'] = '<a href="index.php?sec=geventos&sec2=godmode/events/events&section=filter">' .
|
|
html_print_image("images/setup.png", true, array ("title" => __('Manage events'))) . '</a>';
|
|
|
|
$onheader = array('manage_events' => $manage_events, 'separator' => '', 'fullscreen' => $fullscreen,
|
|
'list' => $list, 'rss' => $rss, 'marquee' => $marquee, 'csv' => $csv, 'sound_event' => $sound_event) ;
|
|
}
|
|
else {
|
|
$onheader = array('fullscreen' => $fullscreen,
|
|
'list' => $list, 'rss' => $rss, 'marquee' => $marquee, 'csv' => $csv, 'sound_event' => $sound_event) ;
|
|
}
|
|
|
|
switch ($section){
|
|
case 'sound_event': $onheader['sound_event']['active'] = true;
|
|
break;
|
|
default: $onheader['list']['active'] = true;
|
|
break;
|
|
}
|
|
|
|
ui_print_page_header (__("Events"), "images/lightning_go.png", false, "eventview", false, $onheader);
|
|
|
|
?>
|
|
<script type="text/javascript">
|
|
function openSoundEventWindow() {
|
|
<?php
|
|
$url = ui_get_full_url(false);
|
|
?>
|
|
url = '<?php echo $url . 'operation/events/sound_events.php'; ?>';
|
|
|
|
window.open(url, '<?php __('Sound Alerts'); ?>','width=300, height=300, toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=yes');
|
|
}
|
|
|
|
function openURLTagWindow(url) {
|
|
window.open(url, url,'width=300, height=300, toolbar=no, location=no, directories=no, status=no, menubar=no');
|
|
}
|
|
|
|
</script>
|
|
<?php
|
|
}
|
|
else {
|
|
// Fullscreen
|
|
echo "<h2>".__('Events')." » ".__('Main event view'). " ";
|
|
echo ui_print_help_icon ("eventview", true);
|
|
echo " ";
|
|
|
|
echo '<a target="_top" href="'.$url.'&pure=0">';
|
|
html_print_image ("images/normalscreen.png", false, array ("title" => __('Back to normal mode')));
|
|
echo '</a>';
|
|
echo "</h2>";
|
|
}
|
|
|
|
if (($section == 'validate') && ($ids[0] == -1)) {
|
|
$section = 'list';
|
|
ui_print_error_message (__('No events selected'));
|
|
}
|
|
|
|
//Process validation (pass array or single value)
|
|
if ($validate) {
|
|
$ids = get_parameter ("eventid", -1);
|
|
$comment = get_parameter ("comment", '');
|
|
$new_status = get_parameter ("select_validate", 1);
|
|
$ids = explode(',',$ids);
|
|
$standby_alert = (bool) get_parameter("standby-alert");
|
|
|
|
// Avoid to re-set inprocess events
|
|
if($new_status == 2) {
|
|
foreach($ids as $key => $id) {
|
|
$event = events_get_event($id);
|
|
if($event['estado'] == 2) {
|
|
unset($ids[$key]);
|
|
}
|
|
}
|
|
}
|
|
|
|
if(isset($ids[0]) && $ids[0] != -1){
|
|
$return = events_validate_event ($ids, ($group_rep == 1), $comment, $new_status);
|
|
if($new_status == 1) {
|
|
ui_print_result_message ($return,
|
|
__('Successfully validated'),
|
|
__('Could not be validated'));
|
|
}
|
|
else if($new_status == 2) {
|
|
ui_print_result_message ($return,
|
|
__('Successfully set in process'),
|
|
__('Could not be set in process'));
|
|
}
|
|
}
|
|
|
|
if ($standby_alert) {
|
|
foreach($ids as $id) {
|
|
$event = events_get_event ($id);
|
|
if ($event !== false) {
|
|
alerts_agent_module_standby ($event['id_alert_am'], 1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//Process deletion (pass array or single value)
|
|
if ($delete) {
|
|
$ids = (array) get_parameter ("eventid", -1);
|
|
|
|
if ($ids[0] != -1) {
|
|
$return = events_delete_event ($ids, ($group_rep == 1));
|
|
ui_print_result_message ($return,
|
|
__('Successfully deleted'),
|
|
__('Could not be deleted'));
|
|
}
|
|
require_once('operation/events/events_list.php');
|
|
}
|
|
else {
|
|
switch($section) {
|
|
case 'list':
|
|
require_once('operation/events/events_list.php');
|
|
break;
|
|
case 'validate':
|
|
require_once('operation/events/events_validate.php');
|
|
break;
|
|
}
|
|
}
|
|
|
|
ui_require_jquery_file ('bgiframe');
|
|
|
|
?>
|
|
<script language="javascript" type="text/javascript">
|
|
/* <![CDATA[ */
|
|
|
|
$(document).ready( function() {
|
|
$("#text_id_agent").autocomplete({
|
|
minLength: 2,
|
|
source: function( request, response ) {
|
|
var term = request.term; //Word to search
|
|
|
|
var data_params = {
|
|
"page": "godmode/agentes/agent_manager",
|
|
"search_parents_2": 1,
|
|
"q": term};
|
|
|
|
jQuery.ajax ({
|
|
data: data_params,
|
|
async: false,
|
|
type: "POST",
|
|
url: action="ajax.php",
|
|
timeout: 10000,
|
|
dataType: "json",
|
|
success: function (data) {
|
|
response(data);
|
|
return;
|
|
}
|
|
});
|
|
return;
|
|
},
|
|
select: function( event, ui ) {
|
|
var agent_name = ui.item.name;
|
|
|
|
//Put the name
|
|
$(this).val(agent_name);
|
|
|
|
return false;
|
|
}
|
|
})
|
|
.data( "autocomplete")._renderItem = function( ul, item ) {
|
|
if (item.ip == "") {
|
|
text = "<a>" + item.name + "</a>";
|
|
}
|
|
else {
|
|
text = "<a>" + item.name
|
|
+ "<br><span style=\"font-size: 70%; font-style: italic;\">IP:" + item.ip + "</span></a>";
|
|
}
|
|
|
|
return $("<li></li>")
|
|
.data("item.autocomplete", item)
|
|
.append(text)
|
|
.appendTo(ul);
|
|
};
|
|
//Force the size of autocomplete
|
|
$(".ui-autocomplete").css("max-height", "100px");
|
|
$(".ui-autocomplete").css("overflow-y", "auto");
|
|
/* prevent horizontal scrollbar */
|
|
$(".ui-autocomplete").css("overflow-x", "hidden");
|
|
/* add padding to account for vertical scrollbar */
|
|
$(".ui-autocomplete").css("padding-right", "20px");
|
|
|
|
//Force to style of items
|
|
$(".ui-autocomplete").css("text-align", "left");
|
|
|
|
$("input[name=allbox]").change (function() {
|
|
$("input[name='eventid[]']").attr('checked', $(this).attr('checked'));
|
|
});
|
|
|
|
|
|
$('#select_validate').change (function() {
|
|
$option = $('#select_validate').val();
|
|
if ($option == 2) {
|
|
$(".standby_alert_checkbox").css('display', '');
|
|
} else {
|
|
$(".standby_alert_checkbox").css('display', 'none');
|
|
}
|
|
});
|
|
|
|
$("#tgl_event_control").click (function () {
|
|
$("#event_control").toggle ();
|
|
// Trick to don't collapse filter if autorefresh button has been pushed
|
|
if ($("#hidden-toogle_filter").val() == 'true'){
|
|
$("#hidden-toogle_filter").val('false');
|
|
}
|
|
else{
|
|
$("#hidden-toogle_filter").val('true');
|
|
}
|
|
return false;
|
|
});
|
|
|
|
$("a.validate_event").click (function () {
|
|
$tr = $(this).parents ("tr");
|
|
|
|
id = this.id.split ("-").pop ();
|
|
var comment = $('#textarea_comment_'+id).val();
|
|
var select_validate = $('#select_validate_'+id).val(); // 1 validate, 2 in process, 3 add comment
|
|
var checkbox_standby_alert = $('#checkbox-standby-alert-'+id).attr('checked');
|
|
var similars = $('#group_rep').val();
|
|
|
|
if(!select_validate) {
|
|
select_validate = 1;
|
|
}
|
|
|
|
if(checkbox_standby_alert) {
|
|
jQuery.post ("ajax.php",
|
|
{"page" : "operation/events/events",
|
|
"standby_alert" : 1,
|
|
"id" : id
|
|
},
|
|
function (data, status) {
|
|
if (data != "ok") {
|
|
$("#result")
|
|
.showMessage ("<?php echo __('Could not set standby alert')?>")
|
|
.addClass ("error");
|
|
}
|
|
},
|
|
"html"
|
|
);
|
|
}
|
|
|
|
jQuery.post ("ajax.php",
|
|
{"page" : "operation/events/events",
|
|
"validate_event" : 1,
|
|
"id" : id,
|
|
"comment" : comment,
|
|
"new_status" : select_validate,
|
|
"similars" : similars
|
|
},
|
|
function (data, status) {
|
|
if (data == "ok") {
|
|
|
|
// Refresh interface elements, don't reload (awfull)
|
|
// Validate
|
|
if (select_validate == 1){
|
|
$("#status_img_"+id).attr ("src", "images/spinner.gif");
|
|
// Change status description
|
|
$("#status_row_"+id).html(<?php echo "'" . __('Event validated') . "'"; ?>);
|
|
|
|
// Get event comment
|
|
jQuery.post ("ajax.php",
|
|
{"page" : "operation/events/events",
|
|
"get_comment" : 1,
|
|
"id" : id
|
|
},
|
|
function (data, status) {
|
|
$("#comment_row_"+id).html(data);
|
|
});
|
|
|
|
// Get event comment in header
|
|
jQuery.post ("ajax.php",
|
|
{"page" : "operation/events/events",
|
|
"get_comment_header" : 1,
|
|
"id" : id
|
|
},
|
|
function (data, status) {
|
|
$("#comment_header_"+id).html(data);
|
|
});
|
|
|
|
// Change state image
|
|
$("#validate-"+id).css("display", "none");
|
|
$("#status_img_"+id).attr ("src", "images/tick.png");
|
|
$("#status_img_"+id).attr ("title", <?php echo "'" . __('Event validated') . "'"; ?>);
|
|
$("#status_img_"+id).attr ("alt", <?php echo "'" . __('Event validated') . "'"; ?>);
|
|
|
|
// Remove row due to new state
|
|
if (($("#status").val() == 2) || ($("#status").val() == 0) || ($("#status").val() == 3)){
|
|
|
|
$.each($tr, function(index, value){
|
|
row = value;
|
|
|
|
if ($(row).attr('id') != ''){
|
|
|
|
row_id_name = $(row).attr('id').split('-').shift();
|
|
row_id_number = $(row).attr('id').split('-').pop() - 1;
|
|
row_id_number_next = parseInt($(row).attr('id').split('-').pop()) + 1;
|
|
previous_row_id = $(row).attr('id');
|
|
current_row_id = row_id_name + "-" + row_id_number;
|
|
selected_row_id = row_id_name + "-" + row_id_number + "-0";
|
|
next_row_id = row_id_name + '-' + row_id_number_next;
|
|
|
|
$("#"+previous_row_id).css('display', 'none');
|
|
$("#"+current_row_id).css('display', 'none');
|
|
$("#"+selected_row_id).css('display', 'none');
|
|
$("#"+next_row_id).css('display', 'none');
|
|
}
|
|
});
|
|
}
|
|
|
|
} // In process
|
|
else if (select_validate == 2){
|
|
$("#status_img_"+id).attr ("src", "images/spinner.gif");
|
|
// Change status description
|
|
$("#status_row_"+id).html(<?php echo "'" . __('Event in process') . "'"; ?>);
|
|
|
|
// Get event comment
|
|
jQuery.post ("ajax.php",
|
|
{"page" : "operation/events/events",
|
|
"get_comment" : 1,
|
|
"id" : id
|
|
},
|
|
function (data, status) {
|
|
$("#comment_row_"+id).html(data);
|
|
});
|
|
|
|
// Get event comment in header
|
|
jQuery.post ("ajax.php",
|
|
{"page" : "operation/events/events",
|
|
"get_comment_header" : 1,
|
|
"id" : id
|
|
},
|
|
function (data, status) {
|
|
$("#comment_header_"+id).html(data);
|
|
});
|
|
|
|
// Remove delete link (if event is not grouped and there is more than one event)
|
|
if ($("#group_rep").val() == 1){
|
|
if (parseInt($("#count_event_group_"+id).text()) <= 1){
|
|
$("#delete-"+id).replaceWith('<img alt="' + <?php echo "'" . __('Is not allowed delete events in process') . "'"; ?> + '" title="' + <?php echo "'" . __('Is not allowed delete events in process') . "'"; ?> + '" src="images/cross.disabled.png">');
|
|
}
|
|
}
|
|
else{ // Remove delete link (if event is not grouped)
|
|
$("#delete-"+id).replaceWith('<img alt="' + <?php echo "'" . __('Is not allowed delete events in process') . "'"; ?> + '" title="' + <?php echo "'" . __('Is not allowed delete events in process') . "'"; ?> + '" src="images/cross.disabled.png">');
|
|
}
|
|
|
|
// Change state image
|
|
$("#status_img_"+id).attr ("src", "images/hourglass.png");
|
|
$("#status_img_"+id).attr ("title", <?php echo "'" . __('Event in process') . "'"; ?>);
|
|
$("#status_img_"+id).attr ("alt", <?php echo "'" . __('Event in process') . "'"; ?>);
|
|
|
|
// Remove row due to new state
|
|
if (($("#status").val() == 0) || ($("#status").val() == 1)){
|
|
|
|
$.each($tr, function(index, value){
|
|
row = value;
|
|
|
|
if ($(row).attr('id') != ''){
|
|
|
|
row_id_name = $(row).attr('id').split('-').shift();
|
|
row_id_number = $(row).attr('id').split('-').pop() - 1;
|
|
row_id_number_next = parseInt($(row).attr('id').split('-').pop()) + 1;
|
|
previous_row_id = $(row).attr('id');
|
|
current_row_id = row_id_name + "-" + row_id_number;
|
|
selected_row_id = row_id_name + "-" + row_id_number + "-0";
|
|
next_row_id = row_id_name + '-' + row_id_number_next;
|
|
|
|
$("#"+previous_row_id).css('display', 'none');
|
|
$("#"+current_row_id).css('display', 'none');
|
|
$("#"+selected_row_id).css('display', 'none');
|
|
$("#"+next_row_id).css('display', 'none');
|
|
}
|
|
});
|
|
|
|
}
|
|
} // Add comment
|
|
else if (select_validate == 3){
|
|
// Get event comment
|
|
jQuery.post ("ajax.php",
|
|
{"page" : "operation/events/events",
|
|
"get_comment" : 1,
|
|
"id" : id
|
|
},
|
|
function (data, status) {
|
|
$("#comment_row_"+id).html(data);
|
|
});
|
|
|
|
// Get event comment in header
|
|
jQuery.post ("ajax.php",
|
|
{"page" : "operation/events/events",
|
|
"get_comment_header" : 1,
|
|
"id" : id
|
|
},
|
|
function (data, status) {
|
|
$("#comment_header_"+id).html(data);
|
|
});
|
|
}
|
|
|
|
//location.reload();
|
|
} else {
|
|
$("#result")
|
|
.showMessage ("<?php echo __('Could not be validated')?>")
|
|
.addClass ("error");
|
|
}
|
|
},
|
|
"html"
|
|
);
|
|
//toggleCommentForm(id);
|
|
});
|
|
|
|
$("a.delete_event").click (function () {
|
|
confirmation = confirm("<?php echo __('Are you sure?'); ?>");
|
|
if (!confirmation){
|
|
return;
|
|
}
|
|
$tr = $(this).parents ("tr");
|
|
id = this.id.split ("-").pop ();
|
|
jQuery.post ("ajax.php",
|
|
{"page" : "operation/events/events",
|
|
"delete_event" : 1,
|
|
"id" : id,
|
|
"similars" : <?php echo ($group_rep ? 1 : 0) ?>
|
|
},
|
|
function (data, status) {
|
|
if (data == "ok")
|
|
$tr.remove ();
|
|
else
|
|
$("#result")
|
|
.showMessage ("<?php echo __('Could not be deleted')?>")
|
|
.addClass ("error");
|
|
},
|
|
"html"
|
|
);
|
|
return false;
|
|
});
|
|
|
|
function toggleDiv (divid){
|
|
if (document.getElementById(divid).style.display == 'none'){
|
|
document.getElementById(divid).style.display = 'block';
|
|
} else {
|
|
document.getElementById(divid).style.display = 'none';
|
|
}
|
|
}
|
|
|
|
});
|
|
/* ]]> */
|
|
|
|
function toggleCommentForm(id_event) {
|
|
display = $('.event_form_' + id_event).css('display');
|
|
|
|
$('#select_validate_' + id_event).change (function() {
|
|
$option = $('#select_validate_' + id_event).val();
|
|
if ($option == 2) {
|
|
$("#standby_alert_checkbox_" + id_event).css('display', '');
|
|
} else {
|
|
$("#standby_alert_checkbox_" + id_event).css('display', 'none');
|
|
}
|
|
});
|
|
|
|
if (display != 'none') {
|
|
$('.event_form_' + id_event).css('display', 'none');
|
|
// Hide All showed rows
|
|
$('.event_form').css('display', 'none');
|
|
$(".standby_alert_checkbox").css('display', 'none');
|
|
$(".select_validate").find('option:first').attr('selected', 'selected').parent('select');
|
|
}
|
|
else {
|
|
$('.event_form_' + id_event).css('display', '');
|
|
}
|
|
}
|
|
|
|
function toggleVisibleExtendedInfo(id_event) {
|
|
display = $('.event_info_' + id_event).css('display');
|
|
|
|
if (display != 'none') {
|
|
$('.event_info_' + id_event).css('display', 'none');
|
|
}
|
|
else {
|
|
$('.event_info_' + id_event).css('display', '');
|
|
}
|
|
}
|
|
</script>
|