r32045 committed from wrong working branch. Revert and commit the one I wanted.
[mediawiki.git] / includes / ImageQueryPage.php
blob8948ddc6749871e22310392bf7a7ed56164525e6
1 <?php
3 /**
4 * Variant of QueryPage which uses a gallery to output results, thus
5 * suited for reports generating images
7 * @package MediaWiki
8 * @addtogroup SpecialPage
9 * @author Rob Church <robchur@gmail.com>
11 class ImageQueryPage extends QueryPage {
13 /**
14 * Format and output report results using the given information plus
15 * OutputPage
17 * @param OutputPage $out OutputPage to print to
18 * @param Skin $skin User skin to use
19 * @param Database $dbr Database (read) connection to use
20 * @param int $res Result pointer
21 * @param int $num Number of available result rows
22 * @param int $offset Paging offset
24 protected function outputResults( $out, $skin, $dbr, $res, $num, $offset ) {
25 if( $num > 0 ) {
26 $gallery = new ImageGallery();
27 $gallery->useSkin( $skin );
29 # $res might contain the whole 1,000 rows, so we read up to
30 # $num [should update this to use a Pager]
31 for( $i = 0; $i < $num && $row = $dbr->fetchObject( $res ); $i++ ) {
32 $image = $this->prepareImage( $row );
33 if( $image ) {
34 $gallery->add( $image->getTitle(), $this->getCellHtml( $row ) );
38 $out->addHtml( $gallery->toHtml() );
42 /**
43 * Prepare an image object given a result row
45 * @param object $row Result row
46 * @return Image
48 private function prepareImage( $row ) {
49 $namespace = isset( $row->namespace ) ? $row->namespace : NS_IMAGE;
50 $title = Title::makeTitleSafe( $namespace, $row->title );
51 return ( $title instanceof Title && $title->getNamespace() == NS_IMAGE )
52 ? wfFindFile( $title )
53 : null;
56 /**
57 * Get additional HTML to be shown in a results' cell
59 * @param object $row Result row
60 * @return string
62 protected function getCellHtml( $row ) {
63 return '';