한국   대만   중국   일본 
Template:Extension - MediaWiki

Template : Extension

Template documentation

This template should be added to all extension pages on this wiki (but only the main page). It will add a useful infobox (see below) and will automatically add the extension to Category:All extensions , along with the appropriate status and implementation type categories.

Usage

Copy and paste:

{{Extension |templatemode =
|name                 = 
|status               = 
|type1                = 
|type2                = 
|hook1                = 
|hook2                = 
|newhook1             = 
|newhook2             = 
|username             = 
|author               = 
|description          = 
|image                = 
|imagesize            = 
|version              = 
|update               = 
|version preview      = 
|update preview       = 
|compatibility policy =
|mediawiki            = 
|php                  = 
|needs-updatephp      = 
|composer             =
|table1               = 
|table2               = 
|license              = 
|download             = 
|repo                 =
|readme               = 
|changelog            = 
|help                 = 
|example              = 
|namespace            = 
|parameters           = 
|tags                 = 
|rights               = 
|compatibility        = 
|phabricator          =
|translate            = 
|vagrant-role         = 
}}
For help with parameter values, see below .
MediaWiki extensions manual
{{{name}}}
Release status: unknown
Implementation {{{type1}}}, {{{type2}}}
Description {{{description}}}
Author(s) SomeAuthor ( SomeUser talk )
Latest version {{{version}}} ({{{update}}})
Latest preview version {{{version preview}}} ({{{update preview}}})
Compatibility policy invalid
MediaWiki {{{mediawiki}}}
PHP {{{php}}}
Database changes {{{needs-updatephp}}}
Composer {{{composer}}}
Tables [[Special:MyLanguage/Template:Extension/{{{table1}}} table|{{{table1}}}]] [[:Template:Extension/{{{table1}}} table| ]]
[[Special:MyLanguage/Template:Extension/{{{table2}}} table|{{{table2}}}]] [[:Template:Extension/{{{table2}}} table| ]]
License {{{license}}}
Download {{{download}}}
{{{readme}}}
{{{changelog}}}
Help {{{help}}}
Example {{{example}}}
{{{namespace}}}
{{{parameters}}}
{{{tags}}}

{{{rights}}}

{{{compatibility}}}
[[translatewiki:Special:Translate/{{{translate}}}|Translate the Extension extension]]
Vagrant role {{{vagrant-role}}}
Issues [[phab:tag/{{{phabricator}}}|Open tasks]] · Report a bug

Content parameters

This section describes parameters that govern infobox content. For help with templatemode and other control parameters, please see Control parameters .

Content parameters
Parameter Description
name name of the extension
status

current release status One of:

If the status is anything other than the above, it will be ignored and the default value of 'Unknown' will be displayed in the template instead. In cases where the value is omitted, it will be categorised as unknown . In cases where the value is invalid, it will be placed in a special category so that the error can be caught and fixed.

type1
type2
type3
type4
type5
type6
implementation type

The implementation strategy(s) employed in building this extension. This parameter is used to create categories that help programmers find examples of various MediaWiki specific implementation strategies or patterns. Although the values of this parameter sometimes coincide with the use case or purpose of an extension, that is not reason for this parameter. If the values you have chosen for this parameter do not adequately identify the purpose or possible use cases , we recommend you add additional category links as needed.

Allowed values for the type1 , type2 , ... parameters are:

Any other value for 'type' is invalid, and will cause the extension to be placed in Category:Extensions with invalid or missing type .

Note: Many extensions have more than one type, if this applies to yours, replace |type= with |type1=|type2=|type3=... . You may define up to six types for an extension.
hook1
hook2
hook3
hook4
...
name of each hook used by the extension

Entering values in this field is a good way to get exposure for your extension and help other developers. Each documented hook will automatically add the extension to a category listing extensions that use that hook. This category is autolinked to each hook page so that programmers can easily find examples of extensions that use a particular hook.

For built-in hooks:

  • use the hook name alone. Please see Manual:Hooks for values (but omit introductory '/').

For custom hooks defined by extensions:

For multiple hooks, assign the first hook to hook1 , the second to hook2 and so on.
newhook1
newhook2
newhook3
newhook4
...
newhook90

name of each hook provided by the extension

You might also want to add the hooks to Extension hook registry .

