MediaWiki REL1_31
TrackingCategories.php
Go to the documentation of this file.
1<?php
29 private $config;
30
36 private static $coreTrackingCategories = [
37 'index-category',
38 'noindex-category',
39 'duplicate-args-category',
40 'expensive-parserfunction-category',
41 'post-expand-template-argument-category',
42 'post-expand-template-inclusion-category',
43 'hidden-category-category',
44 'broken-file-category',
45 'node-count-exceeded-category',
46 'expansion-depth-exceeded-category',
47 'restricted-displaytitle-ignored',
48 'deprecated-self-close-category',
49 'template-loop-category',
50 ];
51
55 public function __construct( Config $config ) {
56 $this->config = $config;
57 }
58
63 public function getTrackingCategories() {
64 $categories = array_merge(
65 self::$coreTrackingCategories,
66 ExtensionRegistry::getInstance()->getAttribute( 'TrackingCategories' ),
67 $this->config->get( 'TrackingCategories' ) // deprecated
68 );
69
70 // Only show magic link tracking categories if they are enabled
71 $enableMagicLinks = $this->config->get( 'EnableMagicLinks' );
72 if ( $enableMagicLinks['ISBN'] ) {
73 $categories[] = 'magiclink-tracking-isbn';
74 }
75 if ( $enableMagicLinks['RFC'] ) {
76 $categories[] = 'magiclink-tracking-rfc';
77 }
78 if ( $enableMagicLinks['PMID'] ) {
79 $categories[] = 'magiclink-tracking-pmid';
80 }
81
82 $trackingCategories = [];
83 foreach ( $categories as $catMsg ) {
84 /*
85 * Check if the tracking category varies by namespace
86 * Otherwise only pages in the current namespace will be displayed
87 * If it does vary, show pages considering all namespaces
88 */
89 $msgObj = wfMessage( $catMsg )->inContentLanguage();
90 $allCats = [];
91 $catMsgTitle = Title::makeTitleSafe( NS_MEDIAWIKI, $catMsg );
92 if ( !$catMsgTitle ) {
93 continue;
94 }
95
96 // Match things like {{NAMESPACE}} and {{NAMESPACENUMBER}}.
97 // False positives are ok, this is just an efficiency shortcut
98 if ( strpos( $msgObj->plain(), '{{' ) !== false ) {
99 $ns = MWNamespace::getValidNamespaces();
100 foreach ( $ns as $namesp ) {
101 $tempTitle = Title::makeTitleSafe( $namesp, $catMsg );
102 if ( !$tempTitle ) {
103 continue;
104 }
105 $catName = $msgObj->title( $tempTitle )->text();
106 # Allow tracking categories to be disabled by setting them to "-"
107 if ( $catName !== '-' ) {
108 $catTitle = Title::makeTitleSafe( NS_CATEGORY, $catName );
109 if ( $catTitle ) {
110 $allCats[] = $catTitle;
111 }
112 }
113 }
114 } else {
115 $catName = $msgObj->text();
116 # Allow tracking categories to be disabled by setting them to "-"
117 if ( $catName !== '-' ) {
118 $catTitle = Title::makeTitleSafe( NS_CATEGORY, $catName );
119 if ( $catTitle ) {
120 $allCats[] = $catTitle;
121 }
122 }
123 }
124 $trackingCategories[$catMsg] = [
125 'cats' => $allCats,
126 'msg' => $catMsgTitle,
127 ];
128 }
129
130 return $trackingCategories;
131 }
132}
This class performs some operations related to tracking categories, such as creating a list of all su...
getTrackingCategories()
Read the global and extract title objects from the corresponding messages.
__construct(Config $config)
static array $coreTrackingCategories
Tracking categories that exist in core.
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
const NS_MEDIAWIKI
Definition Defines.php:82
const NS_CATEGORY
Definition Defines.php:88
the array() calling protocol came about after MediaWiki 1.4rc1.
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
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
Definition injection.txt:37
Interface for configuration instances.
Definition Config.php:28