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.

index.php 910B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/common.php');
  4. $admins = getAdmins();
  5. $categories = getCategories();
  6. $search = array();
  7. $search['title'] = 'Recently updated issues';
  8. $search['keywords'] = '';
  9. $search['keywordloc'] = 'both';
  10. $search['submitter'] = 'any';
  11. $search['assignee'] = 'any';
  12. $search['added'] = 'any';
  13. $search['updated'] = 'any';
  14. $search['deadline'] = 'any';
  15. $search['priority'] = array('urgent', 'high', 'normal', 'low');
  16. $search['status'] = array('open', 'assigned', 'closed', 'reopened');
  17. $search['categories'] = array_keys($categories);
  18. $search['order'] = 'updateddesc';
  19. $search['limit'] = 20;
  20. define('TITLE', 'Issue tracker');
  21. addDashboardItem('Actions', 'Raise new issue', 'addissue');
  22. include_once('res/commonDashboard.php');
  23. require_once('lib/header.php');
  24. require_once('pages/searchresults.php');
  25. require_once('lib/footer.php');
  26. ?>