Go to the documentation of this file.
33 parent::__construct( $query, $moduleName,
'pwp' );
45 $this->
run( $resultPageSet );
52 private function run( $resultPageSet =
null ) {
55 $prop = array_flip( $params[
'prop'] );
56 $fld_ids = isset( $prop[
'ids'] );
57 $fld_title = isset( $prop[
'title'] );
58 $fld_value = isset( $prop[
'value'] );
60 if ( $resultPageSet ===
null ) {
62 $this->
addFieldsIf( [
'page_title',
'page_namespace' ], $fld_title );
65 $this->
addFields( $resultPageSet->getPageTableFields() );
67 $this->
addTables( [
'page_props',
'page' ] );
68 $this->
addWhere(
'pp_page=page_id' );
69 $this->
addWhereFld(
'pp_propname', $params[
'propname'] );
71 $dir = ( $params[
'dir'] ==
'ascending' ) ?
'newer' :
'older';
73 if ( $params[
'continue'] ) {
74 $cont = explode(
'|', $params[
'continue'] );
78 $from = (int)$cont[0];
82 $sort = ( $params[
'dir'] ===
'descending' ?
' DESC' :
'' );
85 $limit = $params[
'limit'];
90 foreach ( $this->
select( __METHOD__ ) as $row ) {
91 if ( ++$count > $limit ) {
98 if ( $resultPageSet ===
null ) {
103 $vals[
'pageid'] = (int)$row->page_id;
110 $vals[
'value'] = $row->pp_value;
112 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $vals );
118 $resultPageSet->processDbRow( $row );
122 if ( $resultPageSet ===
null ) {
123 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'page' );
165 'action=query&list=pageswithprop&pwppropname=displaytitle&pwpprop=ids|title|value'
166 =>
'apihelp-query+pageswithprop-example-simple',
167 'action=query&generator=pageswithprop&gpwppropname=notoc&prop=info'
168 =>
'apihelp-query+pageswithprop-example-generator',
173 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Pageswithprop';
getHelpUrls()
Return links to more detailed help pages about the module.
addFields( $value)
Add a set of fields to select to the internal array.
This is the main query class.
const PARAM_REQUIRED
(boolean) Is the parameter required?
__construct(ApiQuery $query, $moduleName)
const META_TYPE
Key for the 'type' metadata item.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
run( $resultPageSet=null)
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getResult()
Get the result object.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
A query module to enumerate pages that use a particular prop.
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getExamplesMessages()
Returns usage examples for this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
const LIMIT_BIG1
Fast query, standard limit.
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
addWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, and an ORDER BY clause to sort in the right direction.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
const LIMIT_BIG2
Fast query, apihighlimits limit.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
getModuleName()
Get the name of the module being executed by this instance.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
addWhere( $value)
Add a set of WHERE clauses to the internal array.
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
executeGenerator( $resultPageSet)
Execute this module as a generator.
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.