当前位置: 首页>>代码示例>>PHP>>正文


PHP UnlistedSpecialPage类代码示例

本文整理汇总了PHP中UnlistedSpecialPage的典型用法代码示例。如果您正苦于以下问题:PHP UnlistedSpecialPage类的具体用法?PHP UnlistedSpecialPage怎么用?PHP UnlistedSpecialPage使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了UnlistedSpecialPage类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct()
 {
     global $wgMaxUploadSize;
     UnlistedSpecialPage::UnlistedSpecialPage('ImageUploadHandler');
     $this->executeAsSpecialPage = false;
     $this->maxFilesize = $wgMaxUploadSize;
 }
开发者ID:ErdemA,项目名称:wikihow,代码行数:7,代码来源:ImageUploadHandler.class.php

示例2: __construct

 public function __construct()
 {
     global $wgTitle;
     $this->specialPage = $wgTitle->getPartialUrl();
     $this->editDescs = $this->specialPage == 'AdminEditMetaInfo';
     UnlistedSpecialPage::UnlistedSpecialPage($this->specialPage);
 }
开发者ID:ErdemA,项目名称:wikihow,代码行数:7,代码来源:AdminEditInfo.body.php

示例3: __construct

 public function __construct()
 {
     UnlistedSpecialPage::UnlistedSpecialPage('BounceTimeLogger');
     //this page gets requested onUnload. set ignore_user_abort()
     //to make sure this script finishes executing even if the
     //client disconnects mid-way.
     ignore_user_abort(true);
 }
开发者ID:ErdemA,项目名称:wikihow,代码行数:8,代码来源:BounceTimeLogger.body.php

示例4: __construct

 function __construct()
 {
     global $wgMessageCache, $wgLogTypes, $wgLogNames, $wgLogHeaders, $wgHooks;
     UnlistedSpecialPage::UnlistedSpecialPage('RateArticle');
     $wgHooks['AfterArticleDisplayed'][] = array("RateArticle::showForm");
     $wgHooks['ArticleDelete'][] = array("RateArticle::clearRatingsOnDelete");
     $wgLogTypes[] = 'accuracy';
     $wgLogNames['accuracy'] = 'accuracylogpage';
     $wgLogHeaders['accuracy'] = 'accuracylogtext';
 }
开发者ID:ErdemA,项目名称:wikihow,代码行数:10,代码来源:RateArticle.body.php

示例5: __construct

 function __construct()
 {
     global $wgUser, $wgHooks;
     UnlistedSpecialPage::UnlistedSpecialPage('Categorizer');
     $wgHooks['getToolStatus'][] = array('Misc::defineAsTool');
     $userId = $wgUser->getId();
     $this->pageIdsKey = wfMemcKey("cattool_pageids1");
     $this->inUseKey = wfMemcKey("cattool_inuse");
     $this->skippedKey = wfMemcKey("cattool_{$userId}_skipped");
     $this->noMoreArticlesKey = wfMemcKey("cattool_nomore1");
     $this->halfHour = 60 * 30;
     $this->oneHour = 60 * 60;
     $this->oneWeek = 60 * 60 * 24 * 7;
 }
开发者ID:ErdemA,项目名称:wikihow,代码行数:14,代码来源:Categorizer.body.php

示例6: array

 function __construct()
 {
     parent::__construct('TitusQueryTool');
     $this->language = "";
     $this->languageInfo = Misc::getActiveLanguageNames();
     $GLOBALS['wgHooks']['ShowSideBar'][] = array('TitusQueryTool::removeSideBarCallback');
 }
开发者ID:biribogos,项目名称:wikihow-src,代码行数:7,代码来源:TitusQueryTool.body.php

示例7: __construct

	public function __construct() {
		parent::__construct( 'UploadStash', 'upload' );
		try {
			$this->stash = RepoGroup::singleton()->getLocalRepo()->getUploadStash();
		} catch ( UploadStashNotAvailableException $e ) {
		}
	}
开发者ID:nahoj,项目名称:mediawiki_ynh,代码行数:7,代码来源:SpecialUploadStash.php

示例8: __construct

 /**
  * Constructor
  */
 public function __construct()
 {
     global $wgOutboundScreenConfig;
     $this->redirectDelay = $wgOutboundScreenConfig['redirectDelay'];
     $this->adLayoutMode = strtoupper($wgOutboundScreenConfig['adLayoutMode']);
     parent::__construct('Outbound');
 }
