189798da798189ca35f52cd6b8dc788df1c380c5
[lhc/web/wiklou.git] / includes / specials / SpecialPagesWithProp.php
1 <?php
2 /**
3 * Implements Special:PagesWithProp
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @since 1.21
21 * @file
22 * @ingroup SpecialPage
23 * @author Brad Jorsch
24 */
25
26
27 /**
28 * Special:PagesWithProp to search the page_props table
29 * @ingroup SpecialPage
30 * @since 1.21
31 */
32 class SpecialPagesWithProp extends QueryPage {
33 private $propName = null;
34
35 function __construct( $name = 'PagesWithProp' ) {
36 parent::__construct( $name );
37 }
38
39 function isCacheable() {
40 return false;
41 }
42
43 function execute( $par ) {
44 $this->setHeaders();
45 $this->outputHeader();
46
47 $request = $this->getRequest();
48 $propname = $request->getVal( 'propname', $par );
49
50 $dbr = wfGetDB( DB_SLAVE );
51 $res = $dbr->select(
52 'page_props',
53 'pp_propname',
54 '',
55 __METHOD__,
56 array( 'DISTINCT', 'ORDER BY' => 'pp_propname' )
57 );
58 foreach ( $res as $row ) {
59 $propnames[$row->pp_propname] = $row->pp_propname;
60 }
61
62 $form = new HTMLForm( array(
63 'propname' => array(
64 'type' => 'selectorother',
65 'name' => 'propname',
66 'options' => $propnames,
67 'default' => $propname,
68 'label-message' => 'pageswithprop-prop',
69 'required' => true,
70 ),
71 ), $this->getContext() );
72 $form->setMethod( 'get' );
73 $form->setAction( $this->getTitle()->getFullUrl() );
74 $form->setSubmitCallback( array( $this, 'onSubmit' ) );
75 $form->setWrapperLegend( $this->msg( 'pageswithprop-legend' ) );
76 $form->addHeaderText( $this->msg( 'pageswithprop-text' )->parseAsBlock() );
77 $form->setSubmitTextMsg( 'pageswithprop-submit' );
78
79 $form->prepareForm();
80 $form->displayForm( false );
81 if ( $propname !== '' && $propname !== null ) {
82 $form->trySubmit();
83 }
84 }
85
86 public function onSubmit( $data, $form ) {
87 $this->propName = $data['propname'];
88 parent::execute( $data['propname'] );
89 }
90
91 /**
92 * Disable RSS/Atom feeds
93 * @return bool
94 */
95 function isSyndicated() {
96 return false;
97 }
98
99 function getQueryInfo() {
100 return array(
101 'tables' => array( 'page_props', 'page' ),
102 'fields' => array(
103 'page_id' => 'pp_page',
104 'page_namespace',
105 'page_title',
106 'page_len',
107 'page_is_redirect',
108 'page_latest',
109 'pp_value',
110 ),
111 'conds' => array(
112 'page_id = pp_page',
113 'pp_propname' => $this->propName,
114 ),
115 'options' => array()
116 );
117 }
118
119 function getOrderFields() {
120 return array( 'page_id' );
121 }
122
123 function formatResult( $skin, $result ) {
124 $title = Title::newFromRow( $result );
125 $ret = Linker::link( $title, null, array(), array(), array( 'known' ) );
126 if ( $result->pp_value !== '' ) {
127 $value = $this->msg( 'parentheses' )
128 ->rawParams( Xml::span( $result->pp_value, 'prop-value' ) )
129 ->escaped();
130 $ret .= " $value";
131 }
132 return $ret;
133 }
134 }