username The author's username on MediaWiki.org (if they have one). May be omitted, but if present it will be used to link to the author's user & user_talk page. It should be provided without namespace and without [[]]s.
author The extension author's name, if different from their MediaWiki.org username. Free text. If omitted then the 'username' field will be used (if present).
description short description
image Screenshot or logo of extension. It should be provided without namespace and without [[]]s.
imagesize Facultative , size of the image without adding px, e.g. 360 (default size is 300px)
version Last version
update Date of the last update
version preview Preview version
update preview Date of the last update to the preview version
compatibility policy Compatibility policy (accepted values: master , main , rel , ltsrel ). ( backlog )
mediawiki Required version of MediaWiki. Most extensions should not need to use this ? it defaults to the value of the 'requires' property of extension.json . See also Category:Extensions without MediaWiki version and Category:Extensions with manual MediaWiki version .
php Required version of PHP
needs-updatephp

yes indicates that the extension requires a database table schema change or a similar action, before the MediaWiki can run. It is a common pitfall: your MediaWiki will stall, if you forgot to run update.php - if the extension requires it. no should be set as a value since this assures that the extension does not need update.php to be run and thus avoids uncertainty

Extensions which conform to MediaWiki extension standards come with a schema change script which you need to start manually (once) before starting and accessing the MediaWiki through your browser, and after you copied all the extension files to $IP / extensions / ExtensionName and inserted wfLoadExtension ( "ExtensionName" ); into "LocalSettings.php", run from the command line:

cd path/to/wiki_install_directory cd maintenance php update.php

$IP stands for the Installation Path (or "directory") of your MediaWiki installation, the same directory that holds LocalSettings.php , index.php etc. .
composer The extension's Composer package name, in the standard format . It will be automatically included if set in an extension's "composer.json" file (i.e. this parameter is not required in that case). It will be linked to the extension's page on Packagist .
table1
table2
table3
table4
...
table30
name of each non-core table used by the extension Links to a subpage of your extension page. For instance, "table1 = cu_changes" at Extension:CheckUser will link to Extension:CheckUser/cu_changes table . Don't list core tables such as page or revision ; only list tables that are added by extensions.
license License governing use of this extension, as one of the codes found in https://spdx.org/licenses/ , e.g. GPL-2.0-or-later , GPL-2.0-only or GPL-3.0-or-later , etc.
download link to the download  : Git , {{ WikimediaDownload }}.
repo Name of the Gerrit repository the extension's code is stored in, if different from the page name. Setting this automatically sets |download= , and allows the template to automatically load data from the appropriate extension.json file.
readme External link to the readme file, e.g. https://phabricator.wikimedia.org/r/browse/mediawiki/extensions/Flow;master;README
changelog External link to the changelog file, e.g. Extension:GeoGebra/Changelog
help Link to user-help for the extension. If not provided, will look for Help:Extension: ExtensionName . If provided, full wikitext link should be given (because you may want to link to e.g. an external page).
example Example, website or screenshot of working extension
namespace namespace in which this extension is used
parameters Available parameters for LocalSettings.php
tags Any tags your extension uses (e.g. <tag1>, <tag2>).
rights Rights added by the extension. Not to be confused with the license! Rights are such as makebot or desysop , not such as GFDL or LGPL or GPL - those are licenses!
compatibility Additional compatibility information, for instance compatibility charts. It's encouraged to add any client-side compatibility information here too, especially when diverging from expectations of full support for a browser .
bugzilla Bugzilla MediaWiki extension component name
phabricator Phabricator project name
translate

Optional parameter to link the exact page where ( message group id with which) the extension will be translatable on translatewiki.net if enabled. If the default link is incorrect, manually set it to:

vagrant-role MediaWiki-Vagrant role
CheckUsageNameOverride Override the page name used for the check usage link.

Control parameters

Control parameters
Parameter Description
templatemode

Controls auto-categorisation of host page.

Normally left blank. Alternate values are:

  • nocats - suppresses categorisation and the 'check usage' link. Use this value if you are adding this template to subpages of an extension or to how-to documentation of extensions. For example, the usage image above sets templatemode=nocats because this isn't an actual extension page and we don't want to add this page to any categories on account of it.
  • nousage - suppresses the 'check usage' link. Link is also suppressed if the page is a subpage; it is not in the Extension: namespace; or if suppressed by 'templatemode=nocats'
