Manual:$wgTrackingCategories
Deprecated: Esta característica obsoleta no debe seguir siendo utilizada, aunque sigue estando disponible por razones de retrocompatibilidad. |
Categoría: $wgTrackingCategories | |
---|---|
The list of messages representing tracking categories which are listed at Special:TrackingCategories. |
|
Introducido en la versión: | 1.23.0 (Gerrit change 112323; git #610236b4) |
Desaconsejado en versión: | 1.25.0 (Gerrit change 180554; git #247ecab4) |
Eliminado en la versión: | aún se usa |
Valores permitidos: | (array of strings) |
Valor predeterminado: | (véase más abajo) |
Otras configuraciones: Alfabéticamente | Por Función |
Detalles
$wgTrackingCategories
is the list of tracking categories which are automatically added to pages.
Starting with MediaWiki version 1.25, this configuration variable is deprecated and the default value changed!
The default tracking categories are now hard-coded in the MediaWiki code and Extensions should now register tracking categories using the new extension registration system.
Están listados en 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.
Valor predeterminado
Versión de MediaWiki: | ≥ 1.25 |
$wgTrackingCategories = [];
Versión de MediaWiki: | 1.24 |
$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',
);
Versión de MediaWiki: | 1.23 |
$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',
);
Véase también
- Help:Tracking categories
- For examples of how to add tracking categories, see the GeoData or Score extensions