Unsupported scripts and control panel web app for a hosting company
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

bandwidth.php 514B

123456789101112131415161718192021
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/account.php');
  4. define('TITLE', 'Bandwidth breakdown');
  5. addDashboardItem('Useful links', 'Account overview', '');
  6. addDashboardItem('Useful links', 'View extended site details', 'sites');
  7. addDashboardItem('Frequently asked questions', 'What does KiB/MiB/GiB mean?', 'support/003');
  8. require_once('lib/header.php');
  9. require_once('pages/bandwidthgraph.php');
  10. require_once('pages/bandwidthtable.php');
  11. require_once('lib/footer.php');
  12. ?>