If this is left blank, this template will add the host page to Category:All extensions and to one or more additional categories, depending on the values assigned to the Content parameters .

Using the infobox

Existing extension pages

If you want to add the infobox to an existing page, copy and paste the code at the top of this page .

Create a new extension page

If you want to create a new extension page, enter the name below and click the button. A new page will be created with the infobox template already in place.


A developer sharing their code in the MediaWiki code repository should expect:

Feedback / Criticism / Code reviews
Review and comments by other developers on things like framework use , security, efficiency and usability.
Developer tweaking
Other developers modifying your submission to improve or clean-up your code to meet new framework classes and methods, coding conventions and translations.
Improved access for wiki sysadmins
If you do decide to put your code on the wiki, another developer may decide to move it to the MediaWiki code repository for easier maintenance. You may then create a Developer account to continue maintaining it.
Future versions by other developers
New branches of your code being created automatically as new versions of MediaWiki are released. You should backport to these branches if you want to support older versions.
Incorporation of your code into other extensions with duplicate or similar purposes ? incorporating the best features from each extension.
Credit
Credit for your work being preserved in future versions ? including any merged extensions.
Similarly, you should credit the developers of any extensions whose code you borrow from ? especially when performing a merger.

Any developer who is uncomfortable with any of these actions occurring should not host in the code repository. You are still encouraged to create a summary page for your extension on the wiki to let people know about the extension, and where to download it.

Enhancing this template

If you would like to improve on this template, thanks! This is a complicated template so here is some help along the way:

The Create extension button

To improve the create extension button behavior:

Infobox parameters

In general:

  • To make this template easy to use, each label in the infobox is linked to documentation on the template parameter(s) it displays. If you add a parameter, please be sure to also add it to the content parameter documentation and link its label to that documentation.

To change/correct/add to the implementation type parameters:

  • Check the talk page - there have been some extensive discussions about this field.
  • The valid types and what they link to are defined at Module:Extension

To change the behavior of the hook parameters:

Test case

See if the following pages are still ok, after edited this template.

TemplateData

TemplateData
[ view · talk · edit ]

This is the TemplateData documentation for this template used by VisualEditor and other tools.

Extension

An infobox for a MediaWiki extension.

Template parameters [ Edit template data ]

Parameter Description Type Status
Name name

Name of the extension

Default
Current page name
Example
BlueSpice
String suggested
Status status

Current release status. One of: unstable, experimental, beta, stable, unmaintained, unknown.

Suggested values
experimental beta stable unmaintained unknown unstable
Default
unknown
Example
stable
String suggested
License license

Extension's license.

Example
GPL-3.0
String suggested
Mode templatemode

Controls auto-categorization of host page. Normally left blank. Alternate values are: nocats, nousage.

Unknown optional
Screenshot or logo image

Screenshot or logo of extension. It should be provided without namespace and without [[]]s.

Example
BlueSpice _Logo_v2020.png
File suggested
Image size imagesize

Optional size of the image in pixels (without unit)

Default
300
Example
180
Number optional
Type type

Implementation type. If more that one type is required leave empty and use "Primary type", "Secondary type", ... instead

String suggested
Primary type type1

Implementation type. See detailed doc.

Example
mywiki
String optional
Secondary type type2

Implementation type. See detailed doc.

Example
notify
String optional
Third type type3

Implementation type. See detailed doc.

Example
page action
String optional
Fourth type type4

Implementation type. See detailed doc.

Example
skin
String optional
Fifth type type5

Implementation type. See detailed doc.

Example
ajax
String optional
Sixth type type6

Implementation type. See detailed doc.

String optional
Description description

Short description

String suggested
Author author

The extension author's name, if different from their MediaWiki.org username. Free text, URL. If omitted then the 'username' field will be used (if present).

String suggested
Username username

The author's username on MediaWiki.org (if they have one). May be omitted, but if present it will be used to link to the author's user & user_talk page. It should be provided without namespace and without [[]]s.

String optional
Maintainer maintainer

Username or other information about who maintains this extension.

String optional
Latest version latest release version version latest_release_version

version of the last release

