35 parent::__construct( $query, $moduleName,
'll' );
39 if ( $this->
getPageSet()->getGoodTitleCount() == 0 ) {
46 if ( isset( $params[
'title'] ) && !isset( $params[
'lang'] ) ) {
52 if ( $params[
'url'] ) {
53 $prop = [
'url' => 1 ];
64 if ( !is_null( $params[
'continue'] ) ) {
65 $cont = explode(
'|', $params[
'continue'] );
67 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
68 $llfrom = intval( $cont[0] );
69 $lllang = $this->
getDB()->addQuotes( $cont[1] );
71 "ll_from $op $llfrom OR " .
72 "(ll_from = $llfrom AND " .
73 "ll_lang $op= $lllang)"
83 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
84 if ( isset( $params[
'lang'] ) ) {
86 if ( isset( $params[
'title'] ) ) {
92 if ( count( $this->
getPageSet()->getGoodTitles() ) == 1 ) {
102 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
106 foreach (
$res as $row ) {
107 if ( ++
$count > $params[
'limit'] ) {
113 $entry = [
'lang' => $row->ll_lang ];
114 if ( isset( $prop[
'url'] ) ) {
120 if ( isset( $prop[
'langname'] ) ) {
123 if ( isset( $prop[
'autonym'] ) ) {
160 'inlanguagecode' => $wgContLang->getCode(),
180 'action=query&prop=langlinks&titles=Main%20Page&redirects='
181 =>
'apihelp-query+langlinks-example-simple',
186 return 'https://www.mediawiki.org/wiki/API:Langlinks';
select($method, $extraQuery=[])
Execute a SELECT query based on the values in the internal arrays.
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
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.
requireMaxOneParameter($params, $required)
Die if more than one of a certain set of parameters is set and not false.
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'.
This is a base class for all Query modules.
extractRequestParams($parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user...
__construct(ApiQuery $query, $moduleName)
getPageSet()
Get the PageSet object to work on.
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 newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
when a variable name is used in a it is silently declared as a new local masking the global
wfExpandUrl($url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
addWhere($value)
Add a set of WHERE clauses to the internal array.
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
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.
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.
static fetchLanguageName($code, $inLanguage=null, $include= 'all')
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter...
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
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.
setContinueEnumParameter($paramName, $paramValue)
Set a query-continue value.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
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 langlinks (links to corresponding foreign language pages).
addTables($tables, $alias=null)
Add a set of tables to the internal array.
dieUsageMsg($error)
Output the error message related to a certain array.