2006-07-19 20:29:12 +02:00
< ? php
2008-08-22 20:07:32 +02:00
2009-06-08 20:17:33 +02:00
// Pandora FMS - http://pandorafms.com
// ==================================================
2010-06-08 20:34:34 +02:00
// Copyright (c) 2005-2010 Artica Soluciones Tecnologicas
2009-02-17 21:39:42 +01:00
// Please see http://pandorafms.org for full contribution list
2006-07-19 20:29:12 +02:00
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
2008-04-01 15:53:11 +02:00
// as published by the Free Software Foundation for version 2.
2006-07-19 20:29:12 +02:00
// 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
2010-03-02 20:25:51 +01:00
global $config ;
2019-01-30 16:18:44 +01:00
require_once $config [ 'homedir' ] . '/include/functions_events.php' ;
// Event processing functions
require_once $config [ 'homedir' ] . '/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 , 'ER' ) && ! check_acl ( $config [ 'id_user' ], 0 , 'EW' ) && ! check_acl ( $config [ 'id_user' ], 0 , 'EM' )) {
db_pandora_audit (
'ACL Violation' ,
'Trying to access event viewer'
);
include 'general/noaccess.php' ;
return ;
2007-02-05 18:45:14 +01:00
}
2013-01-16 13:57:11 +01:00
// Set metaconsole mode
2012-12-18 12:54:22 +01:00
$meta = false ;
2019-01-30 16:18:44 +01:00
if ( enterprise_installed () && defined ( 'METACONSOLE' )) {
$meta = true ;
2012-12-18 12:54:22 +01:00
}
2013-01-16 13:57:11 +01:00
// Get the history mode
$history = ( bool ) get_parameter ( 'history' , 0 );
2013-04-16 12:10:44 +02:00
$readonly = false ;
2013-04-23 13:22:06 +02:00
if ( ! $meta ) {
2019-01-30 16:18:44 +01:00
if ( isset ( $config [ 'event_replication' ])
&& $config [ 'event_replication' ] == 1
) {
if (( bool ) $config [ 'show_events_in_local' ]) {
$readonly = true ;
}
}
2012-12-14 09:26:50 +01:00
}
2015-03-18 17:57:04 +01:00
2019-01-30 16:18:44 +01:00
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' );
$meta = get_parameter ( 'meta' , 0 );
$history = get_parameter ( 'history' , 0 );
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' );
} else if ( $event [ 'id_agente' ] > 0 ) {
// Agent name
echo agents_get_alias ( $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 ( $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_change_status ( $id , $new_status , $meta );
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 , $meta , $history );
if ( $return ) {
echo 'ok' ;
} else {
echo 'error' ;
}
return ;
}
if ( $get_events_fired ) {
$id = get_parameter ( 'id_row' );
$idGroup = get_parameter ( 'id_group' );
$agents = get_parameter ( 'agents' , null );
$query = ' AND id_evento > ' . $id ;
$type = [];
$alert = get_parameter ( 'alert_fired' );
if ( $alert == 'true' ) {
$resultAlert = alerts_get_event_status_group (
$idGroup ,
[
'alert_fired' ,
'alert_ceased' ,
],
$query ,
$agents
);
}
$critical = get_parameter ( 'critical' );
if ( $critical == 'true' ) {
$resultCritical = alerts_get_event_status_group (
$idGroup ,
'going_up_critical' ,
$query ,
$agents
);
}
$warning = get_parameter ( 'warning' );
if ( $warning == 'true' ) {
$resultWarning = alerts_get_event_status_group (
$idGroup ,
'going_up_warning' ,
$query ,
$agents
);
}
$unknown = get_parameter ( 'unknown' );
if ( $unknown == 'true' ) {
$resultUnknown = alerts_get_event_status_group (
$idGroup ,
'going_unknown' ,
$query ,
$agents
);
}
if ( $resultAlert ) {
$return = [
'fired' => $resultAlert ,
'sound' => $config [ 'sound_alert' ],
];
$event = events_get_event ( $resultAlert );
$module_name = modules_get_agentmodule_name ( $event [ 'id_agentmodule' ]);
$agent_name = agents_get_alias ( $event [ 'id_agente' ]);
$return [ 'message' ] = io_safe_output ( $agent_name ) . ' - ' . __ ( 'Alert fired in module ' ) . io_safe_output ( $module_name ) . ' - ' . $event [ 'timestamp' ];
} else if ( $resultCritical ) {
$return = [
'fired' => $resultCritical ,
'sound' => $config [ 'sound_critical' ],
];
$event = events_get_event ( $resultCritical );
$module_name = modules_get_agentmodule_name ( $event [ 'id_agentmodule' ]);
$agent_name = agents_get_alias ( $event [ 'id_agente' ]);
$return [ 'message' ] = io_safe_output ( $agent_name ) . ' - ' . __ ( 'Module ' ) . io_safe_output ( $module_name ) . __ ( ' is going to critical' ) . ' - ' . $event [ 'timestamp' ];
} else if ( $resultWarning ) {
$return = [
'fired' => $resultWarning ,
'sound' => $config [ 'sound_warning' ],
];
$event = events_get_event ( $resultWarning );
$module_name = modules_get_agentmodule_name ( $event [ 'id_agentmodule' ]);
$agent_name = agents_get_alias ( $event [ 'id_agente' ]);
$return [ 'message' ] = io_safe_output ( $agent_name ) . ' - ' . __ ( 'Module ' ) . io_safe_output ( $module_name ) . __ ( ' is going to warning' ) . ' - ' . $event [ 'timestamp' ];
} else if ( $resultUnknown ) {
$return = [
'fired' => $resultUnknown ,
'sound' => $config [ 'sound_alert' ],
];
$event = events_get_event ( $resultUnknown );
$module_name = modules_get_agentmodule_name ( $event [ 'id_agentmodule' ]);
$agent_name = agents_get_alias ( $event [ 'id_agente' ]);
$return [ 'message' ] = io_safe_output ( $agent_name ) . ' - ' . __ ( 'Module ' ) . io_safe_output ( $module_name ) . __ ( ' is going to unknown' ) . ' - ' . $event [ 'timestamp' ];
} else {
$return = [ 'fired' => 0 ];
}
echo io_json_mb_encode ( $return );
}
return ;
2009-02-27 13:48:05 +01:00
}
2015-03-18 17:57:04 +01:00
enterprise_hook ( 'open_meta_frame' );
if ( ! $meta ) {
2019-01-30 16:18:44 +01:00
if ( isset ( $config [ 'event_replication' ])
&& $config [ 'event_replication' ] == 1
) {
if ( $config [ 'show_events_in_local' ] == 0 ) {
db_pandora_audit (
'ACL Violation' ,
'Trying to access event viewer. View disabled due event replication.'
);
ui_print_info_message ([ 'message' => __ ( 'Event viewer is disabled due event replication. For more information, please contact with the administrator' ), 'no_close' => true ]);
return ;
} else {
$readonly = true ;
}
}
2015-03-18 17:57:04 +01:00
}
2012-06-15 12:46:40 +02:00
2019-01-30 16:18:44 +01:00
$offset = ( int ) get_parameter ( 'offset' , 0 );
$id_group = ( int ) get_parameter ( 'id_group' , 0 );
// 0 all
// **********************************************************************
2013-10-14 17:36:50 +02:00
// TODO
// This code is disabled for to enabled in Pandora 5.1
// but it needs a field in tevent_filter.
//
2019-01-30 16:18:44 +01:00
// $recursion = (bool)get_parameter('recursion', false); //Flag show in child groups
// **********************************************************************
$recursion = ( bool ) get_parameter ( 'recursion' , true );
// Flag show in child groups
$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' , 0 );
$pagination = ( int ) get_parameter ( 'pagination' , $config [ 'block_size' ]);
$event_view_hr = ( int ) get_parameter ( 'event_view_hr' , $history ? 0 : $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' );
2012-02-08 14:04:18 +01:00
$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' , '' );
2013-03-01 14:22:29 +01:00
$open_filter = ( int ) get_parameter ( 'open_filter' , 0 );
2019-01-30 16:18:44 +01:00
$date_from = ( string ) get_parameter ( 'date_from' , '' );
$date_to = ( string ) get_parameter ( 'date_to' , '' );
$time_from = ( string ) get_parameter ( 'time_from' , '' );
$time_to = ( string ) get_parameter ( 'time_to' , '' );
$server_id = ( int ) get_parameter ( 'server_id' , 0 );
$text_agent = ( string ) get_parameter ( 'text_agent' );
$refr = ( int ) get_parameter ( 'refresh' );
2018-08-31 16:25:12 +02:00
$id_extra = ( string ) get_parameter ( 'id_extra' );
$user_comment = ( string ) get_parameter ( 'user_comment' );
$source = ( string ) get_parameter ( 'source' );
2015-05-22 15:00:06 +02:00
2014-10-07 16:33:54 +02:00
if ( $id_agent != 0 ) {
2019-01-30 16:18:44 +01:00
$text_agent = agents_get_alias ( $id_agent );
if ( $text_agent == false ) {
$text_agent = '' ;
$id_agent = 0 ;
}
2016-03-08 13:47:47 +01:00
} else {
2019-01-30 16:18:44 +01:00
if ( ! $meta ) {
$text_agent = '' ;
}
2014-10-07 16:33:54 +02:00
}
$text_module = ( string ) get_parameter ( 'module_search' , '' );
2019-01-30 16:18:44 +01:00
$id_agent_module = get_parameter ( 'module_search_hidden' , get_parameter ( 'id_agent_module' , 0 ));
2014-10-07 16:33:54 +02:00
if ( $id_agent_module != 0 ) {
2019-01-30 16:18:44 +01:00
$text_module = db_get_value ( 'nombre' , 'tagente_modulo' , 'id_agente_modulo' , $id_agent_module );
if ( $text_module == false ) {
$text_module = '' ;
}
2016-03-08 13:47:47 +01:00
} else {
2019-01-30 16:18:44 +01:00
$text_module = '' ;
2014-10-07 16:33:54 +02:00
}
2013-01-18 10:56:46 +01:00
2015-05-22 13:10:05 +02:00
2019-01-30 16:18:44 +01:00
$tag_with_json = base64_decode ( get_parameter ( 'tag_with' , '' ));
2013-01-18 10:56:46 +01:00
$tag_with_json_clean = io_safe_output ( $tag_with_json );
$tag_with_base64 = base64_encode ( $tag_with_json_clean );
$tag_with = json_decode ( $tag_with_json_clean , true );
2019-01-30 16:18:44 +01:00
if ( empty ( $tag_with )) {
$tag_with = [];
}
2013-01-18 10:56:46 +01:00
2019-01-30 16:18:44 +01:00
$tag_with = array_diff ( $tag_with , [ 0 => 0 ]);
$tag_without_json = base64_decode ( get_parameter ( 'tag_without' , '' ));
2013-01-18 10:56:46 +01:00
$tag_without_json_clean = io_safe_output ( $tag_without_json );
$tag_without_base64 = base64_encode ( $tag_without_json_clean );
$tag_without = json_decode ( $tag_without_json_clean , true );
2019-01-30 16:18:44 +01:00
if ( empty ( $tag_without )) {
$tag_without = [];
}
$tag_without = array_diff ( $tag_without , [ 0 => 0 ]);
$search = get_parameter ( 'search' );
users_get_groups ( $config [ 'id_user' ], 'ER' );
$ids = ( array ) get_parameter ( 'eventid' , - 1 );
$params = 'search=' . io_safe_input ( $search ) . '&event_type=' . $event_type . '&severity=' . $severity . '&status=' . $status . '&id_group=' . $id_group . '&recursion=' . $recursion . '&refresh=' . ( int ) get_parameter ( 'refresh' , 0 ) . '&id_agent=' . $id_agent . '&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 . '&time_from=' . $time_from . '&time_to=' . $time_to ;
2012-11-05 13:52:26 +01:00
2013-04-23 13:22:06 +02:00
if ( $meta ) {
2019-01-30 16:18:44 +01:00
$params .= '&text_agent=' . $text_agent ;
$params .= '&server_id=' . $server_id ;
2013-01-18 10:56:46 +01:00
}
2019-01-30 16:18:44 +01:00
$url = 'index.php?sec=eventos&sec2=operation/events/events&' . $params ;
2013-01-31 Miguel de Dios <miguel.dedios@artica.es>
* include/styles/jquery-ui-1.10.0.custom.css,
include/styles/images/ui-*,
include/javascript/jquery.jquery-ui-1.10.0.custom.js,
include/javascript/jquery-1.9.0.js: added the last version of
jquery and jqueryUI.
* godmode/reporting/visual_console_builder.editor.js,
include/ajax/events.php, include/functions_events.php,
include/functions_reporting.php,
include/javascript/pandora_events.js,
include/javascript/jquery.scrollTo.js,
include/javascript/jquery.tablesorter.pager.js,
include/javascript/jquery.tablesorter.js, include/functions_ui.php,
extensions/update_manager/lib/functions.php,
extensions/update_manager/main.php, extensions/agents_alerts.php,
operation/events/events.php, general/login_page.php,
general/logoff.php, general/header.php,
general/login_help_dialog.php: fixes about the new jquery and
jqueryUI version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7554 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-31 17:49:08 +01:00
2015-05-22 13:10:05 +02:00
2010-02-19 Sancho Lerena <slerena@artica.es>
* functions_events.php: Fixed typo (switched meaning) in two labels.
* include/styles/pandora.css: Changed background color of th default style.
* include/functions_reporting.php: Improved function get_group_stats(). Now
supports stats from batch-mode and get realtime stats in a more efficient
way. Fixed get_fired_alerts_reporting_table() to avoid problems in external
reporting (PDF & XML).
* include/functions_servers.php: get_server_performance() now uses batch mode
stats reporting, and improved also the realtime stats generation. Same with
function get_server_info().
* include/functions_config.php: Added new config tokens (not fully
implemented yet) for event, trap, strings and audit automatic purge.
* include/functions_ui.php: Added new print_page_header() function to set
the new standard header in all pages, using the "tabbed" format to show
the title, subtitle and other options like help, or custom-tabs for the page
* pandoradb.sql: Added tserver.stat_utimestamp field. Added indexes to
tsession table. Fixed typo in field name in tgroup_stat: agents_uknown to
agents_unknown.
* extensions/ext_backup: New directory to place "deleted" extensions.
* extensions/dbmanager/dbmanager.css: Table names now are in it's original
lowercase/uppercase format.
* extensions/dbmanager.php: Updated headers, and now return "empty" when
a search is empty, instead "error" as before.
* extensions/users_connected.php
extensions/module_groups.php
extensions/plugin_registration.php
extensions/pandora_logs.php
operation/incidents/incident.php
operation/snmpconsole/snmp_view.php
operation/users/user.php
operation/users/user_edit.php
godmode/agentes/planned_downtime.php
operation/events/events.php
operation/visual_console/index.php
operation/agentes/estado_generalagente.php
operation/agentes/estado_agente.php
operation/agentes/exportdata.php
operation/agentes/ver_agente.php
operation/agentes/status_monitor.php
operation/agentes/alerts_status.php
operation/users/user_statistics.php: Added new header format.
* operation/agentes/estado_grupo.php: Removed old group view.
* operation/agentes/tactical.php: Adapted to use new realtime/batch
statistical system. Placed events above server info. Showing only pending
events and other minor changes.
* operation/agentes/group_view.php: NEW screen, replacing old one. Probably
most ugly, but much more useful than before.
* operation/agentes/networkmap.php: Added title.
* operation/messages/message.php: Added title and adding some exists in
code was missing before.
* operation/reporting/reporting_viewer.php: Added title.
* operation/reporting/graph_viewer.php: Added title.
* operation/reporting/custom_reporting.php: Added title.
* operation/servers/view_server.php:
* operation/menu.php: Replaced old group view with new (this has english
name). Removed autorefresh "by default" in server view.
* extras/pandoradb_migrate_v3.0_to_v3.1.sql: Fixed typo.
* extras/pandora_diag.php: Minor changes, removed some info and added other.
* general/logon_ok.php: Minor aesthetic changes.
* general/header.php: Fixed missing ";"
* operation/extensions.php,
godmode/extensions.php: Added support for delete extensions.
* godmode/menu.php: New setup items.
* godmode/setup/setup.php,
godmode/setup/performance.php,
godmode/setup/setup_visuals.php: Reordered setup options, new setup section
"Performance", added new performance options to set "realtime" statistics
or "batchmode" with it's own interval. Some setup info is now shared with
the servers (but it it's any change in setup, servers should be restarted
anyway).
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2390 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-02-19 16:16:03 +01:00
// Header
2019-01-30 16:18:44 +01:00
if ( $config [ 'pure' ] == 0 || $meta ) {
$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/full_screen.png' , true , [ 'title' => __ ( 'Full screen' )]) . '</a>' ;
// Event list
$list [ 'active' ] = false ;
$list [ 'text' ] = '<a href="index.php?sec=eventos&sec2=operation/events/events&pure=' . $config [ 'pure' ] . '">' . html_print_image ( 'images/events_list.png' , true , [ 'title' => __ ( 'Event list' )]) . '</a>' ;
// History event list
$history_list [ 'active' ] = false ;
$history_list [ 'text' ] = '<a href="index.php?sec=eventos&sec2=operation/events/events&pure=' . $config [ 'pure' ] . '&section=history&history=1">' . html_print_image ( 'images/books.png' , true , [ 'title' => __ ( 'History event list' )]) . '</a>' ;
// RSS
$rss [ 'active' ] = false ;
$rss [ 'text' ] = '<a href="operation/events/events_rss.php?user=' . $config [ 'id_user' ] . '&hashup=' . $hashup . '&' . $params . '">' . html_print_image ( 'images/rss.png' , true , [ 'title' => __ ( 'RSS Events' )]) . '</a>' ;
// Marquee
$marquee [ 'active' ] = false ;
$marquee [ 'text' ] = '<a href="operation/events/events_marquee.php">' . html_print_image ( 'images/heart.png' , true , [ 'title' => __ ( 'Marquee display' )]) . '</a>' ;
// CSV
$csv [ 'active' ] = false ;
$csv [ 'text' ] = '<a href="operation/events/export_csv.php?' . $params . '">' . html_print_image ( 'images/csv_mc.png' , true , [ 'title' => __ ( 'Export to CSV file' )]) . '</a>' ;
// Sound events
$sound_event [ 'active' ] = false ;
$sound_event [ 'text' ] = '<a href="javascript: openSoundEventWindow();">' . html_print_image ( 'images/sound.png' , true , [ 'title' => __ ( 'Sound events' )]) . '</a>' ;
// If the user has administrator permission display manage tab
if ( check_acl ( $config [ 'id_user' ], 0 , 'EW' ) || check_acl ( $config [ 'id_user' ], 0 , 'EM' )) {
// Manage events
$manage_events [ 'active' ] = false ;
$manage_events [ 'text' ] = '<a href="index.php?sec=eventos&sec2=godmode/events/events&section=filter&pure=' . $config [ 'pure' ] . '">' . html_print_image ( 'images/setup.png' , true , [ 'title' => __ ( 'Manage events' )]) . '</a>' ;
$manage_events [ 'godmode' ] = true ;
$onheader = [
'manage_events' => $manage_events ,
'fullscreen' => $fullscreen ,
'list' => $list ,
'history' => $history_list ,
'rss' => $rss ,
'marquee' => $marquee ,
'csv' => $csv ,
'sound_event' => $sound_event ,
];
} else {
$onheader = [
'fullscreen' => $fullscreen ,
'list' => $list ,
'history' => $history_list ,
'rss' => $rss ,
'marquee' => $marquee ,
'csv' => $csv ,
'sound_event' => $sound_event ,
];
}
// If the history event is not ebabled, dont show the history tab
if ( ! isset ( $config [ 'metaconsole_events_history' ]) || $config [ 'metaconsole_events_history' ] != 1 ) {
unset ( $onheader [ 'history' ]);
}
switch ( $section ) {
case 'sound_event' :
$onheader [ 'sound_event' ][ 'active' ] = true ;
$section_string = __ ( 'Sound events' );
break ;
case 'history' :
$onheader [ 'history' ][ 'active' ] = true ;
$section_string = __ ( 'History' );
break ;
default :
$onheader [ 'list' ][ 'active' ] = true ;
$section_string = __ ( 'List' );
break ;
}
/*
Hello there ! : )
We added some of what seems to be " buggy " messages to the openSource version recently . This is not to force open - source users to move to the enterprise version , this is just to inform people using Pandora FMS open source that it requires skilled people to maintain and keep it running smoothly without professional support . This does not imply open - source version is limited in any way . If you check the recently added code , it contains only warnings and messages , no limitations except one : we removed the option to add custom logo in header . In the Update Manager section , it warns about the 'danger’ of applying automated updates without a proper backup, remembering in the process that the Enterprise version comes with a human-tested package. Maintaining an OpenSource version with more than 500 agents is not so easy, that' s why someone using a Pandora with 8000 agents should consider asking for support . It ' s not a joke , we know of many setups with a huge number of agents , and we hate to hear that “its becoming unstable and slow” : (
You can of course remove the warnings , that 's why we include the source and do not use any kind of trick. And that' s why we added here this comment , to let you know this does not reflect any change in our opensource mentality of does the last 14 years .
*/
if ( ! defined ( 'METACONSOLE' )) {
unset ( $onheader [ 'history' ]);
ui_print_page_header (
__ ( 'Events' ),
'images/op_events.png' ,
false ,
'eventview' ,
false ,
$onheader ,
true ,
'eventsmodal'
);
} else {
unset ( $onheader [ 'rss' ]);
unset ( $onheader [ 'marquee' ]);
unset ( $onheader [ 'csv' ]);
unset ( $onheader [ 'sound_event' ]);
unset ( $onheader [ 'fullscreen' ]);
ui_meta_print_header ( __ ( 'Events' ), $section_string , $onheader );
}
?>
< script type = " text/javascript " >
function openSoundEventWindow () {
2019-02-01 09:55:29 +01:00
url = " <?php echo ui_get_full_url('operation/events/sound_events.php'); ?> " ;
2019-01-30 16:18:44 +01:00
window . open ( url , '<?php __(' Sound Alerts '); ?>' , 'width=600, height=450, toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=no' );
}
</ script >
< ? php
} else {
// Fullscreen
// Floating menu - Start
echo '<div id="vc-controls" style="z-index: 999">' ;
echo '<div id="menu_tab">' ;
echo '<ul class="mn">' ;
// Quit fullscreen
echo '<li class="nomn">' ;
echo '<a target="_top" href="' . $url . '&pure=0">' ;
echo html_print_image ( 'images/normal_screen.png' , true , [ 'title' => __ ( 'Back to normal mode' )]);
echo '</a>' ;
echo '</li>' ;
// Countdown
echo '<li class="nomn">' ;
echo '<div class="vc-refr">' ;
echo '<div class="vc-countdown"></div>' ;
echo '<div id="vc-refr-form">' ;
echo __ ( 'Refresh' ) . ':' ;
echo html_print_select ( get_refresh_time_array (), 'refresh' , $refr , '' , '' , 0 , true , false , false );
echo '</div>' ;
echo '</div>' ;
echo '</li>' ;
// Console name
echo '<li class="nomn">' ;
echo '<div class="vc-title">' . __ ( 'Event viewer' ) . '</div>' ;
echo '</li>' ;
echo '</ul>' ;
echo '</div>' ;
echo '</div>' ;
// Floating menu - End
ui_require_jquery_file ( 'countdown' );
2008-07-25 20:37:32 +02:00
}
2007-02-05 18:45:14 +01:00
2012-06-15 12:46:40 +02:00
// Error div for ajax messages
echo " <div id='show_message_error'> " ;
2019-01-30 16:18:44 +01:00
echo '</div>' ;
2012-06-15 12:46:40 +02:00
2010-09-21 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php: in function "print_select_groups" and function
"print_select_from_sql" added source code to check $config['text_char_long']
for show small text in this widgets.
* include/functions.php: in function "get_event_types" and "get_priorities"
added source code to check $config['text_char_long'] for show small text in
this widgets. And in function "get_priority_class" cleaned source code.
* operation/agentes/status_monitor.php, operation/events/events.php: cleaned
source code style.
* images/pandora.ico.gif: added image file for to use in the mobile footer.
* mobile/operation/agents/monitor_status.php,
mobile/operation/agents/view_agents.php,
mobile/operation/agents/tactical.php,
mobile/operation/agents/group_view.php, mobile/operation/events/events.php,
mobile/include/style/main.css, mobile/include/functions_web.php,
mobile/index.php, general/footer.php: continued the develop, yep the
Pandora Console Mobile is complete (only rest the bugs).
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3269 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-21 20:02:11 +02:00
if (( $section == 'validate' ) && ( $ids [ 0 ] == - 1 )) {
2019-01-30 16:18:44 +01:00
$section = 'list' ;
ui_print_error_message ( __ ( 'No events selected' ));
2010-09-17 14:34:11 +02:00
}
2019-01-30 16:18:44 +01:00
// Process validation (pass array or single value)
2010-05-03 09:39:11 +02:00
if ( $validate ) {
2019-01-30 16:18:44 +01:00
$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_change_status ( $ids , $new_status , $meta );
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' )
);
}
}
2010-05-03 09:39:11 +02:00
}
2019-01-30 16:18:44 +01:00
// Process deletion (pass array or single value)
2010-05-03 09:39:11 +02:00
if ( $delete ) {
2019-01-30 16:18:44 +01:00
$ids = ( array ) get_parameter ( 'validate_ids' , - 1 );
// Discard deleting in progress events
$in_process_status = db_get_all_rows_sql (
'
2019-01-15 13:27:14 +01:00
SELECT id_evento
FROM tevento
2019-01-30 16:18:44 +01:00
WHERE estado = 2 '
);
foreach ( $in_process_status as $val ) {
if (( $key = array_search ( $val [ 'id_evento' ], $ids )) !== false ) {
unset ( $ids [ $key ]);
}
}
if ( $ids [ 0 ] != - 1 ) {
$return = events_delete_event ( $ids , ( $group_rep == 1 ), $meta );
ui_print_result_message (
$return ,
__ ( 'Successfully deleted' ),
__ ( 'Could not be deleted' )
);
}
include_once $config [ 'homedir' ] . '/operation/events/events_list.php' ;
} else {
switch ( $section ) {
case 'list' :
case 'history' :
include_once $config [ 'homedir' ] . '/operation/events/events_list.php' ;
break ;
}
2009-02-20 22:48:09 +01:00
}
2009-11-18 19:10:41 +01:00
2012-10-09 18:05:32 +02:00
echo " <div id='event_details_window'></div> " ;
echo " <div id='event_response_window'></div> " ;
2019-01-30 16:18:44 +01:00
ui_require_jquery_file ( 'bgiframe' );
2012-10-01 13:15:31 +02:00
ui_require_javascript_file ( 'pandora_events' );
2015-03-06 12:28:05 +01:00
enterprise_hook ( 'close_meta_frame' );
2017-04-07 12:08:42 +02:00
ui_require_javascript_file ( 'wz_jsgraphics' );
ui_require_javascript_file ( 'pandora_visual_console' );
2019-01-30 16:18:44 +01:00
$ignored_params [ 'refresh' ] = '' ;
2007-09-27 17:12:49 +02:00
?>
2009-02-20 22:48:09 +01:00
< script language = " javascript " type = " text/javascript " >
2009-04-01 10:04:49 +02:00
/* <![CDATA[ */
2009-11-18 19:10:41 +01:00
2009-04-01 10:04:49 +02:00
$ ( document ) . ready ( function () {
2019-01-30 16:18:44 +01:00
var refr = < ? php echo ( int ) $refr ; ?> ;
var pure = < ? php echo ( int ) $config [ 'pure' ]; ?> ;
var href = " <?php echo ui_get_url_refresh( $ignored_params ); ?> " ;
// alert($(location).attr('href'));
if ( pure ) {
var startCountDown = function ( duration , cb ) {
$ ( 'div.vc-countdown' ) . countdown ( 'destroy' );
if ( ! duration ) return ;
var t = new Date ();
t . setTime ( t . getTime () + duration * 1000 );
$ ( 'div.vc-countdown' ) . countdown ({
until : t ,
format : 'MS' ,
layout : '(%M%nn%M:%S%nn%S <?php echo __(' Until refresh '); ?>) ' ,
alwaysExpire : true ,
onExpiry : function () {
$ ( 'div.vc-countdown' ) . countdown ( 'destroy' );
//cb();
url = js_html_entity_decode ( href ) + duration ;
$ ( document ) . attr ( " location " , url );
}
});
}
startCountDown ( refr , false );
//~ // Auto hide controls
var controls = document . getElementById ( 'vc-controls' );
autoHideElement ( controls , 1000 );
$ ( 'select#refresh' ) . change ( function ( event ) {
refr = Number . parseInt ( event . target . value , 10 );
startCountDown ( refr , false );
});
}
else {
$ ( '#refresh' ) . change ( function () {
$ ( '#hidden-vc_refr' ) . val ( $ ( '#refresh option:selected' ) . val ());
});
}
$ ( " input[name=all_validate_box] " ) . change ( function () {
if ( $ ( this ) . is ( " :checked " )) {
$ ( " input[name='validate_ids[]'] " ) . check ();
}
else {
$ ( " input[name='validate_ids[]'] " ) . uncheck ();
}
$ ( " input[name='validate_ids[]'] " ) . trigger ( 'change' );
});
// If some of the checkbox checked cahnnot be deleted disable the delete button
$ ( " input[name='validate_ids[]'] " ) . change ( function () {
var canDeleted = 1 ;
$ ( " input[name='validate_ids[]'] " ) . each ( function () {
if ( $ ( this ) . attr ( 'checked' ) == 'checked' ) {
var classs = $ ( this ) . attr ( 'class' );
classs = classs . split ( ' ' );
if ( classs [ 0 ] != 'candeleted' ) {
canDeleted = 0 ;
}
}
});
if ( canDeleted == 0 ) {
$ ( '#button-delete_button' ) . attr ( 'disabled' , 'disabled' );
}
else {
$ ( '#button-delete_button' ) . removeAttr ( 'disabled' );
}
});
$ ( '#select_validate' ) . change ( function () {
$option = $ ( '#select_validate' ) . val ();
});
$ ( " #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 similars = $ ( '#group_rep' ) . val ();
if ( ! select_validate ) {
select_validate = 1 ;
}
jQuery . post ( " <?php echo ui_get_full_url('ajax.php', false, false, false); ?> " ,
{
" 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 ( " <?php echo ui_get_full_url('ajax.php', false, false, false); ?> " ,
{
" page " : " operation/events/events " ,
" get_comment " : 1 ,
" id " : id
},
function ( data , status ) {
$ ( " #comment_row_ " + id ) . html ( data );
}
);
// Get event comment in header
jQuery . post ( " <?php echo ui_get_full_url('ajax.php', false, false, false); ?> " ,
{
" 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 ( " <?php echo ui_get_full_url('ajax.php', false, false, false); ?> " ,
{
" page " : " operation/events/events " ,
" get_comment " : 1 ,
" id " : id
},
function ( data , status ) {
$ ( " #comment_row_ " + id ) . html ( data );
}
);
// Get event comment in header
jQuery . post ( " <?php echo ui_get_full_url('ajax.php', false, false, false); ?> " ,
{
" 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 ( " <?php echo ui_get_full_url('ajax.php', false, false, false); ?> " ,
{ " page " : " operation/events/events " ,
" get_comment " : 1 ,
" id " : id
},
function ( data , status ) {
$ ( " #comment_row_ " + id ) . html ( data );
});
// Get event comment in header
jQuery . post ( " <?php echo ui_get_full_url('ajax.php', false, false, false); ?> " ,
{ " 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 "
);
});
$ ( " td " ) . on ( 'click' , 'a.delete_event' , function () {
var click_element = this ;
display_confirm_dialog (
" <?php echo __('Are you sure?'); ?> " ,
" <?php echo __('Confirm'); ?> " ,
" <?php echo __('Cancel'); ?> " ,
function () {
meta = $ ( '#hidden-meta' ) . val ();
history_var = $ ( '#hidden-history' ) . val ();
$tr = $ ( click_element ) . parents ( " tr " );
id = click_element . id . split ( " - " ) . pop ();
$ ( " #delete_cross_ " + id ) . attr ( " src " , " images/spinner.gif " );
jQuery . post ( " <?php echo ui_get_full_url('ajax.php', false, false, false); ?> " ,
{ " page " : " operation/events/events " ,
" delete_event " : 1 ,
" id " : id ,
" similars " : < ? php echo $group_rep ? 1 : 0 ; ?> ,
" meta " : meta ,
" history " : history_var
},
function ( data , status ) {
if ( data == " ok " ) {
$tr . remove ();
$ ( '#show_message_error' ) . html ( '<h3 class="suc"> <?php echo __(' Successfully delete '); ?> </h3>' );
}
else
$ ( '#show_message_error' ) . html ( '<h3 class="error"> <?php echo __(' Error deleting event '); ?> </h3>' );
},
" 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' ;
}
}
2009-04-01 10:04:49 +02:00
});
2013-10-14 17:36:50 +02:00
function toggleCommentForm ( id_event ) {
2019-01-30 16:18:44 +01:00
display = $ ( '.event_form_' + id_event ) . css ( 'display' );
$ ( '#select_validate_' + id_event ) . change ( function () {
$option = $ ( '#select_validate_' + id_event ) . val ();
});
if ( display != 'none' ) {
$ ( '.event_form_' + id_event ) . css ( 'display' , 'none' );
// Hide All showed rows
$ ( '.event_form' ) . css ( 'display' , 'none' );
$ ( " .select_validate " ) . find ( 'option:first' ) . prop ( 'selected' , true ) . parent ( 'select' );
}
else {
$ ( '.event_form_' + id_event ) . css ( 'display' , '' );
}
2013-10-14 17:36:50 +02:00
}
function validate_event_advanced ( id , new_status ) {
2019-01-30 16:18:44 +01:00
$tr = $ ( '#validate-' + id ) . parents ( " tr " );
var grouped = $ ( '#group_rep' ) . val ();
// Get images url
var hourglass_image = " <?php echo ui_get_full_url('images/hourglass.png', false, false, false); ?> " ;
var cross_disabled_image = " <?php echo ui_get_full_url('images/cross.disabled.png', false, false, false); ?> " ;
var cross_image = " <?php echo ui_get_full_url('images/cross.png', false, false, false); ?> " ;
var similar_ids ;
similar_ids = $ ( '#hidden-similar_ids_' + id ) . val ();
meta = $ ( '#hidden-meta' ) . val ();
var history_var = $ ( '#hidden-history' ) . val ();
$ ( " #status_img_ " + id ) . attr ( " src " , " images/spinner.gif " );
jQuery . post ( " <?php echo ui_get_full_url('ajax.php', false, false, false); ?> " ,
{ " page " : " include/ajax/events " ,
" change_status " : 1 ,
" event_ids " : similar_ids ,
" new_status " : new_status ,
" meta " : meta ,
" history " : history_var
},
function ( data , status ) {
if ( data == " status_ok " ) {
// Refresh interface elements, don't reload (awful)
// Validate
if ( new_status == 1 ) {
// Change status description
$ ( " #status_row_ " + id ) . html ( < ? php echo " ' " . __ ( 'Event validated' ) . " ' " ; ?> );
// Change delete icon
$ ( " #delete- " + id ) . remove ();
$ ( " #validate- " + id ) . parent () . append ( '<a class="delete_event" href="javascript:" id="delete-' + id + '"></a>' );
$ ( " #delete- " + id ) . append ( " <img src=' " + cross_image + " ' /> " );
$ ( " #delete- " + id + " img " ) . attr ( " id " , " delete_cross_ " + id );
$ ( " #delete- " + id + " img " ) . attr ( " data-title " , < ? php echo " ' " . __ ( 'Delete event' ) . " ' " ; ?> );
$ ( " #delete- " + id + " img " ) . attr ( " alt " , < ? php echo " ' " . __ ( 'Delete event' ) . " ' " ; ?> );
$ ( " #delete- " + id + " img " ) . attr ( " data-use_title_for_force_title " , 1 );
$ ( " #delete- " + id + " img " ) . attr ( " class " , " forced_title " );
// Change other buttons actions
$ ( " #validate- " + id ) . css ( " display " , " none " );
$ ( " #in-progress- " + id ) . css ( " display " , " none " );
$ ( " #status_img_ " + id ) . attr ( " src " , " images/tick.png " );
$ ( " #status_img_ " + id ) . attr ( " data-title " , < ? php echo " ' " . __ ( 'Event in process' ) . " ' " ; ?> );
$ ( " #status_img_ " + id ) . attr ( " alt " , < ? php echo " ' " . __ ( 'Event in process' ) . " ' " ; ?> );
$ ( " #status_img_ " + id ) . attr ( " data-use_title_for_force_title " , 1 );
$ ( " #status_img_ " + id ) . attr ( " class " , " forced_title " );
} // In process
else if ( new_status == 2 ) {
// Change status description
$ ( " #status_row_ " + id ) . html ( < ? php echo " ' " . __ ( 'Event in process' ) . " ' " ; ?> );
// Change state image
$ ( " #status_img_ " + id ) . attr ( " src " , hourglass_image );
$ ( " #status_img_ " + id ) . attr ( " data-title " , < ? php echo " ' " . __ ( 'Event in process' ) . " ' " ; ?> );
$ ( " #status_img_ " + id ) . attr ( " alt " , < ? php echo " ' " . __ ( 'Event in process' ) . " ' " ; ?> );
$ ( " #status_img_ " + id ) . attr ( " data-use_title_for_force_title " , 1 );
$ ( " #status_img_ " + id ) . attr ( " class " , " forced_title " );
// Change the actions buttons
$ ( " #delete- " + id ) . remove ();
$ ( " #in-progress- " + id ) . remove ();
// Format the new disabled delete icon.
$ ( " #validate- " + id ) . parent () . append ( " <img id='delete- " + id + " ' src=' " + cross_disabled_image + " ' /> " );
$ ( " #delete- " + id ) . attr ( " data-title " , < ? php echo " ' " . __ ( 'Is not allowed delete events in process' ) . " ' " ; ?> );
$ ( " #delete- " + id ) . attr ( " alt " , < ? php echo " ' " . __ ( 'Is not allowed delete events in process' ) . " ' " ; ?> );
$ ( " #delete- " + id ) . attr ( " data-use_title_for_force_title " , 1 );
$ ( " #delete- " + id ) . attr ( " class " , " forced_title " );
// 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' );
}
});
}
}
}
else {
$ ( " #result " )
. showMessage ( " <?php echo __('Could not be validated'); ?> " )
. addClass ( " error " );
}
},
" html "
);
2013-10-14 17:36:50 +02:00
}
// Autoload event giving the id as POST/GET parameter
< ? php
2019-01-30 16:18:44 +01:00
$load_event = get_parameter ( 'load_event' , 0 );
2013-10-14 17:36:50 +02:00
if ( $load_event ) {
2019-01-30 16:18:44 +01:00
?>
show_event_dialog ( < ? php echo $load_event ; ?> , 1);
< ? php
2013-10-14 17:36:50 +02:00
}
?>
/* ]]> */
2013-01-18 10:56:46 +01:00
</ script >