Example
4.4.2
String suggested
Latest version release date latest release date update latest_release_date

date of the last release

Example
2024/03/18
String suggested
Latest preview version latest preview version version preview latest_preview_version version_preview

version of the last preview

String optional
Latest preview version update date latest preview date update preview latest_preview_date update_preview

date of the last preview

Example
ltsrel
String optional
Compatibility policy compatibility policy

For older versions of MediaWiki, should one use the extension's master branch or the REL1_XX branch corresponding to the MediaWiki version? Allowed values: master, rel, ltsrel

Suggested values
master rel ltsrel
Example
1.39.x only
String suggested
MediaWiki version mediawiki

Required versions of MediaWiki. Not needed if this information is in extension.json.

Example
>= 1.35
String deprecated
PHP version php

Required version of PHP

Example
8.0.x
String optional
Needs update.php needs-updatephp

"Yes" : indicates that the extension requires a database table schema change or a similar action, before the MediaWiki can run. It is a common pitfall: your MediaWiki will stall, if you forgot to run update.php - if the extension requires it. "No" : should be set as a value since this assures that the extension does not need update.php to be run and thus avoids uncertainty.

Example
Yes
Boolean optional
Composer package name composer

If applicable the name of the "vendor" as well as the "package" should be entered in the format vendor/package, to point people directly to packagist.org, which serves as the package archive.

Example
mediawiki/semantic-media-wiki
String optional
Phabricator project name phabricator

name of the project in Phabricator

Example
MediaWiki-extensions-Babel
String suggested
Non-core table 1 table1

Name of a non-core table used by the extension.

Example
cn_notices
String optional
Non-core table 2 table2

Name of a non-core table used by the extension.

Example
cn_assignments
String optional
Non-core table 3 table3

Name of a non-core table used by the extension.

Example
cn_templates
String optional
Non-core table 4 table4

Name of a non-core table used by the extension.

Example
cn_notice_languages
String optional
Non-core table 5 table5

Name of a non-core table used by the extension.

Example
cn_notice_projects
String optional
Non-core table 6 table6

Name of a non-core table used by the extension.

Example
cn_notice_countries
String optional
Non-core table 7 table7

Name of a non-core table used by the extension.

Example
cn_notice_regions
String optional
Non-core table 8 table8

Name of a non-core table used by the extension.

Example
cn_template_mixins
String optional
Non-core table 9 table9

Name of a non-core table used by the extension.

Example
cn_notice_mixins
String optional
Non-core table 10 table10

Name of a non-core table used by the extension.

Example
cn_notice_mixin_params
String optional
Non-core table 11 table11

Name of a non-core table used by the extension.

Example
cn_known_devices
String optional
Non-core table 12 table12

Name of a non-core table used by the extension.

Example
cn_template_devices
String optional
Non-core table 13 table13

Name of a non-core table used by the extension.

Example
cn_known_mobile_carriers
String optional
Non-core table 14 table14

Name of a non-core table used by the extension.

Example
cn_notice_mobile_carriers
String optional
Non-core table 15 table15

Name of a non-core table used by the extension.

Example
cn_notice_log
String optional
Non-core table 16 table16

Name of a non-core table used by the extension.

Example
cn_template_log
String optional
Non-core table 17 table17

Name of a non-core table used by the extension.

String optional
Non-core table 18 table18

Name of a non-core table used by the extension.

String optional
Non-core table 19 table19

Name of a non-core table used by the extension.

String optional
Non-core table 20 table20

Name of a non-core table used by the extension.

String optional
Download link download

External link to download

URL optional
README link readme

External link to the readme file

URL optional
Changelog link changelog

External link to the changelog file

URL optional
Example example

Example, website or screenshot of working extension

String optional
Namespace namespace

Namespace in which this extension is used

String optional
Parameters parameters

Available parameters for LocalSettings.php

Example
* $wgInterwikiViewOnly * InterwikiCentralDB
String optional
Tags tags

Any tags the extension uses

String optional
Rights rights

User rights added by the extension.

String optional
hook1 hook1

Name of a hook provided by the extension.

Example
ParserAfterTidy
String optional
hook2 hook2

Name of a hook provided by the extension.

Example
InitializeArticleMaybeRedirect
String optional
hook3 hook3

Name of a hook provided by the extension.

