Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

reports.php 907B

1234567891011121314151617181920212223242526272829303132
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/account.php');
  4. define('TITLE', 'Admin :: Reports');
  5. addDashboardItem('Other admin tools', 'Overview', 'admin');
  6. addDashboardItem('Other admin tools', 'Discounts', 'discounts');
  7. addDashboardItem('Other admin tools', 'Sites', 'adminsites');
  8. addDashboardItem('Other admin tools', 'Bans', 'bans');
  9. addDashboardItem('On this page', 'Large files', '#bigfiles');
  10. addDashboardItem('External tools', 'Wiki', 'http://admin.utd-hosting.com/wiki'
  11. );
  12. addDashboardItem('External tools', 'Service monitor', 'http://admin.utd-hostin
  13. g.com/mon');
  14. addDashboardItem('External tools', 'Finances', 'http://admin.utd-hosting.com/f
  15. inances');
  16. require_once('lib/header.php');
  17. if (defined('ADMIN') && ADMIN) {
  18. require_once('pages/reports/bigfiles.php');
  19. } else {
  20. define('ERROR', 'You\'re no admin!');
  21. }
  22. require_once('lib/footer.php');
  23. ?>