MediaWiki REL1_34
UnprotectAction.php
Go to the documentation of this file.
1<?php
29
30 public function getName() {
31 return 'unprotect';
32 }
33
34 public function show() {
35 $this->page->unprotect();
36 }
37
38 public function doesWrites() {
39 return true;
40 }
41}
Handle page protection (action=protect)
Handle page unprotection (action=unprotect)
doesWrites()
Indicates whether this action may perform database writes.
getName()
Return the name of the action this object responds to.
show()
The main action entry point.