Go to the documentation of this file.
34 parent::__construct( $query, $moduleName,
'iw' );
38 if ( $this->
getPageSet()->getGoodTitleCount() == 0 ) {
43 $prop = array_flip( (array)$params[
'prop'] );
45 if ( isset( $params[
'title'] ) && !isset( $params[
'prefix'] ) ) {
48 'apierror-invalidparammix-mustusewith',
58 if ( $params[
'url'] ) {
59 $prop = [
'url' => 1 ];
71 if ( !is_null( $params[
'continue'] ) ) {
72 $cont = explode(
'|', $params[
'continue'] );
74 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
76 $iwlfrom = (int)$cont[0];
77 $iwlprefix = $db->addQuotes( $cont[1] );
78 $iwltitle = $db->addQuotes( $cont[2] );
80 "iwl_from $op $iwlfrom OR " .
81 "(iwl_from = $iwlfrom AND " .
82 "(iwl_prefix $op $iwlprefix OR " .
83 "(iwl_prefix = $iwlprefix AND " .
84 "iwl_title $op= $iwltitle)))"
88 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
89 if ( isset( $params[
'prefix'] ) ) {
90 $this->
addWhereFld(
'iwl_prefix', $params[
'prefix'] );
91 if ( isset( $params[
'title'] ) ) {
92 $this->
addWhereFld(
'iwl_title', $params[
'title'] );
102 if ( count( $this->
getPageSet()->getGoodTitles() ) == 1 ) {
107 'iwl_prefix' .
$sort,
113 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
117 foreach (
$res as $row ) {
118 if ( ++$count > $params[
'limit'] ) {
123 "{$row->iwl_from}|{$row->iwl_prefix}|{$row->iwl_title}"
127 $entry = [
'prefix' => $row->iwl_prefix ];
129 if ( isset( $prop[
'url'] ) ) {
141 "{$row->iwl_from}|{$row->iwl_prefix}|{$row->iwl_title}"
189 'action=query&prop=iwlinks&titles=Main%20Page'
190 =>
'apihelp-query+iwlinks-example-simple',
195 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Iwlinks';
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.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getCacheMode( $params)
Get the cache mode for the data generated by this module.
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.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
__construct(ApiQuery $query, $moduleName)
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
A query module to list all interwiki links on a page.
This is a base class for all Query modules.
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,...
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
getPageSet()
Get the PageSet object to work on.
getHelpUrls()
Return links to more detailed help pages about the module.
const LIMIT_BIG2
Fast query, apihighlimits limit.
getExamplesMessages()
Returns usage examples for this module.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
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.
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.