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


PHP SearchEngine::setNamespaces方法代碼示例

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


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

示例1: setUp

 protected function setUp()
 {
     parent::setUp();
     if (!$this->isWikitextNS(NS_MAIN)) {
         $this->markTestSkipped('Main namespace does not support wikitext.');
     }
     // Avoid special pages from extensions interferring with the tests
     $this->setMwGlobals('wgSpecialPages', array());
     $this->search = SearchEngine::create();
     $this->search->setNamespaces(array());
 }
開發者ID:OrBin,項目名稱:mediawiki,代碼行數:11,代碼來源:SearchEnginePrefixTest.php

示例2: setUp

 protected function setUp()
 {
     parent::setUp();
     if (!$this->isWikitextNS(NS_MAIN)) {
         $this->markTestSkipped('Main namespace does not support wikitext.');
     }
     // Avoid special pages from extensions interferring with the tests
     $this->setMwGlobals(['wgSpecialPages' => [], 'wgHooks' => []]);
     $this->search = MediaWikiServices::getInstance()->newSearchEngine();
     $this->search->setNamespaces([]);
     $this->originalHandlers = TestingAccessWrapper::newFromClass('Hooks')->handlers;
     TestingAccessWrapper::newFromClass('Hooks')->handlers = [];
     SpecialPageFactory::resetList();
 }
開發者ID:claudinec,項目名稱:galan-wiki,代碼行數:14,代碼來源:SearchEnginePrefixTest.php

示例3: testAugmentorSearch

 public function testAugmentorSearch()
 {
     $this->search->setNamespaces([0, 1, 4]);
     $resultSet = $this->search->searchText('smithee');
     // Not using mock since PHPUnit mocks do not work properly with references in params
     $this->mergeMwGlobalArrayValue('wgHooks', ['SearchResultsAugment' => [[$this, 'addAugmentors']]]);
     $this->search->augmentSearchResults($resultSet);
     for ($result = $resultSet->next(); $result; $result = $resultSet->next()) {
         $id = $result->getTitle()->getArticleID();
         $augmentData = "Result:{$id}:" . $result->getTitle()->getText();
         $augmentData2 = "Result2:{$id}:" . $result->getTitle()->getText();
         $this->assertEquals(['testSet' => $augmentData, 'testRow' => $augmentData2], $result->getExtensionData());
     }
 }
開發者ID:paladox,項目名稱:mediawiki,代碼行數:14,代碼來源:SearchEngineTest.php

示例4: testTextTitlePowerSearch

 public function testTextTitlePowerSearch()
 {
     $this->search->setNamespaces(array(0, 1, 4));
     $this->assertEquals(array('Alan Smithee', 'Smithee', 'Talk:Smithee'), $this->fetchIds($this->search->searchTitle('smithee')), "Title power search failed");
 }
開發者ID:Habatchii,項目名稱:wikibase-for-mediawiki,代碼行數:5,代碼來源:SearchEngineTest.php


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