Example
SkinTemplateOutputPageBeforeExec
String optional
hook4 hook4

Name of a hook provided by the extension.

String optional
hook5 hook5

Name of a hook provided by the extension.

String optional
hook6 hook6

Name of a hook provided by the extension.

String optional
hook7 hook7

Name of a hook provided by the extension.

String optional
hook8 hook8

Name of a hook provided by the extension.

String optional
hook9 hook9

Name of a hook provided by the extension.

String optional
hook10 hook10

Name of a hook provided by the extension.

String optional
hook11 hook11

Name of a hook provided by the extension.

String optional
hook12 hook12

Name of a hook provided by the extension.

String optional
hook13 hook13

Name of a hook provided by the extension.

String optional
hook14 hook14

Name of a hook provided by the extension.

String optional
hook15 hook15

Name of a hook provided by the extension.

String optional
hook16 hook16

Name of a hook provided by the extension.

String optional
hook17 hook17

Name of a hook provided by the extension.

String optional
hook18 hook18

Name of a hook provided by the extension.

String optional
hook19 hook19

Name of a hook provided by the extension.

String optional
hook20 hook20

Name of a hook provided by the extension.

String optional
hook21 hook21

Name of a hook provided by the extension.

String optional
hook22 hook22

Name of a hook provided by the extension.

String optional
hook23 hook23

Name of a hook provided by the extension.

String optional
hook24 hook24

Name of a hook provided by the extension.

String optional
hook25 hook25

Name of a hook provided by the extension.

String optional
hook26 hook26

Name of a hook provided by the extension.

String optional
hook27 hook27

Name of a hook provided by the extension.

String optional
hook28 hook28

Name of a hook provided by the extension.

String optional
hook29 hook29

Name of a hook provided by the extension.

String optional
hook30 hook30

Name of a hook provided by the extension.

String optional
hook31 hook31

Name of a hook provided by the extension.

String optional
hook32 hook32

Name of a hook provided by the extension.

String optional
hook33 hook33

Name of a hook provided by the extension.

String optional
hook34 hook34

Name of a hook provided by the extension.

String optional
hook35 hook35

Name of a hook provided by the extension.

String optional
hook36 hook36

Name of a hook provided by the extension.

String optional
hook37 hook37

Name of a hook provided by the extension.

String optional
hook38 hook38

Name of a hook provided by the extension.

String optional
hook39 hook39

Name of a hook provided by the extension.

String optional
hook40 hook40

Name of a hook provided by the extension.

String optional
hook41 hook41

Name of a hook provided by the extension.

String optional
hook42 hook42

Name of a hook provided by the extension.

String optional
hook43 hook43

Name of a hook provided by the extension.

String optional
hook44 hook44

Name of a hook provided by the extension.

String optional
hook45 hook45

Name of a hook provided by the extension.

String optional
hook46 hook46

Name of a hook provided by the extension.

String optional
hook47 hook47

Name of a hook provided by the extension.

String optional
hook48 hook48

Name of a hook provided by the extension.

String optional
hook49 hook49

Name of a hook provided by the extension.

String optional
hook50 hook50

Name of a hook provided by the extension.

String optional
hook51 hook51

Name of a hook provided by the extension.

String optional
hook52 hook52

Name of a hook provided by the extension.

String optional
hook53 hook53

Name of a hook provided by the extension.

String optional
hook54 hook54

Name of a hook provided by the extension.

String optional
hook55 hook55

Name of a hook provided by the extension.

String optional
hook56 hook56

Name of a hook provided by the extension.

String optional
hook57 hook57

Name of a hook provided by the extension.

String optional
hook58 hook58

Name of a hook provided by the extension.

String optional
hook59 hook59

Name of a hook provided by the extension.

String optional
hook60 hook60

Name of a hook provided by the extension.

String optional
hook61 hook61

Name of a hook provided by the extension.

String optional
hook62 hook62

Name of a hook provided by the extension.

String optional
hook63 hook63

Name of a hook provided by the extension.

String optional
hook64 hook64

Name of a hook provided by the extension.

String optional
hook65 hook65

Name of a hook provided by the extension.

String optional
hook66 hook66

Name of a hook provided by the extension.

String optional
hook67 hook67

Name of a hook provided by the extension.

