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


PHP SpecialPage::getLocalNameFor方法代码示例

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


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

示例1: getSpecialPageTitleText

 /**
  * Gets the title text for the types special page.
  * Takes care of compatibility changes in MW 1.17 and 1.18.
  * 1.17 introduces SpecialPageFactory
  * 1.18 deprecates SpecialPage::getLocalNameFor
  *
  * @since 1.6
  *
  * @return string
  */
 protected function getSpecialPageTitleText()
 {
     return is_callable(array('SpecialPageFactory', 'getLocalNameFor')) ? SpecialPageFactory::getLocalNameFor('Types', $this->m_realLabel) : SpecialPage::getLocalNameFor('Types', $this->m_realLabel);
 }
开发者ID:Tjorriemorrie,项目名称:app,代码行数:14,代码来源:SMW_DV_Types.php

示例2: fixSpecialName

 /**
  * If the Title refers to a special page alias which is not the local default, 
  * returns a new Title which points to the local default. Otherwise, returns $this.
  */
 public function fixSpecialName()
 {
     if ($this->getNamespace() == NS_SPECIAL) {
         $canonicalName = SpecialPage::resolveAlias($this->mDbkeyform);
         if ($canonicalName) {
             $localName = SpecialPage::getLocalNameFor($canonicalName);
             if ($localName != $this->mDbkeyform) {
                 return Title::makeTitle(NS_SPECIAL, $localName);
             }
         }
     }
     return $this;
 }
开发者ID:arlendotcn,项目名称:ilias,代码行数:17,代码来源:Title.php

示例3: chromedArticleHeader

 public function chromedArticleHeader()
 {
     if (!$this->wg->User->isAllowed('admindashboard')) {
         $this->displayRestrictionError();
         return false;
         // skip rendering
     }
     $page = $this->getVal('page', '');
     if (empty($page)) {
         $headerText = SpecialPage::getLocalNameFor($this->getVal('headerText', ''));
     } else {
         $headerText = SpecialPage::getLocalNameFor($page);
     }
     $this->headerText = $headerText;
 }
开发者ID:schwarer2006,项目名称:wikia,代码行数:15,代码来源:AdminDashboardSpecialPageController.class.php


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