當前位置: 首頁>>代碼示例>>PHP>>正文


PHP FormSpecialPage::execute方法代碼示例

本文整理匯總了PHP中FormSpecialPage::execute方法的典型用法代碼示例。如果您正苦於以下問題:PHP FormSpecialPage::execute方法的具體用法?PHP FormSpecialPage::execute怎麽用?PHP FormSpecialPage::execute使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在FormSpecialPage的用法示例。


在下文中一共展示了FormSpecialPage::execute方法的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: execute

 /**
  * Main execution point
  * @param string $par
  */
 function execute($par)
 {
     $out = $this->getOutput();
     $out->disallowUserJs();
     $out->addModules('mediawiki.special.changeemail');
     parent::execute($par);
 }
開發者ID:eliagbayani,項目名稱:LiteratureEditor,代碼行數:11,代碼來源:SpecialChangeEmail.php

示例2: execute

 /**
  * Main execution point
  * @param string $par
  */
 function execute($par)
 {
     $this->checkLoginSecurityLevel();
     $out = $this->getOutput();
     $out->disallowUserJs();
     parent::execute($par);
 }
開發者ID:claudinec,項目名稱:galan-wiki,代碼行數:11,代碼來源:SpecialChangeEmail.php

示例3: execute

 public function execute($par)
 {
     // This is a preferences page, so no user JS for y'all.
     $this->getOutput()->disallowUserJs();
     $this->requireLogin();
     parent::execute($par);
     $this->getOutput()->addReturnTo(SpecialPage::getTitleFor('Preferences'));
 }
開發者ID:paladox,項目名稱:mediawiki,代碼行數:8,代碼來源:SpecialResetTokens.php

示例4: execute

 public function execute($par)
 {
     $user = $this->getUser();
     if (!$this->userCanExecute($user)) {
         throw new \PermissionsError('commentadmin');
     }
     parent::execute($par);
 }
開發者ID:nbdd0121,項目名稱:MW-FlowThread,代碼行數:8,代碼來源:Import.php

示例5: execute

 /**
  * @param string $par
  */
 public function execute($par)
 {
     $output = $this->getContext()->getOutput();
     $output->addModules('ext.CollaborationKit.iconbrowser');
     $output->addModuleStyles('ext.CollaborationKit.iconbrowser.styles');
     $output->addJsConfigVars('wgCollaborationKitIconList', CollaborationKitIcon::getCannedIcons());
     parent::execute($par);
 }
開發者ID:wikimedia,項目名稱:mediawiki-extensions-CollaborationKit,代碼行數:11,代碼來源:SpecialCreateHubFeature.php

示例6: execute

 /**
  * Main method.
  *
  * @since 0.1
  *
  * @param string $subPage
  */
 public function execute($subPage)
 {
     if ($this->getRequest()->getSessionData('epprofilesaved')) {
         $messageKey = $this->getMsgPrefix() . 'profile-saved';
         $this->getOutput()->addHTML('<div class="successbox"><strong><p>' . wfMsgHtml($messageKey) . '</p></strong></div>' . '<hr style="display: block; clear: both; visibility: hidden;" />');
         $this->getRequest()->setSessionData('epprofilesaved', false);
     }
     parent::execute($subPage);
     $this->getOutput()->addModules('ep.ambprofile');
 }
開發者ID:schwarer2006,項目名稱:wikia,代碼行數:17,代碼來源:SpecialAmbassadorProfile.php

示例7: execute

 /**
  * Main execution point
  * @param string|null $par
  */
 function execute($par)
 {
     $this->getOutput()->disallowUserJs();
     $this->requireLogin();
     $par = trim($par);
     if (strlen($par) === 0) {
         $par = null;
     } elseif (strlen($par) > BotPassword::APPID_MAXLENGTH) {
         throw new ErrorPageError('botpasswords', 'botpasswords-bad-appid', [htmlspecialchars($par)]);
     }
     parent::execute($par);
 }
開發者ID:claudinec,項目名稱:galan-wiki,代碼行數:16,代碼來源:SpecialBotPasswords.php