开发者ID:schwarer2006,项目名称:wikia,代码行数:10,代码来源:SpecialOutboundScreen_body.php

示例9: __construct

 /**
  * Constructor
  */
 public function __construct()
 {
     global $wgUser;
     parent::__construct('ArticleFeedbackv5');
     $showHidden = $wgUser->isAllowed('aftv5-see-hidden-feedback');
     $showDeleted = $wgUser->isAllowed('aftv5-see-deleted-feedback');
     if ($showHidden) {
         array_push($this->filters, 'unhelpful', 'abusive', 'invisible');
         # removing the 'needsoversight' filter, per Fabrice
     }
     if ($showDeleted) {
         $this->filters[] = 'deleted';
     }
     // NOTE: The 'all' option actually displays different things
     // based on the users role, which is handled in the filter:
     // - deleter's all is actually everything
     // - hidder's all is 'visible + hidden'
     // - regular non-admin only has 'all visible' not 'all'
     // The all option, if any, is only added once, at the end of the list,
     // which is why it's down here instead.
     if ($showDeleted) {
         $this->filters[] = 'all';
     } elseif ($showHidden) {
         $this->filters[] = 'notdeleted';
     }
 }
开发者ID:schwarer2006,项目名称:wikia,代码行数:29,代码来源:SpecialArticleFeedbackv5.php

示例10: __construct

 public function __construct()
 {
     global $wgExternalPagesSites, $wgExternalPages, $wgExternalPagesCacheExpiry;
     parent::__construct('ExternalPages');
     $this->epSites = $wgExternalPagesSites;
     $this->epPages = $wgExternalPages;
     $this->epExpiry = $wgExternalPagesCacheExpiry;
 }
开发者ID:realsoc,项目名称:mediawiki-extensions,代码行数:8,代码来源:ExternalPages_body.php

示例11: __construct

 public function __construct()
 {
     global $wgEmailTestSecretToken;
     parent::__construct('EmailTest', 'emailtest');
     $this->mChallengeToken = $wgEmailTestSecretToken;
     $this->mConfirmToken = time() . '-' . rand(10000, 99999) . '_emailtest';
     $this->mText = "The quick brown fox jumps over the lazy dog";
 }
开发者ID:Tjorriemorrie,项目名称:app,代码行数:8,代码来源:SpecialEmailTest.php

示例12: __construct

	public function __construct() {
		parent::__construct( 'VariablePage' );
		
		// make sure configuration will result in something sane
		if ( !$this->sanityCheck() ) {
			throw new MWException( 'VariablePage configuation not sane!  Either $wgVariablePageDefault must be set or probabilites in $wgVariablePagePossibilities must add up to 100.' );
		}
	}
开发者ID:realsoc,项目名称:mediawiki-extensions,代码行数:8,代码来源:VariablePage.body.php

示例13:

 function __construct()
 {
     parent::__construct($this->getPageName(), $this->getRightRequirement());
     $this->mIncludable = false;
     global $wgOut, $wgUser, $wgRequest;
     $this->output = $wgOut;
     $this->user = $wgUser;
     $this->request = $wgRequest;
 }
开发者ID:realsoc,项目名称:mediawiki-extensions,代码行数:9,代码来源:ThreadActionPage.php

示例14: array

 function __construct()
 {
     parent::__construct('Html5editor');
     $this->mInterwiki = array();
     $dbr = wfGetDB(DB_SLAVE);
     $res = $dbr->select('interwiki', array('iw_prefix', 'iw_url'));
     while ($row = $dbr->fetchObject($res)) {
         $this->mInterwiki[$row->iw_prefix] = $row->iw_url;
     }
 }
开发者ID:biribogos,项目名称:wikihow-src,代码行数:10,代码来源:Html5editor.body.php

示例15: __construct

 public function __construct($request = null)
 {
     global $wgRequest;
     parent::__construct('UploadStash', 'upload');
     try {
         $this->stash = RepoGroup::singleton()->getLocalRepo()->getUploadStash();
     } catch (UploadStashNotAvailableException $e) {
         return null;
     }
     $this->loadRequest(is_null($request) ? $wgRequest : $request);
 }
开发者ID:GodelDesign,项目名称:Godel,代码行数:11,代码来源:SpecialUploadStash.php


注:本文中的UnlistedSpecialPage类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。