MediaWiki REL1_31
TemplatesOnThisPageFormatter.php
Go to the documentation of this file.
1<?php
23
31
35 private $context;
36
41
47 $this->context = $context;
48 $this->linkRenderer = $linkRenderer;
49 }
50
62 public function format( array $templates, $type = false, $more = null ) {
63 if ( !$templates ) {
64 // No templates
65 return '';
66 }
67
68 # Do a batch existence check
69 $batch = new LinkBatch;
70 foreach ( $templates as $title ) {
71 $batch->addObj( $title );
72 }
73 $batch->execute();
74
75 # Construct the HTML
76 $outText = '<div class="mw-templatesUsedExplanation">';
77 $count = count( $templates );
78 if ( $type === 'preview' ) {
79 $outText .= $this->context->msg( 'templatesusedpreview' )->numParams( $count )
80 ->parseAsBlock();
81 } elseif ( $type === 'section' ) {
82 $outText .= $this->context->msg( 'templatesusedsection' )->numParams( $count )
83 ->parseAsBlock();
84 } else {
85 $outText .= $this->context->msg( 'templatesused' )->numParams( $count )
86 ->parseAsBlock();
87 }
88 $outText .= "</div><ul>\n";
89
90 usort( $templates, 'Title::compare' );
91 foreach ( $templates as $template ) {
92 $outText .= $this->formatTemplate( $template );
93 }
94
95 if ( $more instanceof LinkTarget ) {
96 $outText .= Html::rawElement( 'li', [], $this->linkRenderer->makeLink(
97 $more, $this->context->msg( 'moredotdotdot' )->text() ) );
98 } elseif ( $more ) {
99 // Documented as should already be escaped
100 $outText .= Html::rawElement( 'li', [], $more );
101 }
102
103 $outText .= '</ul>';
104 return $outText;
105 }
106
113 private function formatTemplate( LinkTarget $target ) {
114 // TODO Would be nice if we didn't have to use Title here
115 $titleObj = Title::newFromLinkTarget( $target );
116 $protected = $this->getRestrictionsText( $titleObj->getRestrictions( 'edit' ) );
117 $editLink = $this->buildEditLink( $titleObj );
118 return '<li>' . $this->linkRenderer->makeLink( $target )
119 . $this->context->msg( 'word-separator' )->escaped()
120 . $this->context->msg( 'parentheses' )->rawParams( $editLink )->escaped()
121 . $this->context->msg( 'word-separator' )->escaped()
122 . $protected . '</li>';
123 }
124
132 private function getRestrictionsText( array $restrictions ) {
133 $protected = '';
134 if ( !$restrictions ) {
135 return $protected;
136 }
137
138 // Check backwards-compatible messages
139 $msg = null;
140 if ( $restrictions === [ 'sysop' ] ) {
141 $msg = $this->context->msg( 'template-protected' );
142 } elseif ( $restrictions === [ 'autoconfirmed' ] ) {
143 $msg = $this->context->msg( 'template-semiprotected' );
144 }
145 if ( $msg && !$msg->isDisabled() ) {
146 $protected = $msg->parse();
147 } else {
148 // Construct the message from restriction-level-*
149 // e.g. restriction-level-sysop, restriction-level-autoconfirmed
150 $msgs = [];
151 foreach ( $restrictions as $r ) {
152 $msgs[] = $this->context->msg( "restriction-level-$r" )->parse();
153 }
154 $protected = $this->context->msg( 'parentheses' )
155 ->rawParams( $this->context->getLanguage()->commaList( $msgs ) )->escaped();
156 }
157
158 return $protected;
159 }
160
168 private function buildEditLink( Title $titleObj ) {
169 if ( $titleObj->quickUserCan( 'edit', $this->context->getUser() ) ) {
170 $linkMsg = 'editlink';
171 } else {
172 $linkMsg = 'viewsourcelink';
173 }
174
175 return $this->linkRenderer->makeLink(
176 $titleObj,
177 $this->context->msg( $linkMsg )->text(),
178 [],
179 [ 'action' => 'edit' ]
180 );
181 }
182
183}
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition LinkBatch.php:34
addObj( $linkTarget)
Definition LinkBatch.php:68
Class that generates HTML links for pages.
Handles formatting for the "templates used on this page" lists.
buildEditLink(Title $titleObj)
Return a link to the edit page, with the text saying "view source" if the user can't edit the page.
formatTemplate(LinkTarget $target)
Builds an item for an individual template.
format(array $templates, $type=false, $more=null)
Make an HTML list of templates, and then add a "More..." link at the bottom.
__construct(IContextSource $context, LinkRenderer $linkRenderer)
getRestrictionsText(array $restrictions)
If the page is protected, get the relevant text for those restrictions.
Represents a title within MediaWiki.
Definition Title.php:39
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping $template
Definition hooks.txt:831
Interface for objects which can provide a MediaWiki context on request.
$batch
Definition linkcache.txt:23