示例8: execute

 public function execute($par)
 {
     global $wgCentralAuthEnableUserMerge;
     if (!class_exists('SpecialUserMerge')) {
         $this->setHeaders();
         throw new ErrorPageError('error', 'centralauth-usermerge-notinstalled');
     }
     if (!$wgCentralAuthEnableUserMerge) {
         $this->setHeaders();
         throw new ErrorPageError('error', 'centralauth-usermerge-disabled');
     }
     $this->getOutput()->addModules('ext.centralauth.globalrenameuser');
     parent::execute($par);
 }
開發者ID:NDKilla,項目名稱:mediawiki-extensions-CentralAuth,代碼行數:14,代碼來源:SpecialGlobalUserMerge.php

示例9: execute

 /**
  * @param string $par Subpage string if one was specified
  */
 public function execute($par)
 {
     if (!$this->getUser()->isLoggedIn()) {
         // Require user to be logged in
         $loginpage = SpecialPage::getTitleFor('Userlogin');
         $loginurl = $loginpage->getFullUrl(array('returnto' => $this->getPageTitle()->getPrefixedText()));
         $this->getOutput()->redirect($loginurl);
         return;
     }
     switch ($par) {
         case 'status':
             // Render status page
             $user = $this->getUser();
             $username = $user->getName();
             $wiki = $this->isGlobalUser() ? null : wfWikiID();
             $pending = GlobalRenameRequest::newForUser($username, $wiki);
             if (!$pending->exists()) {
                 $this->getOutput()->redirect(SpecialPage::getTitleFor('GlobalRenameRequest')->getFullURL(), '303');
                 return;
             }
             $out = $this->getOutput();
             $out->setPageTitle($this->msg('globalrenamerequest-status-title'));
             $out->addWikiMsg('globalrenamerequest-status-text', $username, $pending->getNewName());
             break;
         case 'available':
             // TODO: ajax name availability check (bug 70623)
             break;
         default:
             // Request form
             $out = $this->getOutput();
             $user = $this->getUser();
             $wiki = $this->isGlobalUser() ? null : wfWikiID();
             $pending = GlobalRenameRequest::newForUser($user->getName(), $wiki);
             if ($pending->exists()) {
                 $out->redirect($this->getPageTitle('status')->getFullURL(), '303');
                 return;
             }
             $out->addModuleStyles(array('mediawiki.ui', 'mediawiki.ui.button', 'mediawiki.ui.input', 'ext.centralauth.globalrenamerequest.styles'));
             $out->addModules('ext.centralauth.globalrenamerequest');
             parent::execute($par);
             break;
     }
 }
開發者ID:NDKilla,項目名稱:mediawiki-extensions-CentralAuth,代碼行數:46,代碼來源:SpecialGlobalRenameRequest.php

示例10: execute

 /**
  * @param string $par Subpage string if one was specified
  */
 public function execute($par)
 {
     parent::execute($par);
     $this->getOutput()->addModules('ext.centralauth.globalrenameuser');
     $this->getOutput()->addModules('ext.centralauth.globaluserautocomplete');
 }
開發者ID:NDKilla,項目名稱:mediawiki-extensions-CentralAuth,代碼行數:9,代碼來源:SpecialGlobalRenameUser.php

示例11: execute

 /**
  * Main execution point
  * @param string|null $par
  */
 function execute($par)
 {
     $this->getOutput()->disallowUserJs();
     parent::execute($par);
 }
開發者ID:whysasse,項目名稱:kmwiki,代碼行數:9,代碼來源:SpecialChangePassword.php

示例12: execute

 /**
  * @param $par string
  */
 public function execute($par)
 {
     $out = $this->getContext()->getOutput();
     $out->addModules('ext.CollaborationKit.colour');
     $out->addModuleStyles('ext.CollaborationKit.colourbrowser.styles');
     $out->addJsConfigVars('wgCollaborationKitColourList', CollaborationHubContent::getThemeColours());
     parent::execute($par);
 }
開發者ID:wikimedia,項目名稱:mediawiki-extensions-CollaborationKit,代碼行數:11,代碼來源:SpecialCreateCollaborationHub.php


注:本文中的FormSpecialPage::execute方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。