PageFormList.php 493 B

12345678910111213141516171819202122232425
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Page preferences form
  5. *
  6. * @package PhpMyAdmin
  7. */
  8. namespace PhpMyAdmin\Config\Forms\Page;
  9. use PhpMyAdmin\Config\Forms\BaseFormList;
  10. class PageFormList extends BaseFormList
  11. {
  12. protected static $all = array(
  13. 'Browse',
  14. 'DbStructure',
  15. 'Edit',
  16. 'Export',
  17. 'Import',
  18. 'Navi',
  19. 'Sql',
  20. 'TableStructure',
  21. );
  22. protected static $ns = '\\PhpMyAdmin\\Config\\Forms\\Page\\';
  23. }