MediaWiki  REL1_19
ProtectAction.php
Go to the documentation of this file.
00001 <?php
00026 class ProtectAction extends FormlessAction {
00027 
00028         public function getName() {
00029                 return 'protect';
00030         }
00031 
00032         public function onView(){
00033                 return null;
00034         }
00035 
00036         public function show(){
00037 
00038                 $this->page->protect();
00039 
00040         }
00041 
00042 }
00043 
00044 class UnprotectAction extends ProtectAction {
00045 
00046         public function getName() {
00047                 return 'unprotect';
00048         }
00049 
00050         public function show(){
00051 
00052                 $this->page->unprotect();
00053 
00054         }
00055 
00056 }