diff --git a/pandora_console/operation/netflow/nf_live_view.php b/pandora_console/operation/netflow/nf_live_view.php
index 99ff5d7f6c..707b6f59a4 100644
--- a/pandora_console/operation/netflow/nf_live_view.php
+++ b/pandora_console/operation/netflow/nf_live_view.php
@@ -1,16 +1,23 @@
$id]);
- // Decode HTML entities
+ // Decode HTML entities.
$filter_values['advanced_filter'] = io_safe_output($filter_values['advanced_filter']);
@@ -68,7 +75,7 @@ if (is_ajax()) {
return;
}
-// Read filter configuration
+// Read filter configuration.
$filter_id = (int) get_parameter('filter_id', 0);
$filter['id_name'] = get_parameter('name', '');
$filter['id_group'] = (int) get_parameter('assign_group', 0);
@@ -81,7 +88,7 @@ $filter['src_port'] = get_parameter('src_port', '');
$filter['advanced_filter'] = get_parameter('advanced_filter', '');
$filter['router_ip'] = get_parameter('router_ip');
-// Read chart configuration
+// Read chart configuration.
$chart_type = get_parameter('chart_type', 'netflow_area');
$max_aggregates = (int) get_parameter('max_aggregates', 10);
$period = (int) get_parameter('period', SECONDS_1DAY);
@@ -93,18 +100,18 @@ $interval_length = (int) get_parameter('interval_length', 300);
$address_resolution = (int) get_parameter('address_resolution', $config['netflow_get_ip_hostname']);
$filter_selected = (int) get_parameter('filter_selected', 0);
-// Read buttons
+// Read buttons.
$draw = get_parameter('draw_button', '');
$save = get_parameter('save_button', '');
$update = get_parameter('update_button', '');
-// Calculate start and end dates
+// Calculate start and end dates.
$end_date = strtotime($date.' '.$time);
$start_date = ($end_date - $period);
if (!is_metaconsole()) {
- // Header
+ // Header.
ui_print_page_header(
__('Netflow live view'),
'images/op_netflow.png',
@@ -137,9 +144,9 @@ if (!is_metaconsole()) {
ui_meta_print_header(__('Netflow live view'));
}
-// Save user defined filter
+// Save user defined filter.
if ($save != '' && check_acl($config['id_user'], 0, 'AW')) {
- // Save filter args
+ // Save filter args.
$filter['filter_args'] = netflow_get_filter_arguments($filter);
$filter_id = db_process_sql_insert('tnetflow_filter', $filter);
@@ -149,15 +156,14 @@ if ($save != '' && check_acl($config['id_user'], 0, 'AW')) {
} else {
ui_print_success_message(__('Filter created successfully'));
}
-}
-// Update current filter
-else if ($update != '' && check_acl($config['id_user'], 0, 'AW')) {
- // Do not update the filter name and group
+} else if ($update != '' && check_acl($config['id_user'], 0, 'AW')) {
+ // Update current filter.
+ // Do not update the filter name and group.
$filter_copy = $filter;
unset($filter_copy['id_name']);
unset($filter_copy['id_group']);
- // Save filter args
+ // Save filter args.
$filter_copy['filter_args'] = netflow_get_filter_arguments($filter_copy);
$result = db_process_sql_update(
@@ -173,7 +179,7 @@ else if ($update != '' && check_acl($config['id_user'], 0, 'AW')) {
}
-// The filter name will not be needed anymore
+// The filter name will not be needed anymore.
$filter['id_name'] = '';
$netflow_disable_custom_lvfilters = false;
@@ -208,7 +214,7 @@ if (is_metaconsole()) {
}
foreach ($servers as $server) {
- // If connection was good then retrieve all data server
+ // If connection was good then retrieve all data server.
if (metaconsole_load_external_db($server)) {
$connection = true;
} else {
@@ -226,7 +232,7 @@ if (is_metaconsole()) {
}
echo '
';
- echo ''.''.__('Connection').''.' | ';
+ echo ''.__('Connection').' | ';
echo ''.html_print_select(
$list_servers,
'connection_name',
@@ -243,23 +249,23 @@ if (is_metaconsole()) {
echo ' |
';
- echo ''.''.__('Date').''.' | ';
+ echo ''.__('Date').' | ';
echo ''.html_print_input_text('date', $date, false, 13, 10, true).html_print_image(
'images/calendar_view_day.png',
true,
['alt' => 'calendar']
).ui_print_help_tip(__('Date format is YY/MM/DD'), true).html_print_input_text('time', $time, false, 10, 8, true).ui_print_help_tip(__('Watch format is hours (24h):minutes:seconds'), true).' | ';
- echo ''.''.__('Interval').''.' | ';
+ echo ''.__('Interval').' | ';
echo ''.html_print_select(netflow_get_valid_intervals(), 'period', $period, '', '', 0, true, false, false).' | ';
- echo ''.''.__('Resolution').ui_print_help_tip(__('The interval will be divided in chunks the length of the resolution.'), true).''.' | ';
+ echo ''.__('Resolution').ui_print_help_tip(__('The interval will be divided in chunks the length of the resolution.'), true).' | ';
echo ''.html_print_select(netflow_get_valid_subintervals(), 'interval_length', $interval_length, '', '', 0, true, false, false).' | ';
echo '
';
echo '';
- echo ''.''.__('Type').''.' | ';
+ echo ''.__('Type').' | ';
echo ''.html_print_select(
netflow_get_chart_types(),
'chart_type',
@@ -270,7 +276,7 @@ if (is_metaconsole()) {
true
).' | ';
- echo ''.''.__('Max. values').''.' | ';
+ echo ''.__('Max. values').' | ';
$max_values = [
'2' => '2',
'5' => '5',
@@ -284,7 +290,7 @@ if (is_metaconsole()) {
echo ''.html_print_select($max_values, 'max_aggregates', $max_aggregates, '', '', 0, true).''.html_print_image('images/pencil.png', true, ['id' => 'pencil']).'';
echo ' | ';
- echo ''.''.__('Aggregate by').''.ui_print_help_icon('aggregate_by', true).' | ';
+ echo ''.__('Aggregate by').''.ui_print_help_icon('aggregate_by', true).' | ';
$aggregate_list = [];
$aggregate_list = [
'none' => __('None'),
@@ -298,7 +304,7 @@ if (is_metaconsole()) {
echo '
';
- // Read filter type
+ // Read filter type.
if ($filter['advanced_filter'] != '') {
$filter_type = 1;
} else {
@@ -312,7 +318,7 @@ if (is_metaconsole()) {
echo '';
echo "";
- echo ''.''.__('Name').''.' | ';
+ echo ''.__('Name').' | ';
echo "".html_print_input_text(
'name',
$filter['id_name'],
@@ -322,7 +328,7 @@ if (is_metaconsole()) {
true
).' | ';
$own_info = get_user_info($config['id_user']);
- echo ''.''.__('Group').''.' | ';
+ echo ''.__('Group').' | ';
echo "".html_print_select_groups($config['id_user'], 'IW', $own_info['is_admin'], 'assign_group', $filter['id_group'], '', '', -1, true, false, false).' | ';
echo '
';
@@ -346,13 +352,13 @@ if (is_metaconsole()) {
echo ' | ';
echo ' | ';
} else {
- echo ''.''.__('Filter').''.' | ';
+ echo ''.__('Filter').' | ';
echo ''.__('Normal').' '.html_print_radio_button_extended('filter_type', 0, '', $filter_type, false, 'displayNormalFilter();', 'style="margin-right: 40px;"', true).__('Advanced').' '.html_print_radio_button_extended('filter_type', 1, '', $filter_type, false, 'displayAdvancedFilter();', 'style="margin-right: 40px;"', true).' | ';
}
- echo ''.''.__('Load filter').''.' | ';
+ echo ''.__('Load filter').' | ';
$user_groups = users_get_groups($config['id_user'], 'AR', $own_info['is_admin'], true);
$user_groups[0] = 0;
// Add all groups.
@@ -432,13 +438,13 @@ if (is_metaconsole()) {
$address_resolution,
true
);
- echo ''.''.__('IP address resolution').''.ui_print_help_tip(__('Resolve the IP addresses to get their hostnames.'), true).' | ';
- echo "$radio_buttons | ";
+ echo ''.__('IP address resolution').''.ui_print_help_tip(__('Resolve the IP addresses to get their hostnames.'), true).' | ';
+ echo ''.$radio_buttons.' | ';
- echo ''.''.__('Router ip').''.' | ';
+ echo ''.__('Router ip').' | ';
echo ''.html_print_input_text('router_ip', $filter['router_ip'], false, 30, 80, true).' | ';
- echo ''.''.__('Output format').''.' | ';
+ echo ''.__('Output format').' | ';
$show_output = [
'bytes' => __('Bytes'),
'bytespersecond' => __('Bytes per second'),
@@ -469,15 +475,14 @@ if (is_metaconsole()) {
echo '';
if ($draw != '') {
- // Draw
+ // Draw.
echo '
';
- // No filter selected
+ // No filter selected.
if ($netflow_disable_custom_lvfilters && $filter_selected == 0) {
ui_print_error_message(__('No filter selected'));
- }
- // Draw the netflow chart
- else {
+ } else {
+ // Draw the netflow chart.
echo netflow_draw_item(
$start_date,
$end_date,