String optional
hook68 hook68

Name of a hook provided by the extension.

String optional
hook69 hook69

Name of a hook provided by the extension.

String optional
hook70 hook70

Name of a hook provided by the extension.

String optional
hook71 hook71

Name of a hook provided by the extension.

String optional
hook72 hook72

Name of a hook provided by the extension.

String optional
hook73 hook73

Name of a hook provided by the extension.

String optional
hook74 hook74

Name of a hook provided by the extension.

String optional
hook75 hook75

Name of a hook provided by the extension.

String optional
hook76 hook76

Name of a hook provided by the extension.

String optional
hook77 hook77

Name of a hook provided by the extension.

String optional
hook78 hook78

Name of a hook provided by the extension.

String optional
hook79 hook79

Name of a hook provided by the extension.

String optional
hook80 hook80

Name of a hook provided by the extension.

String optional
hook81 hook81

Name of a hook provided by the extension.

String optional
hook82 hook82

Name of a hook provided by the extension.

String optional
hook83 hook83

Name of a hook provided by the extension.

String optional
hook84 hook84

Name of a hook provided by the extension.

String optional
hook85 hook85

Name of a hook provided by the extension.

String optional
hook86 hook86

Name of a hook provided by the extension.

String optional
hook87 hook87

Name of a hook provided by the extension.

String optional
hook88 hook88

Name of a hook provided by the extension.

String optional
hook89 hook89

Name of a hook provided by the extension.

String optional
hook90 hook90

Name of a hook used by the extension.

String optional
newhook1 newhook1

Name of a hook provided by the extension.

Example
CentralNoticeCampaignChange
String optional
newhook2 newhook2

Name of a hook provided by the extension.

String optional
newhook3 newhook3

Name of a hook provided by the extension.

String optional
newhook4 newhook4

Name of a hook provided by the extension.

String optional
newhook5 newhook5

Name of a hook provided by the extension.

String optional
newhook6 newhook6

Name of a hook provided by the extension.

String optional
newhook7 newhook7

Name of a hook provided by the extension.

String optional
newhook8 newhook8

Name of a hook provided by the extension.

String optional
newhook9 newhook9

Name of a hook provided by the extension.

String optional
newhook10 newhook10

Name of a hook provided by the extension.

String optional
newhook11 newhook11

Name of a hook provided by the extension.

String optional
newhook12 newhook12

Name of a hook provided by the extension.

String optional
newhook13 newhook13

Name of a hook provided by the extension.

String optional
newhook14 newhook14

Name of a hook provided by the extension.

String optional
newhook15 newhook15

Name of a hook provided by the extension.

String optional
newhook16 newhook16

Name of a hook provided by the extension.

String optional
newhook17 newhook17

Name of a hook provided by the extension.

String optional
newhook18 newhook18

Name of a hook provided by the extension.

String optional
newhook19 newhook19

Name of a hook provided by the extension.

String optional
newhook20 newhook20

Name of a hook provided by the extension.

String optional
newhook21 newhook21

Name of a hook provided by the extension.

String optional
newhook22 newhook22

Name of a hook provided by the extension.

String optional
newhook23 newhook23

Name of a hook provided by the extension.

String optional
newhook24 newhook24

Name of a hook provided by the extension.

String optional
newhook25 newhook25

Name of a hook provided by the extension.

String optional
newhook26 newhook26

Name of a hook provided by the extension.

String optional
newhook27 newhook27

Name of a hook provided by the extension.

String optional
newhook28 newhook28

Name of a hook provided by the extension.

String optional
newhook29 newhook29

Name of a hook provided by the extension.

String optional
newhook30 newhook30

Name of a hook provided by the extension.

String optional
newhook31 newhook31

Name of a hook provided by the extension.

String optional
newhook32 newhook32

Name of a hook provided by the extension.

String optional
newhook33 newhook33

Name of a hook provided by the extension.

String optional
newhook34 newhook34

Name of a hook provided by the extension.

String optional
newhook35 newhook35

Name of a hook provided by the extension.

String optional
newhook36 newhook36

Name of a hook provided by the extension.

String optional
newhook37 newhook37

Name of a hook provided by the extension.

String optional
newhook38 newhook38

Name of a hook provided by the extension.

String optional
newhook39 newhook39

