Go to the documentation of this file.
40 switch ( $moduleName ) {
42 $this->
table =
'pagelinks';
44 $this->titlesParam =
'titles';
45 $this->helpUrl =
'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Links';
48 $this->
table =
'templatelinks';
50 $this->titlesParam =
'templates';
51 $this->helpUrl =
'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Templates';
57 parent::__construct(
$query, $moduleName, $this->prefix );
69 $this->
run( $resultPageSet );
75 private function run( $resultPageSet =
null ) {
76 if ( $this->
getPageSet()->getGoodTitleCount() == 0 ) {
83 'pl_from' => $this->prefix .
'_from',
84 'pl_namespace' => $this->prefix .
'_namespace',
85 'pl_title' => $this->prefix .
'_title'
92 if ( !is_null(
$params[$this->titlesParam] ) ) {
102 $cond = $lb->constructSet( $this->prefix, $this->
getDB() );
108 if ( !is_null(
$params[
'continue'] ) ) {
109 $cont = explode(
'|',
$params[
'continue'] );
111 $op =
$params[
'dir'] ==
'descending' ?
'<' :
'>';
112 $plfrom = intval( $cont[0] );
113 $plns = intval( $cont[1] );
114 $pltitle = $this->
getDB()->addQuotes( $cont[2] );
116 "{$this->prefix}_from $op $plfrom OR " .
117 "({$this->prefix}_from = $plfrom AND " .
118 "({$this->prefix}_namespace $op $plns OR " .
119 "({$this->prefix}_namespace = $plns AND " .
120 "{$this->prefix}_title $op= $pltitle)))"
124 $sort = (
$params[
'dir'] ==
'descending' ?
' DESC' :
'' );
132 $order[] = $this->prefix .
'_from' .
$sort;
135 $order[] = $this->prefix .
'_namespace' .
$sort;
138 $order[] = $this->prefix .
'_title' .
$sort;
144 if ( is_null( $resultPageSet ) ) {
146 foreach (
$res as $row ) {
147 if ( ++$count >
$params[
'limit'] ) {
151 "{$row->pl_from}|{$row->pl_namespace}|{$row->pl_title}" );
159 "{$row->pl_from}|{$row->pl_namespace}|{$row->pl_title}" );
166 foreach (
$res as $row ) {
167 if ( ++$count >
$params[
'limit'] ) {
171 "{$row->pl_from}|{$row->pl_namespace}|{$row->pl_title}" );
176 $resultPageSet->populateFromTitles(
$titles );
197 $this->titlesParam => [
215 "action=query&prop={$name}&titles=Main%20Page"
216 =>
"apihelp-{$path}-example-simple",
217 "action=query&generator={$name}&titles=Main%20Page&prop=info"
218 =>
"apihelp-{$path}-example-generator",
219 "action=query&prop={$name}&titles=Main%20Page&{$this->prefix}namespace=2|10"
220 =>
"apihelp-{$path}-example-namespaces",
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
addFields( $value)
Add a set of fields to select to the internal array.
This is the main query class.
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
A query module to list all wiki links on a given set of pages.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Allows to change the fields on the form that will be generated $name
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
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
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
null for the 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
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
getPageSet()
Get the PageSet object to work on.
namespace and then decline to actually register it file or subcat img or subcat $title
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
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if so it s not worth the trouble Since there is a job queue in the jobs table
getModulePath()
Get the path to this module.
const LIMIT_BIG1
Fast query, standard limit.
getDB()
Get the Query database connection (read-only)
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.
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
const PARAM_EXTRA_NAMESPACES
(int[]) When PARAM_TYPE is 'namespace', include these as additional possible values.
getExamplesMessages()
Returns usage examples for this module.
executeGenerator( $resultPageSet)
Execute this module as a generator.
__construct(ApiQuery $query, $moduleName)
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
getCacheMode( $params)
Get the cache mode for the data generated by this module.
const LIMIT_BIG2
Fast query, apihighlimits limit.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
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
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.
getHelpUrls()
Return links to more detailed help pages about the module.
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.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
static dieDebug( $method, $message)
Internal code errors should be reported with this method.
run( $resultPageSet=null)
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.