Manual:$wgTrackingCategories
Appearance
廃止予定: この機能は廃止予定 であり、使用してはいけませんが、後方互換性 のためまだ利用可能です。 |
カテゴリ: $wgTrackingCategories | |
---|---|
追跡用カテゴリを表すメッセージのリスト。追跡用カテゴリは Special:TrackingCategories に列挙される。 |
|
導入されたバージョン: | 1.23.0 (Gerrit change 112323; git #610236b4) |
廃止予定になったバージョン: | 1.25.0 (Gerrit change 180554; git #247ecab4) |
除去されたバージョン: | 使用中 |
許容される値: | (文字列の配列) |
既定値: | (下記参照) |
その他の設定: アルファベット順 | 機能順 |
詳細
$wgTrackingCategories
は、ページに自動的に追加される追跡用カテゴリのリストです。
MediaWiki バージョン 1.25 以降は、この構成変数は廃止予定となり、既定値が変更されました。
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.
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.
既定値
MediaWiki バージョン: | ≧ 1.25 |
$wgTrackingCategories = [];
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',
);
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',
);
関連項目
- Help:追跡用カテゴリ
- For examples of how to add tracking categories, see the GeoData or Score extensions