35 parent::__construct( $query, $moduleName,
'cl' );
47 $this->
run( $resultPageSet );
53 private function run( $resultPageSet = null ) {
54 if ( $this->
getPageSet()->getGoodTitleCount() == 0 ) {
60 $show = array_flip( (
array)$params[
'show'] );
67 $this->
addFieldsIf( [
'cl_sortkey',
'cl_sortkey_prefix' ], isset( $prop[
'sortkey'] ) );
68 $this->
addFieldsIf(
'cl_timestamp', isset( $prop[
'timestamp'] ) );
72 if ( !is_null( $params[
'categories'] ) ) {
74 foreach ( $params[
'categories']
as $cat ) {
77 $this->
setWarning(
"\"$cat\" is not a category" );
79 $cats[] =
$title->getDBkey();
85 if ( !is_null( $params[
'continue'] ) ) {
86 $cont = explode(
'|', $params[
'continue'] );
88 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
89 $clfrom = intval( $cont[0] );
90 $clto = $this->
getDB()->addQuotes( $cont[1] );
92 "cl_from $op $clfrom OR " .
93 "(cl_from = $clfrom AND " .
98 if ( isset( $show[
'hidden'] ) && isset( $show[
'!hidden'] ) ) {
101 if ( isset( $show[
'hidden'] ) || isset( $show[
'!hidden'] ) || isset( $prop[
'hidden'] ) ) {
103 $this->
addTables( [
'page',
'page_props' ] );
104 $this->
addFieldsIf(
'pp_propname', isset( $prop[
'hidden'] ) );
106 'page' => [
'LEFT JOIN', [
108 'page_title = cl_to' ] ],
109 'page_props' => [
'LEFT JOIN', [
111 'pp_propname' =>
'hiddencat' ] ]
113 if ( isset( $show[
'hidden'] ) ) {
114 $this->
addWhere( [
'pp_propname IS NOT NULL' ] );
115 } elseif ( isset( $show[
'!hidden'] ) ) {
116 $this->
addWhere( [
'pp_propname IS NULL' ] );
120 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
122 if ( count( $this->
getPageSet()->getGoodTitles() ) == 1 ) {
134 if ( is_null( $resultPageSet ) ) {
135 foreach (
$res as $row ) {
136 if ( ++
$count > $params[
'limit'] ) {
146 if ( isset( $prop[
'sortkey'] ) ) {
147 $vals[
'sortkey'] = bin2hex( $row->cl_sortkey );
148 $vals[
'sortkeyprefix'] = $row->cl_sortkey_prefix;
150 if ( isset( $prop[
'timestamp'] ) ) {
153 if ( isset( $prop[
'hidden'] ) ) {
154 $vals[
'hidden'] = !is_null( $row->pp_propname );
165 foreach (
$res as $row ) {
166 if ( ++
$count > $params[
'limit'] ) {
175 $resultPageSet->populateFromTitles(
$titles );
222 'action=query&prop=categories&titles=Albert%20Einstein'
223 =>
'apihelp-query+categories-example-simple',
224 'action=query&generator=categories&titles=Albert%20Einstein&prop=info'
225 =>
'apihelp-query+categories-example-generator',
230 return 'https://www.mediawiki.org/wiki/API:Categories';
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below...
getDB()
Get the Query database connection (read-only)
const LIMIT_BIG2
Fast query, apihighlimits limit.
the array() calling protocol came about after MediaWiki 1.4rc1.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
A query module to enumerate categories the set of pages belong to.
addWhereFld($field, $value)
Equivalent to addWhere(array($field => $value))
addPageSubItem($pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
const LIMIT_BIG1
Fast query, standard limit.
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
extractRequestParams($parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user...
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
select($method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
setContinueEnumParameter($paramName, $paramValue)
Overridden to set the generator param if in generator mode.
addWhere($value)
Add a set of WHERE clauses to the internal array.
const TS_ISO_8601
ISO 8601 format with no timezone: 1986-02-09T20:00:00Z.
addJoinConds($join_conds)
Add a set of JOIN conditions to the internal array.
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
executeGenerator($resultPageSet)
addOption($name, $value=null)
Add an option such as LIMIT or USE INDEX.
namespace and then decline to actually register it file or subcat img or subcat $title
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right, for PARAM_TYPE 'limit'.
This is the main query class.
setWarning($warning)
Set warning section for this module.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
dieContinueUsageIf($condition)
Die with the $prefix.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter...
addFieldsIf($value, $condition)
Same as addFields(), but add the fields only if a condition is met.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
addFields($value)
Add a set of fields to select to the internal array.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
static addTitleInfo(&$arr, $title, $prefix= '')
Add information (title and namespace) about a Title object to a result array.
getPageSet()
Get the PageSet object to work on.
addTables($tables, $alias=null)
Add a set of tables to the internal array.
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
dieUsageMsg($error)
Output the error message related to a certain array.
__construct(ApiQuery $query, $moduleName)