Add a Antispam group to Special:Version... we have a lot of these kind of extensions...
[mediawiki.git] / includes / ImageQueryPage.php
blob180201a2f292be001f4aa69fcca4371c498909c3
1 <?php
3 /**
4 * Variant of QueryPage which uses a gallery to output results, thus
5 * suited for reports generating images
7 * @ingroup SpecialPage
8 * @author Rob Church <robchur@gmail.com>
9 */
10 class ImageQueryPage extends QueryPage {
12 /**
13 * Format and output report results using the given information plus
14 * OutputPage
16 * @param $out OutputPage to print to
17 * @param $skin Skin: user skin to use
18 * @param $dbr Database (read) connection to use
19 * @param $res Integer: result pointer
20 * @param $num Integer: number of available result rows
21 * @param $offset Integer: paging offset
23 protected function outputResults( $out, $skin, $dbr, $res, $num, $offset ) {
24 if( $num > 0 ) {
25 $gallery = new ImageGallery();
26 $gallery->useSkin( $skin );
28 # $res might contain the whole 1,000 rows, so we read up to
29 # $num [should update this to use a Pager]
30 for( $i = 0; $i < $num && $row = $dbr->fetchObject( $res ); $i++ ) {
31 $image = $this->prepareImage( $row );
32 if( $image ) {
33 $gallery->add( $image->getTitle(), $this->getCellHtml( $row ) );
37 $out->addHTML( $gallery->toHtml() );
41 /**
42 * Prepare an image object given a result row
44 * @param $row Object: result row
45 * @return Image
47 private function prepareImage( $row ) {
48 $namespace = isset( $row->namespace ) ? $row->namespace : NS_FILE;
49 $title = Title::makeTitleSafe( $namespace, $row->title );
50 return ( $title instanceof Title && $title->getNamespace() == NS_FILE )
51 ? wfFindFile( $title )
52 : null;
55 /**
56 * Get additional HTML to be shown in a results' cell
58 * @param $row Object: result row
59 * @return String
61 protected function getCellHtml( $row ) {
62 return '';