EditForm.php 643 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * User preferences form
  5. *
  6. * @package PhpMyAdmin
  7. */
  8. declare(strict_types=1);
  9. namespace PhpMyAdmin\Config\Forms\Page;
  10. use PhpMyAdmin\Config\Forms\BaseForm;
  11. use PhpMyAdmin\Config\Forms\User\FeaturesForm;
  12. use PhpMyAdmin\Config\Forms\User\MainForm;
  13. /**
  14. * Class EditForm
  15. * @package PhpMyAdmin\Config\Forms\Page
  16. */
  17. class EditForm extends BaseForm
  18. {
  19. /**
  20. * @return array
  21. */
  22. public static function getForms()
  23. {
  24. return [
  25. 'Edit' => MainForm::getForms()['Edit'],
  26. 'Text_fields' => FeaturesForm::getForms()['Text_fields'],
  27. ];
  28. }
  29. }