uawdijnntqw1x1x1
IP : 216.73.216.54
Hostname : neogeopocket.gameplayer.club
Kernel : Linux neogeopocket.gameplayer.club 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
var
/
www
/
html
/
1c732
/
..
/
mediawiki
/
includes
/
search
/
SqlSearchResultSet.php
/
/
<?php use MediaWiki\MediaWikiServices; use MediaWiki\Title\Title; use Wikimedia\Rdbms\IResultWrapper; /** * This class is used for different SQL-based search engines shipped with MediaWiki * @ingroup Search */ class SqlSearchResultSet extends SearchResultSet { /** @noinspection PhpMissingParentConstructorInspection */ /** @var IResultWrapper Result object from database */ protected $resultSet; /** @var string[] Requested search query */ protected $terms; /** @var int|null Total number of hits for $terms */ protected $totalHits; /** * @param IResultWrapper $resultSet * @param string[] $terms * @param int|null $total */ public function __construct( IResultWrapper $resultSet, array $terms, $total = null ) { parent::__construct(); $this->resultSet = $resultSet; $this->terms = $terms; $this->totalHits = $total; } /** * @return string[] * @deprecated since 1.34 */ public function termMatches() { return $this->terms; } public function numRows() { if ( $this->resultSet === false ) { return 0; } return $this->resultSet->numRows(); } public function extractResults() { if ( $this->resultSet === false ) { return []; } if ( $this->results === null ) { $this->results = []; $this->resultSet->rewind(); $terms = MediaWikiServices::getInstance()->getContentLanguage() ->convertForSearchResult( $this->terms ); foreach ( $this->resultSet as $row ) { $result = new SqlSearchResult( Title::makeTitle( $row->page_namespace, $row->page_title ), $terms ); $this->augmentResult( $result ); $this->results[] = $result; } } return $this->results; } public function getTotalHits() { if ( $this->totalHits !== null ) { return $this->totalHits; } else { // Special:Search expects a number here. return $this->numRows(); } } }
/var/www/html/1c732/../mediawiki/includes/search/SqlSearchResultSet.php