Unsupported scripts and control panel web app for a hosting company
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. define('TITLE', 'Tickets');
  4. addDashboardItem('Useful links', 'Support center', 'support');
  5. addDashboardItem('Useful links', 'View all tickets', 'alltickets');
  6. addDashboardItem('Frequently asked questions', 'Can I file support requests without using the control panel?', 'support/005');
  7. addDashboardItem('Frequently asked questions', 'How do I reopen a ticket?', 'support/014');
  8. require_once('lib/header.php');
  9. require_once('pages/ticketoverview.php');
  10. require_once('pages/raiseticket.php');
  11. require_once('lib/footer.php');
  12. ?>