Go to the documentation of this file.
33 parent::__construct( $query, $moduleName,
'lbl' );
41 $this->
run( $resultPageSet );
48 public function run( $resultPageSet =
null ) {
51 if ( isset( $params[
'title'] ) && !isset( $params[
'lang'] ) ) {
54 'apierror-invalidparammix-mustusewith',
62 if ( !is_null( $params[
'continue'] ) ) {
63 $cont = explode(
'|', $params[
'continue'] );
67 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
68 $prefix = $db->addQuotes( $cont[0] );
69 $title = $db->addQuotes( $cont[1] );
70 $from = (int)$cont[2];
72 "ll_lang $op $prefix OR " .
73 "(ll_lang = $prefix AND " .
74 "(ll_title $op $title OR " .
75 "(ll_title = $title AND " .
76 "ll_from $op= $from)))"
80 $prop = array_flip( $params[
'prop'] );
81 $lllang = isset( $prop[
'lllang'] );
82 $lltitle = isset( $prop[
'lltitle'] );
84 $this->
addTables( [
'langlinks',
'page' ] );
85 $this->
addWhere(
'll_from = page_id' );
87 $this->
addFields( [
'page_id',
'page_title',
'page_namespace',
'page_is_redirect',
88 'll_from',
'll_lang',
'll_title' ] );
90 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
91 if ( isset( $params[
'lang'] ) ) {
93 if ( isset( $params[
'title'] ) ) {
110 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
118 foreach (
$res as $row ) {
119 if ( ++$count > $params[
'limit'] ) {
125 "{$row->ll_lang}|{$row->ll_title}|{$row->ll_from}"
130 if ( !is_null( $resultPageSet ) ) {
133 $entry = [
'pageid' => (int)$row->page_id ];
138 if ( $row->page_is_redirect ) {
139 $entry[
'redirect'] =
true;
143 $entry[
'lllang'] = $row->ll_lang;
147 $entry[
'lltitle'] = $row->ll_title;
150 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $entry );
154 "{$row->ll_lang}|{$row->ll_title}|{$row->ll_from}"
161 if ( is_null( $resultPageSet ) ) {
162 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'll' );
164 $resultPageSet->populateFromTitles( $pages );
207 'action=query&list=langbacklinks&lbltitle=Test&lbllang=fr'
208 =>
'apihelp-query+langbacklinks-example-simple',
209 'action=query&generator=langbacklinks&glbltitle=Test&glbllang=fr&prop=info'
210 =>
'apihelp-query+langbacklinks-example-generator',
215 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Langbacklinks';
__construct(ApiQuery $query, $moduleName)
addFields( $value)
Add a set of fields to select to the internal array.
This is the main query class.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
encodeParamName( $paramName)
Overrides ApiBase to prepend 'g' to every generator parameter.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
This gives links pointing to the given interwiki.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getResult()
Get the result object.
getExamplesMessages()
Returns usage examples for this module.
run( $resultPageSet=null)
getHelpUrls()
Return links to more detailed help pages about the module.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
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'.
static newFromRow( $row)
Make a Title object from a DB row.
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.
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.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
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.
executeGenerator( $resultPageSet)
Execute this module as a generator.
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...
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.