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.

checkuser.php 460B

123456789101112131415161718192021222324
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/account.php');
  4. checkAccess(ADMIN);
  5. define('TITLE', 'Check user');
  6. addDashboardItem('Other admin tools', 'Overview', 'admin');
  7. addDashboardItem('Other admin tools', 'Reports', 'reports');
  8. require_once('lib/header.php');
  9. if (defined('ADMIN') && ADMIN) {
  10. require_once('pages/adminculog.php');
  11. } else {
  12. define('ERROR', 'You\'re no admin!');
  13. }
  14. require_once('lib/footer.php');
  15. ?>