Esempio n. 1
0
 /**
  * action=protect handler
  */
 public function protect()
 {
     $form = new ProtectionForm($this);
     $form->execute();
 }
Esempio n. 2
0
 /**
  * action=protect handler
  */
 function protect()
 {
     require_once 'ProtectionForm.php';
     $form = new ProtectionForm($this);
     $form->show();
 }
Esempio n. 3
0
 /**
  * action=protect handler
  */
 function protect()
 {
     $form = new ProtectionForm($this);
     $form->show();
 }
Esempio n. 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();
 }