3 * Implements Special:PagesWithProp
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.
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.
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
22 * @ingroup SpecialPage
27 * Special:PagesWithProp to search the page_props table
28 * @ingroup SpecialPage
31 class SpecialPagesWithProp
extends QueryPage
{
32 private $propName = null;
34 function __construct( $name = 'PagesWithProp' ) {
35 parent
::__construct( $name );
38 function isCacheable() {
42 function execute( $par ) {
44 $this->outputHeader();
45 $this->getOutput()->addModuleStyles( 'mediawiki.special.pagesWithProp' );
47 $request = $this->getRequest();
48 $propname = $request->getVal( 'propname', $par );
50 $dbr = wfGetDB( DB_SLAVE
);
56 array( 'DISTINCT', 'ORDER BY' => 'pp_propname' )
59 foreach ( $res as $row ) {
60 $propnames[$row->pp_propname
] = $row->pp_propname
;
63 $form = new HTMLForm( array(
65 'type' => 'selectorother',
67 'options' => $propnames,
68 'default' => $propname,
69 'label-message' => 'pageswithprop-prop',
72 ), $this->getContext() );
73 $form->setMethod( 'get' );
74 $form->setSubmitCallback( array( $this, 'onSubmit' ) );
75 $form->setWrapperLegendMsg( 'pageswithprop-legend' );
76 $form->addHeaderText( $this->msg( 'pageswithprop-text' )->parseAsBlock() );
77 $form->setSubmitTextMsg( 'pageswithprop-submit' );
80 $form->displayForm( false );
81 if ( $propname !== '' && $propname !== null ) {
86 public function onSubmit( $data, $form ) {
87 $this->propName
= $data['propname'];
88 parent
::execute( $data['propname'] );
92 * Disable RSS/Atom feeds
95 function isSyndicated() {
99 function getQueryInfo() {
101 'tables' => array( 'page_props', 'page' ),
103 'page_id' => 'pp_page',
113 'pp_propname' => $this->propName
,
119 function getOrderFields() {
120 return array( 'page_id' );
125 * @param object $result Result row
128 function formatResult( $skin, $result ) {
129 $title = Title
::newFromRow( $result );
130 $ret = Linker
::link( $title, null, array(), array(), array( 'known' ) );
131 if ( $result->pp_value
!== '' ) {
132 // Do not show very long or binary values on the special page
133 $valueLength = strlen( $result->pp_value
);
134 $isBinary = strpos( $result->pp_value
, "\0" ) !== false;
135 $isTooLong = $valueLength > 1024;
137 if ( $isBinary ||
$isTooLong ) {
139 ->msg( $isBinary ?
'pageswithprop-prophidden-binary' : 'pageswithprop-prophidden-long' )
140 ->params( $this->getLanguage()->formatSize( $valueLength ) );
142 $propValue = Html
::element( 'span', array( 'class' => 'prop-value-hidden' ), $message->text() );
144 $propValue = Html
::element( 'span', array( 'class' => 'prop-value' ), $result->pp_value
);
147 $ret .= $this->msg( 'colon-separator' )->escaped() . $propValue;
153 protected function getGroupName() {