本文整理匯總了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());
}
示例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();
}
示例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());
}
}
示例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");
}