예제 #1
0
 /**
  * action=protect handler
  */
 public function protect()
 {
     $form = new ProtectionForm($this);
     $form->execute();
 }
예제 #2
0
파일: Article.php 프로젝트: k-hasan-19/wiki
 /**
  * action=protect handler
  */
 function protect()
 {
     require_once 'ProtectionForm.php';
     $form = new ProtectionForm($this);
     $form->show();
 }
예제 #3
0
 /**
  * action=protect handler
  */
 function protect()
 {
     $form = new ProtectionForm($this);
     $form->show();
 }
예제 #4
0
 /**
  * action=protect handler
  */
 public function protect()
 {
     # Wikia change @author nAndy
     wfRunHooks('BeforePageProtect', array(&$this));
     # End of Wikia change
     $form = new ProtectionForm($this);
     $form->execute();
 }