mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 15:10:22 +00:00
13 lines
462 B
PHP
Executable file
13 lines
462 B
PHP
Executable file
<?php
|
|
|
|
/**
|
|
* Generate html for displaying data usage.
|
|
*/
|
|
function DisplayDataUsage(&$extraFooterScripts)
|
|
{
|
|
exec("ip -o link show | awk -F ': ' '{print $2}' | grep -v lo ", $interfacesWlo);
|
|
echo renderTemplate("data_usage", [ "interfaces" => $interfacesWlo ]);
|
|
|
|
$extraFooterScripts[] = array('src'=>'dist/datatables/jquery.dataTables.min.js', 'defer'=>false);
|
|
$extraFooterScripts[] = array('src'=>'app/js/bandwidthcharts.js', 'defer'=>false);
|
|
}
|