MainForm.php 473 B

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