Name of a hook provided by the extension.

String optional
newhook40 newhook40

Name of a hook provided by the extension.

String optional
newhook41 newhook41

Name of a hook provided by the extension.

String optional
newhook42 newhook42

Name of a hook provided by the extension.

String optional
newhook43 newhook43

Name of a hook provided by the extension.

String optional
newhook44 newhook44

Name of a hook provided by the extension.

String optional
newhook45 newhook45

Name of a hook provided by the extension.

String optional
newhook46 newhook46

Name of a hook provided by the extension.

String optional
newhook47 newhook47

Name of a hook provided by the extension.

String optional
newhook48 newhook48

Name of a hook provided by the extension.

String optional
newhook49 newhook49

Name of a hook provided by the extension.

String optional
newhook50 newhook50

Name of a hook provided by the extension.

String optional
newhook51 newhook51

Name of a hook provided by the extension.

String optional
newhook52 newhook52

Name of a hook provided by the extension.

String optional
newhook53 newhook53

Name of a hook provided by the extension.

String optional
newhook54 newhook54

Name of a hook provided by the extension.

String optional
newhook55 newhook55

Name of a hook provided by the extension.

String optional
newhook56 newhook56

Name of a hook provided by the extension.

String optional
newhook57 newhook57

Name of a hook provided by the extension.

String optional
newhook58 newhook58

Name of a hook provided by the extension.

String optional
newhook59 newhook59

Name of a hook provided by the extension.

String optional
newhook60 newhook60

Name of a hook provided by the extension.

String optional
newhook61 newhook61

Name of a hook provided by the extension.

String optional
newhook62 newhook62

Name of a hook provided by the extension.

String optional
newhook63 newhook63

Name of a hook provided by the extension.

String optional
newhook64 newhook64

Name of a hook provided by the extension.

String optional
newhook65 newhook65

Name of a hook provided by the extension.

String optional
newhook66 newhook66

Name of a hook provided by the extension.

String optional
newhook67 newhook67

Name of a hook provided by the extension.

String optional
newhook68 newhook68

Name of a hook provided by the extension.

String optional
newhook69 newhook69

Name of a hook provided by the extension.

String optional
newhook70 newhook70

Name of a hook provided by the extension.

String optional
newhook71 newhook71

Name of a hook provided by the extension.

String optional
newhook72 newhook72

Name of a hook provided by the extension.

String optional
newhook73 newhook73

Name of a hook provided by the extension.

String optional
newhook74 newhook74

Name of a hook provided by the extension.

String optional
newhook75 newhook75

Name of a hook provided by the extension.

String optional
newhook76 newhook76

Name of a hook provided by the extension.

String optional
newhook77 newhook77

Name of a hook provided by the extension.

String optional
newhook78 newhook78

Name of a hook provided by the extension.

String optional
newhook79 newhook79

Name of a hook provided by the extension.

String optional
newhook80 newhook80

Name of a hook provided by the extension.

String optional
newhook81 newhook81

Name of a hook provided by the extension.

String optional
newhook82 newhook82

Name of a hook provided by the extension.

String optional
newhook83 newhook83

Name of a hook provided by the extension.

String optional
newhook84 newhook84

Name of a hook provided by the extension.

String optional
newhook85 newhook85

Name of a hook provided by the extension.

String optional
newhook86 newhook86

Name of a hook provided by the extension.

String optional
newhook87 newhook87

Name of a hook provided by the extension.

String optional
newhook88 newhook88

Name of a hook provided by the extension.

String optional
newhook89 newhook89

Name of a hook provided by the extension.

String optional
newhook90 newhook90

Name of a hook provided by the extension.

String optional
Compatibility chart compatibility

no description

Example
{{Extension Testing | ... }}
String optional
TranslateWiki group translate

Optional parameter to link the exact page where (message group id with which) the extension will be translatable on translatewiki.net if enabled.

Example
ext-discussiontools
String optional
Vagrant role vagrant-role

A MediaWiki-Vagrant role that lets you use this extension

Example
visualeditor
String optional
Check usage link CheckUsageNameOverride

Override the page name used for the check usage link.

String optional
Bugzilla component name bugzilla

name of the Bugzilla component

String deprecated

Maintenance: vulnerabilities , archived