MainForm.php 470 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * User preferences form
  4. */
  5. declare(strict_types=1);
  6. namespace PhpMyAdmin\Config\Forms\Setup;
  7. class MainForm extends \PhpMyAdmin\Config\Forms\User\MainForm
  8. {
  9. /**
  10. * @return array
  11. */
  12. public static function getForms()
  13. {
  14. $result = parent::getForms();
  15. /* Following are not available to user */
  16. $result['Startup'][] = 'ShowPhpInfo';
  17. $result['Startup'][] = 'ShowChgPassword';
  18. return $result;
  19. }
  20. }