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


PHP SpecialPageFactory::getUsablePages方法代碼示例

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


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

示例1: getPageGroups

 private function getPageGroups()
 {
     $pages = SpecialPageFactory::getUsablePages($this->getUser());
     if (!count($pages)) {
         # Yeah, that was pointless. Thanks for coming.
         return false;
     }
     /** Put them into a sortable array */
     $groups = [];
     /** @var SpecialPage $page */
     foreach ($pages as $page) {
         if ($page->isListed()) {
             $group = $page->getFinalGroupName();
             if (!isset($groups[$group])) {
                 $groups[$group] = [];
             }
             $groups[$group][$page->getDescription()] = [$page->getPageTitle(), $page->isRestricted(), $page->isCached()];
         }
     }
     /** Sort */
     foreach ($groups as $group => $sortedPages) {
         ksort($groups[$group]);
     }
     /** Always move "other" to end */
     if (array_key_exists('other', $groups)) {
         $other = $groups['other'];
         unset($groups['other']);
         $groups['other'] = $other;
     }
     return $groups;
 }
開發者ID:claudinec,項目名稱:galan-wiki,代碼行數:31,代碼來源:SpecialSpecialpages.php

示例2: getPageGroups

 private function getPageGroups()
 {
     global $wgSortSpecialPages;
     $pages = SpecialPageFactory::getUsablePages($this->getUser());
     if (!count($pages)) {
         # Yeah, that was pointless. Thanks for coming.
         return false;
     }
     /** Put them into a sortable array */
     $groups = array();
     foreach ($pages as $page) {
         if ($page->isListed()) {
             $group = SpecialPageFactory::getGroup($page);
             if (!isset($groups[$group])) {
                 $groups[$group] = array();
             }
             $groups[$group][$page->getDescription()] = array($page->getTitle(), $page->isRestricted(), $page->isExpensive());
         }
     }
     /** Sort */
     if ($wgSortSpecialPages) {
         foreach ($groups as $group => $sortedPages) {
             ksort($groups[$group]);
         }
     }
     /** Always move "other" to end */
     if (array_key_exists('other', $groups)) {
         $other = $groups['other'];
         unset($groups['other']);
         $groups['other'] = $other;
     }
     return $groups;
 }
開發者ID:laiello,項目名稱:media-wiki-law,代碼行數:33,代碼來源:SpecialSpecialpages.php

示例3: getAdvancedSection

 /**
  * @brief Copied and pasted code from wfSpecialSpecialpages() that have been modified and refactored.  Also removes some special pages from list.
  *
  */
 public function getAdvancedSection()
 {
     if (!$this->wg->User->isAllowed('admindashboard')) {
         $this->displayRestrictionError();
         return false;
         // skip rendering
     }
     $this->sk = $this->wg->User->getSkin();
     $pages = SpecialPageFactory::getUsablePages();
     if (count($pages) == 0) {
         return;
     }
     /** Put them into a sortable array */
     $groups = array();
     foreach ($pages as $pagename => $page) {
         if (!AdminDashboardLogic::isGeneralApp($pagename) && $page->isListed()) {
             $group = SpecialPageFactory::getGroup($page);
             if (!isset($groups[$group])) {
                 $groups[$group] = array();
             }
             $groups[$group][$page->getDescription()] = array($page->getTitle(), $page->isRestricted());
         }
     }
     /** Sort */
     if ($this->wg->SortSpecialPages) {
         foreach ($groups as $group => $sortedPages) {
             ksort($groups[$group]);
         }
     }
     /** Always move "other" to end */
     if (array_key_exists('other', $groups)) {
         $other = $groups['other'];
         unset($groups['other']);
         $groups['other'] = $other;
     }
     $this->groups = $groups;
 }
開發者ID:schwarer2006,項目名稱:wikia,代碼行數:41,代碼來源:AdminDashboardSpecialPageController.class.php

示例4: specialPagesList

 /**
  * Show a drop-down box of special pages
  * @return string
  */
 function specialPagesList()
 {
     global $wgScript;
     $select = new XmlSelect('title');
     $pages = SpecialPageFactory::getUsablePages();
     array_unshift($pages, SpecialPageFactory::getPage('SpecialPages'));
     foreach ($pages as $obj) {
         $select->addOption($obj->getDescription(), $obj->getTitle()->getPrefixedDBkey());
     }
     return Html::rawElement('form', array('id' => 'specialpages', 'method' => 'get', 'action' => $wgScript), $select->getHTML() . Xml::submitButton(wfMessage('go')->text()));
 }
開發者ID:Grprashanthkumar,項目名稱:ColfusionWeb,代碼行數:15,代碼來源:SkinLegacy.php

示例5: getUsablePages

 /**
  * Return categorised listable special pages which are available
  * for the current user, and everyone.
  *
  * @param $user User object to check permissions, $wgUser will be used
  *              if not provided
  * @return array Associative array mapping page's name to its SpecialPage object
  * @deprecated since 1.18 call SpecialPageFactory method directly
  */
 static function getUsablePages(User $user = null)
 {
     wfDeprecated(__METHOD__, '1.18');
     return SpecialPageFactory::getUsablePages($user);
 }
開發者ID:seedbank,項目名稱:old-repo,代碼行數:14,代碼來源:SpecialPage.php

示例6: getUsablePages

 /**
  * Return categorised listable special pages which are available
  * for the current user, and everyone.
  *
  * @return Associative array mapping page's name to its SpecialPage object
  * @deprecated since 1.18 call SpecialPageFactory method directly
  */
 static function getUsablePages()
 {
     return SpecialPageFactory::getUsablePages();
 }
開發者ID:eFFemeer,項目名稱:seizamcore,代碼行數:11,代碼來源:SpecialPage.php

示例7: specialPagesList

 /**
  * Show a drop-down box of special pages
  */
 function specialPagesList()
 {
     global $wgContLang, $wgServer, $wgRedirectScript;
     $pages = SpecialPageFactory::getUsablePages();
     foreach ($pages as $name => $page) {
         $pages[$name] = $page->getDescription();
     }
     $go = wfMsg('go');
     $sp = wfMsg('specialpages');
     $spp = $wgContLang->specialPage('Specialpages');
     $s = '<form id="specialpages" method="get" ' . 'action="' . htmlspecialchars("{$wgServer}{$wgRedirectScript}") . "\">\n";
     $s .= "<select name=\"wpDropdown\">\n";
     $s .= "<option value=\"{$spp}\">{$sp}</option>\n";
     foreach ($pages as $name => $desc) {
         $p = $wgContLang->specialPage($name);
         $s .= "<option value=\"{$p}\">{$desc}</option>\n";
     }
     $s .= "</select>\n";
     $s .= "<input type='submit' value=\"{$go}\" name='redirect' />\n";
     $s .= "</form>\n";
     return $s;
 }
開發者ID:eFFemeer,項目名稱:seizamcore,代碼行數:25,代碼來源:SkinLegacy.php

示例8: crawl

 /**
  * Prepares list of documents to be indexed for wikis.
  * @return int Number of documents to be indexed.
  */
 public function crawl()
 {
     $this->oDocumentsDb = SpecialPageFactory::getUsablePages(RequestContext::getMain()->getUser());
     $this->totalNoDocumentsCrawled = count($this->oDocumentsDb);
     return $this->totalNoDocumentsCrawled;
 }
開發者ID:hfroese,項目名稱:mediawiki-extensions-BlueSpiceExtensions,代碼行數:10,代碼來源:BuildIndexMwSpecial.class.php


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