menu.inc.php 877 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Menu items
  5. *
  6. * @package PhpMyAdmin-Setup
  7. */
  8. if (!defined('PHPMYADMIN')) {
  9. exit;
  10. }
  11. $formset_id = filter_input(INPUT_GET, 'formset');
  12. $separator = PMA_URL_getArgSeparator('html');
  13. echo '<ul>';
  14. echo '<li><a href="index.php"'
  15. . ($formset_id === null ? ' class="active' : '')
  16. . '">' . __('Overview') . '</a></li>';
  17. $formsets = array(
  18. 'Features' => __('Features'),
  19. 'Sql_queries' => __('SQL queries'),
  20. 'Navi_panel' => __('Navigation panel'),
  21. 'Main_panel' => __('Main panel'),
  22. 'Import' => __('Import'),
  23. 'Export' => __('Export')
  24. );
  25. foreach ($formsets as $formset => $label) {
  26. echo '<li><a href="?page=form' . $separator . 'formset=' . $formset . '" '
  27. . ($formset_id === $formset ? ' class="active' : '')
  28. . '">' . $label . '</a></li>';
  29. }
  30. echo '</ul>';