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.

adminbw.php 859B

1234567891011121314151617181920212223242526272829
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/account.php');
  4. checkAccess(ADMIN);
  5. define('TITLE', 'Admin - Bandwidth');
  6. addDashboardItem('Other admin tools', 'Sites', 'adminsites');
  7. addDashboardItem('Other admin tools', 'Reports', 'reports');
  8. addDashboardItem('Other admin tools', 'Discounts', 'discounts');
  9. addDashboardItem('Other admin tools', 'Bans', 'bans');
  10. addDashboardItem('External tools', 'Wiki', 'http://admin.utd-hosting.com/wiki');
  11. addDashboardItem('External tools', 'Service monitor', 'http://admin.utd-hosting.com/mon');
  12. addDashboardItem('External tools', 'Finances', 'http://admin.utd-hosting.com/finances');
  13. require_once('lib/header.php');
  14. if (defined('ADMIN') && ADMIN) {
  15. require_once('pages/adminbw.php');
  16. } else {
  17. define('ERROR', 'You\'re no admin!');
  18. }
  19. require_once('lib/footer.php');
  20. ?>