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.

discounts.php 832B

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