Manual:$wgTrackingCategories
From MediaWiki.org
Category: $wgTrackingCategories | |
---|---|
The list of messages representing tracking categories which are listed at Special:TrackingCategories. |
|
Introduced in version: | 1.23.0 |
Removed in version: | still in use |
Allowed values: | array of strings |
Default value: | (see below) |
Other settings: Alphabetical | By Function
Details[edit | edit source]
$wgTrackingCategories
is the list of tracking categories which are automatically added to pages. They are listed on Special:TrackingCategories.
People who write extensions that add tracking categories via $parser->addTrackingCategory
should add the system message corresponding to their tracking category to this array. They should also define a message with the same name but -desc
appended that describes the criteria for a page to be tagged with the tracking category.
Default value[edit | edit source]
$wgTrackingCategories = array( 'index-category', 'noindex-category', 'expensive-parserfunction-category', 'post-expand-template-argument-category', 'post-expand-template-inclusion-category', 'hidden-category-category', 'broken-file-category', 'node-count-exceeded-category', 'expansion-depth-exceeded-category', );
See also[edit | edit source]
- Help:Tracking categories
- For examples of how to add tracking categories, see the GeoData or Score extensions