EditAction.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. /**
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation; either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  16. *
  17. * @file
  18. * @ingroup Actions
  19. */
  20. /**
  21. * Page edition handler (action=edit)
  22. *
  23. * This is a wrapper that will call the EditPage class or a custom editor from an extension.
  24. *
  25. * @ingroup Actions
  26. */
  27. class EditAction extends FormlessAction {
  28. public function getName() {
  29. return 'edit';
  30. }
  31. public function onView() {
  32. return null;
  33. }
  34. public function show() {
  35. $this->useTransactionalTimeLimit();
  36. $out = $this->getOutput();
  37. $out->setRobotPolicy( 'noindex,nofollow' );
  38. if ( $this->getContext()->getConfig()->get( 'UseMediaWikiUIEverywhere' ) ) {
  39. $out->addModuleStyles( [
  40. 'mediawiki.ui.input',
  41. 'mediawiki.ui.checkbox',
  42. ] );
  43. }
  44. $page = $this->page;
  45. $user = $this->getUser();
  46. if ( Hooks::run( 'CustomEditor', [ $page, $user ] ) ) {
  47. $editor = new EditPage( $page );
  48. $editor->setContextTitle( $this->getTitle() );
  49. $editor->edit();
  50. }
  51. }
  52. public function doesWrites() {
  53. return true;
  54. }
  55. }