SetupFormList.php 487 B

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