PageFormList.php 493 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Page preferences form
  4. */
  5. declare(strict_types=1);
  6. namespace PhpMyAdmin\Config\Forms\Page;
  7. use PhpMyAdmin\Config\Forms\BaseFormList;
  8. class PageFormList extends BaseFormList
  9. {
  10. /** @var string[] */
  11. protected static $all = [
  12. 'Browse',
  13. 'DbStructure',
  14. 'Edit',
  15. 'Export',
  16. 'Import',
  17. 'Navi',
  18. 'Sql',
  19. 'TableStructure',
  20. ];
  21. /** @var string */
  22. protected static $ns = 'PhpMyAdmin\\Config\\Forms\\Page\\';
  23. }