* @license https://files.froxlor.org/misc/COPYING.txt GPLv2 */ const AREA = 'customer'; require __DIR__ . '/lib/init.php'; use Froxlor\Database\Database; use Froxlor\Settings; use Froxlor\UI\Panel\UI; use Froxlor\UI\Request; use Froxlor\UI\Response; // redirect if this customer page is hidden via settings if (Settings::IsInList('panel.customer_hide_options', 'traffic')) { Response::redirectTo('customer_index.php'); } if ($page === null || $page == 'overview') { } elseif ($page == 'current') { } UI::view('user/traffic.html.twig', [ 'metrics' => \Froxlor\Traffic\Traffic::getCustomerMetrics($userinfo), 'chart' => \Froxlor\Traffic\Traffic::getCustomerChart($userinfo, 30), ]);