Network report. Fixed some styles
Former-commit-id: 19a181044bae3f5bcec1f873e20ec50c41a73f00
This commit is contained in:
parent
a321a7465d
commit
935db452d2
|
@ -105,22 +105,22 @@ $table->data['0']['2'] .= html_print_checkbox(
|
||||||
'network_report_click_period(event)'
|
'network_report_click_period(event)'
|
||||||
);
|
);
|
||||||
|
|
||||||
$table->data['1']['0'] = __('End date').' ';
|
$table->data['1']['0'] = '<div id="end_date_container" style="'.$style_end.'">';
|
||||||
$table->data['1']['0'] .= html_print_input_text('date_greater', $date_greater, '', 10, 7, true);
|
$table->data['1']['0'] .= __('Start date').' ';
|
||||||
|
$table->data['1']['0'] .= html_print_input_text('date_lower', $date_lower, '', 10, 7, true);
|
||||||
$table->data['1']['0'] .= ' ';
|
$table->data['1']['0'] .= ' ';
|
||||||
$table->data['1']['0'] .= html_print_input_text('time_greater', $time_greater, '', 7, 8, true);
|
$table->data['1']['0'] .= html_print_input_text('time_lower', $time_lower, '', 7, 8, true);
|
||||||
|
$table->data['1']['0'] .= '</div>';
|
||||||
|
|
||||||
$table->data['1']['1'] = '<div id="end_date_container" style="'.$style_end.'">';
|
$table->data['1']['0'] .= '<div id="period_container" style="'.$style_period.'">';
|
||||||
$table->data['1']['1'] .= __('Start date').' ';
|
$table->data['1']['0'] .= __('Time Period').' ';
|
||||||
$table->data['1']['1'] .= html_print_input_text('date_lower', $date_lower, '', 10, 7, true);
|
$table->data['1']['0'] .= html_print_extended_select_for_time('period', $period, '', '', 0, false, true);
|
||||||
|
$table->data['1']['0'] .= '</div>';
|
||||||
|
|
||||||
|
$table->data['1']['1'] = __('End date').' ';
|
||||||
|
$table->data['1']['1'] .= html_print_input_text('date_greater', $date_greater, '', 10, 7, true);
|
||||||
$table->data['1']['1'] .= ' ';
|
$table->data['1']['1'] .= ' ';
|
||||||
$table->data['1']['1'] .= html_print_input_text('time_lower', $time_lower, '', 7, 8, true);
|
$table->data['1']['1'] .= html_print_input_text('time_greater', $time_greater, '', 7, 8, true);
|
||||||
$table->data['1']['1'] .= '</div>';
|
|
||||||
|
|
||||||
$table->data['1']['1'] .= '<div id="period_container" style="'.$style_period.'">';
|
|
||||||
$table->data['1']['1'] .= __('Time Period').' ';
|
|
||||||
$table->data['1']['1'] .= html_print_extended_select_for_time('period', $period, '', '', 0, false, true);
|
|
||||||
$table->data['1']['1'] .= '</div>';
|
|
||||||
|
|
||||||
$table->data['1']['2'] = html_print_submit_button(
|
$table->data['1']['2'] = html_print_submit_button(
|
||||||
__('Update'),
|
__('Update'),
|
||||||
|
@ -182,7 +182,7 @@ $hidden_main_link = [
|
||||||
|
|
||||||
unset($table);
|
unset($table);
|
||||||
$table = new stdClass();
|
$table = new stdClass();
|
||||||
$table->styleTable = 'width: 100%';
|
$table->styleTable = 'width: 70%';
|
||||||
// Print the header.
|
// Print the header.
|
||||||
$table->head = [];
|
$table->head = [];
|
||||||
$table->head['main'] = __('IP');
|
$table->head['main'] = __('IP');
|
||||||
|
@ -307,18 +307,20 @@ foreach ($data as $item) {
|
||||||
if (empty($data)) {
|
if (empty($data)) {
|
||||||
ui_print_info_message(__('No data found'));
|
ui_print_info_message(__('No data found'));
|
||||||
} else {
|
} else {
|
||||||
|
echo '<div style="display: flex; margin-top: 10px;">';
|
||||||
html_print_table($table);
|
html_print_table($table);
|
||||||
}
|
|
||||||
|
|
||||||
// Print the graph.
|
// Print the graph.
|
||||||
echo '<div>';
|
echo '<div style="margin-top: 50px;">';
|
||||||
echo pie_graph(
|
echo pie_graph(
|
||||||
$chart_data,
|
$chart_data,
|
||||||
320,
|
320,
|
||||||
200,
|
200,
|
||||||
__('Others')
|
__('Others')
|
||||||
);
|
);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
echo '</div>';
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<script>
|
<script>
|
||||||
|
|
Loading…
Reference in New Issue