MediaWiki  1.29.1
SpecialTrackingCategories.php
Go to the documentation of this file.
1 <?php
35  function __construct() {
36  parent::__construct( 'TrackingCategories' );
37  }
38 
39  function execute( $par ) {
40  $this->setHeaders();
41  $this->outputHeader();
42  $this->getOutput()->allowClickjacking();
43  $this->getOutput()->addHTML(
44  Html::openElement( 'table', [ 'class' => 'mw-datatable',
45  'id' => 'mw-trackingcategories-table' ] ) . "\n" .
46  "<thead><tr>
47  <th>" .
48  $this->msg( 'trackingcategories-msg' )->escaped() . "
49  </th>
50  <th>" .
51  $this->msg( 'trackingcategories-name' )->escaped() .
52  "</th>
53  <th>" .
54  $this->msg( 'trackingcategories-desc' )->escaped() . "
55  </th>
56  </tr></thead>"
57  );
58 
59  $trackingCategories = new TrackingCategories( $this->getConfig() );
60  $categoryList = $trackingCategories->getTrackingCategories();
61 
62  $batch = new LinkBatch();
63  foreach ( $categoryList as $catMsg => $data ) {
64  $batch->addObj( $data['msg'] );
65  foreach ( $data['cats'] as $catTitle ) {
66  $batch->addObj( $catTitle );
67  }
68  }
69  $batch->execute();
70 
71  Hooks::run( 'SpecialTrackingCategories::preprocess', [ $this, $categoryList ] );
72 
73  $linkRenderer = $this->getLinkRenderer();
74 
75  foreach ( $categoryList as $catMsg => $data ) {
76  $allMsgs = [];
77  $catDesc = $catMsg . '-desc';
78 
79  $catMsgTitleText = $linkRenderer->makeLink(
80  $data['msg'],
81  $catMsg
82  );
83 
84  foreach ( $data['cats'] as $catTitle ) {
85  $html = $linkRenderer->makeLink(
86  $catTitle,
87  $catTitle->getText()
88  );
89 
90  Hooks::run( 'SpecialTrackingCategories::generateCatLink',
91  [ $this, $catTitle, &$html ] );
92 
93  $allMsgs[] = $html;
94  }
95 
96  # Extra message, when no category was found
97  if ( !count( $allMsgs ) ) {
98  $allMsgs[] = $this->msg( 'trackingcategories-disabled' )->parse();
99  }
100 
101  /*
102  * Show category description if it exists as a system message
103  * as category-name-desc
104  */
105  $descMsg = $this->msg( $catDesc );
106  if ( $descMsg->isBlank() ) {
107  $descMsg = $this->msg( 'trackingcategories-nodesc' );
108  }
109 
110  $this->getOutput()->addHTML(
111  Html::openElement( 'tr' ) .
112  Html::openElement( 'td', [ 'class' => 'mw-trackingcategories-name' ] ) .
113  $this->getLanguage()->commaList( array_unique( $allMsgs ) ) .
114  Html::closeElement( 'td' ) .
115  Html::openElement( 'td', [ 'class' => 'mw-trackingcategories-msg' ] ) .
116  $catMsgTitleText .
117  Html::closeElement( 'td' ) .
118  Html::openElement( 'td', [ 'class' => 'mw-trackingcategories-desc' ] ) .
119  $descMsg->parse() .
120  Html::closeElement( 'td' ) .
121  Html::closeElement( 'tr' )
122  );
123  }
124  $this->getOutput()->addHTML( Html::closeElement( 'table' ) );
125  }
126 
127  protected function getGroupName() {
128  return 'pages';
129  }
130 }
LinkBatch
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:34
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:675
SpecialTrackingCategories\getGroupName
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Definition: SpecialTrackingCategories.php:127
SpecialTrackingCategories\__construct
__construct()
Definition: SpecialTrackingCategories.php:35
captcha-old.count
count
Definition: captcha-old.py:225
SpecialPage\getLanguage
getLanguage()
Shortcut to get user's language.
Definition: SpecialPage.php:705
php
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:35
Html\closeElement
static closeElement( $element)
Returns "</$element>".
Definition: Html.php:309
$html
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition: hooks.txt:1956
SpecialPage\getConfig
getConfig()
Shortcut to get main config object.
Definition: SpecialPage.php:714
SpecialTrackingCategories
A special page that displays list of tracking categories Tracking categories allow pages with certain...
Definition: SpecialTrackingCategories.php:34
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:484
SpecialPage\msg
msg()
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:746
SpecialPage
Parent class for all special pages.
Definition: SpecialPage.php:36
SpecialTrackingCategories\execute
execute( $par)
Default execute method Checks user permissions.
Definition: SpecialTrackingCategories.php:39
TrackingCategories
This class performs some operations related to tracking categories, such as creating a list of all su...
Definition: TrackingCategories.php:26
SpecialPage\getLinkRenderer
getLinkRenderer()
Definition: SpecialPage.php:856
as
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
Definition: distributors.txt:9
Html\openElement
static openElement( $element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
Definition: Html.php:251
$batch
$batch
Definition: linkcache.txt:23
SpecialPage\$linkRenderer
MediaWiki Linker LinkRenderer null $linkRenderer
Definition: SpecialPage.php:66
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
SpecialPage\outputHeader
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
Definition: SpecialPage.php:583