Displays newly designed interwiki search results in the sidebar of the specialSearch page. A prototype of this change can be viewed on this labs url: http://sistersearch.wmflabs.org/w/index.php?title=Special:Search&search=mars Bug: T149806 Change-Id: I66e4b6a502dae488d105f11cad73e145990c2327
18 lines
382 B
PHP
18 lines
382 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Widget\Search;
|
|
|
|
use SearchResultSet;
|
|
|
|
/**
|
|
* Renders a set of search results to HTML
|
|
*/
|
|
interface SearchResultSetWidget {
|
|
/**
|
|
* @param string $term User provided search term
|
|
* @param SearchResultSet|SearchResultSet[] $resultSets List of interwiki
|
|
* results to render.
|
|
* @return string HTML
|
|
*/
|
|
public function render( $term, $resultSets );
|
|
}
|