wiki.techinc.nl/includes/search/AugmentPageProps.php
David Causse 6af636fb03 Add ISearchResultSet
Bug: T228626
Change-Id: I3306bf6107c97dd58adf578fd965bd11a422627d
2019-07-22 18:27:39 +00:00

20 lines
469 B
PHP

<?php
/**
* Augment search result set with values of certain page props.
*/
class AugmentPageProps implements ResultSetAugmentor {
/**
* @var array List of properties.
*/
private $propnames;
public function __construct( $propnames ) {
$this->propnames = $propnames;
}
public function augmentAll( ISearchResultSet $resultSet ) {
$titles = $resultSet->extractTitles();
return PageProps::getInstance()->getProperties( $titles, $this->propnames );
}
}