ProtectAction.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. * Handle page protection (action=protect)
  22. *
  23. * This is a wrapper that will call Article::protect().
  24. *
  25. * @ingroup Actions
  26. */
  27. class ProtectAction extends FormlessAction {
  28. public function getName() {
  29. return 'protect';
  30. }
  31. public function onView() {
  32. return null;
  33. }
  34. public function show() {
  35. if ( $this->getContext()->getConfig()->get( 'UseMediaWikiUIEverywhere' ) ) {
  36. $out = $this->getOutput();
  37. $out->addModuleStyles( [
  38. 'mediawiki.ui.input',
  39. 'mediawiki.ui.checkbox',
  40. ] );
  41. }
  42. $this->page->protect();
  43. }
  44. public function doesWrites() {
  45. return true;
  46. }
  47. }