Merge "Fixed dependencies for jquery.collapsibleTabs"
[lhc/web/wiklou.git] / includes / Skin.php
1 <?php
2 /**
3 * Base class for all skins.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 /**
24 * @defgroup Skins Skins
25 */
26
27 /**
28 * The main skin class that provide methods and properties for all other skins.
29 * This base class is also the "Standard" skin.
30 *
31 * See docs/skin.txt for more information.
32 *
33 * @ingroup Skins
34 */
35 abstract class Skin extends ContextSource {
36 protected $skinname = 'standard';
37 protected $mRelevantTitle = null;
38 protected $mRelevantUser = null;
39
40 /**
41 * Fetch the set of available skins.
42 * @return array associative array of strings
43 */
44 static function getSkinNames() {
45 global $wgValidSkinNames;
46 static $skinsInitialised = false;
47
48 if ( !$skinsInitialised || !count( $wgValidSkinNames ) ) {
49 # Get a list of available skins
50 # Build using the regular expression '^(.*).php$'
51 # Array keys are all lower case, array value keep the case used by filename
52 #
53 wfProfileIn( __METHOD__ . '-init' );
54
55 global $wgStyleDirectory;
56
57 $skinDir = dir( $wgStyleDirectory );
58
59 # while code from www.php.net
60 while ( false !== ( $file = $skinDir->read() ) ) {
61 // Skip non-PHP files, hidden files, and '.dep' includes
62 $matches = array();
63
64 if ( preg_match( '/^([^.]*)\.php$/', $file, $matches ) ) {
65 $aSkin = $matches[1];
66 $wgValidSkinNames[strtolower( $aSkin )] = $aSkin;
67 }
68 }
69 $skinDir->close();
70 $skinsInitialised = true;
71 wfProfileOut( __METHOD__ . '-init' );
72 }
73 return $wgValidSkinNames;
74 }
75
76 /**
77 * Fetch the skinname messages for available skins.
78 * @return array of strings
79 */
80 static function getSkinNameMessages() {
81 $messages = array();
82 foreach( self::getSkinNames() as $skinKey => $skinName ) {
83 $messages[] = "skinname-$skinKey";
84 }
85 return $messages;
86 }
87
88 /**
89 * Fetch the list of usable skins in regards to $wgSkipSkins.
90 * Useful for Special:Preferences and other places where you
91 * only want to show skins users _can_ use.
92 * @return array of strings
93 */
94 public static function getUsableSkins() {
95 global $wgSkipSkins;
96
97 $usableSkins = self::getSkinNames();
98
99 foreach ( $wgSkipSkins as $skip ) {
100 unset( $usableSkins[$skip] );
101 }
102
103 return $usableSkins;
104 }
105
106 /**
107 * Normalize a skin preference value to a form that can be loaded.
108 * If a skin can't be found, it will fall back to the configured
109 * default (or the old 'Classic' skin if that's broken).
110 * @param $key String: 'monobook', 'standard', etc.
111 * @return string
112 */
113 static function normalizeKey( $key ) {
114 global $wgDefaultSkin;
115
116 $skinNames = Skin::getSkinNames();
117
118 if ( $key == '' || $key == 'default' ) {
119 // Don't return the default immediately;
120 // in a misconfiguration we need to fall back.
121 $key = $wgDefaultSkin;
122 }
123
124 if ( isset( $skinNames[$key] ) ) {
125 return $key;
126 }
127
128 // Older versions of the software used a numeric setting
129 // in the user preferences.
130 $fallback = array(
131 0 => $wgDefaultSkin,
132 1 => 'nostalgia',
133 2 => 'cologneblue'
134 );
135
136 if ( isset( $fallback[$key] ) ) {
137 $key = $fallback[$key];
138 }
139
140 if ( isset( $skinNames[$key] ) ) {
141 return $key;
142 } elseif ( isset( $skinNames[$wgDefaultSkin] ) ) {
143 return $wgDefaultSkin;
144 } else {
145 return 'vector';
146 }
147 }
148
149 /**
150 * Factory method for loading a skin of a given type
151 * @param $key String: 'monobook', 'standard', etc.
152 * @return Skin
153 */
154 static function &newFromKey( $key ) {
155 global $wgStyleDirectory;
156
157 $key = Skin::normalizeKey( $key );
158
159 $skinNames = Skin::getSkinNames();
160 $skinName = $skinNames[$key];
161 $className = "Skin{$skinName}";
162
163 # Grab the skin class and initialise it.
164 if ( !MWInit::classExists( $className ) ) {
165
166 if ( !defined( 'MW_COMPILED' ) ) {
167 require_once( "{$wgStyleDirectory}/{$skinName}.php" );
168 }
169
170 # Check if we got if not failback to default skin
171 if ( !MWInit::classExists( $className ) ) {
172 # DO NOT die if the class isn't found. This breaks maintenance
173 # scripts and can cause a user account to be unrecoverable
174 # except by SQL manipulation if a previously valid skin name
175 # is no longer valid.
176 wfDebug( "Skin class does not exist: $className\n" );
177 $className = 'SkinVector';
178 if ( !defined( 'MW_COMPILED' ) ) {
179 require_once( "{$wgStyleDirectory}/Vector.php" );
180 }
181 }
182 }
183 $skin = new $className( $key );
184 return $skin;
185 }
186
187 /** @return string skin name */
188 public function getSkinName() {
189 return $this->skinname;
190 }
191
192 /**
193 * @param $out OutputPage
194 */
195 function initPage( OutputPage $out ) {
196 wfProfileIn( __METHOD__ );
197
198 $this->preloadExistence();
199
200 wfProfileOut( __METHOD__ );
201 }
202
203 /**
204 * Preload the existence of three commonly-requested pages in a single query
205 */
206 function preloadExistence() {
207 $user = $this->getUser();
208
209 // User/talk link
210 $titles = array( $user->getUserPage(), $user->getTalkPage() );
211
212 // Other tab link
213 if ( $this->getTitle()->isSpecialPage() ) {
214 // nothing
215 } elseif ( $this->getTitle()->isTalkPage() ) {
216 $titles[] = $this->getTitle()->getSubjectPage();
217 } else {
218 $titles[] = $this->getTitle()->getTalkPage();
219 }
220
221 $lb = new LinkBatch( $titles );
222 $lb->setCaller( __METHOD__ );
223 $lb->execute();
224 }
225
226 /**
227 * Get the current revision ID
228 *
229 * @return Integer
230 */
231 public function getRevisionId() {
232 return $this->getOutput()->getRevisionId();
233 }
234
235 /**
236 * Whether the revision displayed is the latest revision of the page
237 *
238 * @return Boolean
239 */
240 public function isRevisionCurrent() {
241 $revID = $this->getRevisionId();
242 return $revID == 0 || $revID == $this->getTitle()->getLatestRevID();
243 }
244
245 /**
246 * Set the "relevant" title
247 * @see self::getRelevantTitle()
248 * @param $t Title object to use
249 */
250 public function setRelevantTitle( $t ) {
251 $this->mRelevantTitle = $t;
252 }
253
254 /**
255 * Return the "relevant" title.
256 * A "relevant" title is not necessarily the actual title of the page.
257 * Special pages like Special:MovePage use set the page they are acting on
258 * as their "relevant" title, this allows the skin system to display things
259 * such as content tabs which belong to to that page instead of displaying
260 * a basic special page tab which has almost no meaning.
261 *
262 * @return Title
263 */
264 public function getRelevantTitle() {
265 if ( isset($this->mRelevantTitle) ) {
266 return $this->mRelevantTitle;
267 }
268 return $this->getTitle();
269 }
270
271 /**
272 * Set the "relevant" user
273 * @see self::getRelevantUser()
274 * @param $u User object to use
275 */
276 public function setRelevantUser( $u ) {
277 $this->mRelevantUser = $u;
278 }
279
280 /**
281 * Return the "relevant" user.
282 * A "relevant" user is similar to a relevant title. Special pages like
283 * Special:Contributions mark the user which they are relevant to so that
284 * things like the toolbox can display the information they usually are only
285 * able to display on a user's userpage and talkpage.
286 * @return User
287 */
288 public function getRelevantUser() {
289 if ( isset($this->mRelevantUser) ) {
290 return $this->mRelevantUser;
291 }
292 $title = $this->getRelevantTitle();
293 if( $title->hasSubjectNamespace( NS_USER ) ) {
294 $rootUser = $title->getRootText();
295 if ( User::isIP( $rootUser ) ) {
296 $this->mRelevantUser = User::newFromName( $rootUser, false );
297 } else {
298 $user = User::newFromName( $rootUser, false );
299 if ( $user && $user->isLoggedIn() ) {
300 $this->mRelevantUser = $user;
301 }
302 }
303 return $this->mRelevantUser;
304 }
305 return null;
306 }
307
308 /**
309 * Outputs the HTML generated by other functions.
310 * @param $out OutputPage
311 */
312 abstract function outputPage( OutputPage $out = null );
313
314 /**
315 * @param $data array
316 * @return string
317 */
318 static function makeVariablesScript( $data ) {
319 if ( $data ) {
320 return Html::inlineScript(
321 ResourceLoader::makeLoaderConditionalScript( ResourceLoader::makeConfigSetScript( $data ) )
322 );
323 } else {
324 return '';
325 }
326 }
327
328 /**
329 * Make a "<script>" tag containing global variables
330 *
331 * @deprecated in 1.19
332 * @param $unused
333 * @return string HTML fragment
334 */
335 public static function makeGlobalVariablesScript( $unused ) {
336 global $wgOut;
337
338 wfDeprecated( __METHOD__, '1.19' );
339
340 return self::makeVariablesScript( $wgOut->getJSVars() );
341 }
342
343 /**
344 * Get the query to generate a dynamic stylesheet
345 *
346 * @return array
347 */
348 public static function getDynamicStylesheetQuery() {
349 global $wgSquidMaxage;
350
351 return array(
352 'action' => 'raw',
353 'maxage' => $wgSquidMaxage,
354 'usemsgcache' => 'yes',
355 'ctype' => 'text/css',
356 'smaxage' => $wgSquidMaxage,
357 );
358 }
359
360 /**
361 * Add skin specific stylesheets
362 * Calling this method with an $out of anything but the same OutputPage
363 * inside ->getOutput() is deprecated. The $out arg is kept
364 * for compatibility purposes with skins.
365 * @param $out OutputPage
366 * @todo delete
367 */
368 abstract function setupSkinUserCss( OutputPage $out );
369
370 /**
371 * TODO: document
372 * @param $title Title
373 * @return String
374 */
375 function getPageClasses( $title ) {
376 $numeric = 'ns-' . $title->getNamespace();
377
378 if ( $title->isSpecialPage() ) {
379 $type = 'ns-special';
380 // bug 23315: provide a class based on the canonical special page name without subpages
381 list( $canonicalName ) = SpecialPageFactory::resolveAlias( $title->getDBkey() );
382 if ( $canonicalName ) {
383 $type .= ' ' . Sanitizer::escapeClass( "mw-special-$canonicalName" );
384 } else {
385 $type .= ' mw-invalidspecialpage';
386 }
387 } elseif ( $title->isTalkPage() ) {
388 $type = 'ns-talk';
389 } else {
390 $type = 'ns-subject';
391 }
392
393 $name = Sanitizer::escapeClass( 'page-' . $title->getPrefixedText() );
394
395 return "$numeric $type $name";
396 }
397
398 /**
399 * This will be called by OutputPage::headElement when it is creating the
400 * "<body>" tag, skins can override it if they have a need to add in any
401 * body attributes or classes of their own.
402 * @param $out OutputPage
403 * @param $bodyAttrs Array
404 */
405 function addToBodyAttributes( $out, &$bodyAttrs ) {
406 // does nothing by default
407 }
408
409 /**
410 * URL to the logo
411 * @return String
412 */
413 function getLogo() {
414 global $wgLogo;
415 return $wgLogo;
416 }
417
418 /**
419 * @return string
420 */
421 function getCategoryLinks() {
422 global $wgUseCategoryBrowser;
423
424 $out = $this->getOutput();
425 $allCats = $out->getCategoryLinks();
426
427 if ( !count( $allCats ) ) {
428 return '';
429 }
430
431 $embed = "<li>";
432 $pop = "</li>";
433
434 $s = '';
435 $colon = $this->msg( 'colon-separator' )->escaped();
436
437 if ( !empty( $allCats['normal'] ) ) {
438 $t = $embed . implode( "{$pop}{$embed}" , $allCats['normal'] ) . $pop;
439
440 $msg = $this->msg( 'pagecategories' )->numParams( count( $allCats['normal'] ) )->escaped();
441 $linkPage = wfMessage( 'pagecategorieslink' )->inContentLanguage()->text();
442 $s .= '<div id="mw-normal-catlinks" class="mw-normal-catlinks">' .
443 Linker::link( Title::newFromText( $linkPage ), $msg )
444 . $colon . '<ul>' . $t . '</ul>' . '</div>';
445 }
446
447 # Hidden categories
448 if ( isset( $allCats['hidden'] ) ) {
449 if ( $this->getUser()->getBoolOption( 'showhiddencats' ) ) {
450 $class = ' mw-hidden-cats-user-shown';
451 } elseif ( $this->getTitle()->getNamespace() == NS_CATEGORY ) {
452 $class = ' mw-hidden-cats-ns-shown';
453 } else {
454 $class = ' mw-hidden-cats-hidden';
455 }
456
457 $s .= "<div id=\"mw-hidden-catlinks\" class=\"mw-hidden-catlinks$class\">" .
458 $this->msg( 'hidden-categories' )->numParams( count( $allCats['hidden'] ) )->escaped() .
459 $colon . '<ul>' . $embed . implode( "{$pop}{$embed}" , $allCats['hidden'] ) . $pop . '</ul>' .
460 '</div>';
461 }
462
463 # optional 'dmoz-like' category browser. Will be shown under the list
464 # of categories an article belong to
465 if ( $wgUseCategoryBrowser ) {
466 $s .= '<br /><hr />';
467
468 # get a big array of the parents tree
469 $parenttree = $this->getTitle()->getParentCategoryTree();
470 # Skin object passed by reference cause it can not be
471 # accessed under the method subfunction drawCategoryBrowser
472 $tempout = explode( "\n", $this->drawCategoryBrowser( $parenttree ) );
473 # Clean out bogus first entry and sort them
474 unset( $tempout[0] );
475 asort( $tempout );
476 # Output one per line
477 $s .= implode( "<br />\n", $tempout );
478 }
479
480 return $s;
481 }
482
483 /**
484 * Render the array as a serie of links.
485 * @param $tree Array: categories tree returned by Title::getParentCategoryTree
486 * @return String separated by &gt;, terminate with "\n"
487 */
488 function drawCategoryBrowser( $tree ) {
489 $return = '';
490
491 foreach ( $tree as $element => $parent ) {
492 if ( empty( $parent ) ) {
493 # element start a new list
494 $return .= "\n";
495 } else {
496 # grab the others elements
497 $return .= $this->drawCategoryBrowser( $parent ) . ' &gt; ';
498 }
499
500 # add our current element to the list
501 $eltitle = Title::newFromText( $element );
502 $return .= Linker::link( $eltitle, htmlspecialchars( $eltitle->getText() ) );
503 }
504
505 return $return;
506 }
507
508 /**
509 * @return string
510 */
511 function getCategories() {
512 $out = $this->getOutput();
513
514 $catlinks = $this->getCategoryLinks();
515
516 $classes = 'catlinks';
517
518 // Check what we're showing
519 $allCats = $out->getCategoryLinks();
520 $showHidden = $this->getUser()->getBoolOption( 'showhiddencats' ) ||
521 $this->getTitle()->getNamespace() == NS_CATEGORY;
522
523 if ( empty( $allCats['normal'] ) && !( !empty( $allCats['hidden'] ) && $showHidden ) ) {
524 $classes .= ' catlinks-allhidden';
525 }
526
527 return "<div id='catlinks' class='$classes'>{$catlinks}</div>";
528 }
529
530 /**
531 * This runs a hook to allow extensions placing their stuff after content
532 * and article metadata (e.g. categories).
533 * Note: This function has nothing to do with afterContent().
534 *
535 * This hook is placed here in order to allow using the same hook for all
536 * skins, both the SkinTemplate based ones and the older ones, which directly
537 * use this class to get their data.
538 *
539 * The output of this function gets processed in SkinTemplate::outputPage() for
540 * the SkinTemplate based skins, all other skins should directly echo it.
541 *
542 * @return String, empty by default, if not changed by any hook function.
543 */
544 protected function afterContentHook() {
545 $data = '';
546
547 if ( wfRunHooks( 'SkinAfterContent', array( &$data, $this ) ) ) {
548 // adding just some spaces shouldn't toggle the output
549 // of the whole <div/>, so we use trim() here
550 if ( trim( $data ) != '' ) {
551 // Doing this here instead of in the skins to
552 // ensure that the div has the same ID in all
553 // skins
554 $data = "<div id='mw-data-after-content'>\n" .
555 "\t$data\n" .
556 "</div>\n";
557 }
558 } else {
559 wfDebug( "Hook SkinAfterContent changed output processing.\n" );
560 }
561
562 return $data;
563 }
564
565 /**
566 * Generate debug data HTML for displaying at the bottom of the main content
567 * area.
568 * @return String HTML containing debug data, if enabled (otherwise empty).
569 */
570 protected function generateDebugHTML() {
571 return MWDebug::getHTMLDebugLog();
572 }
573
574 /**
575 * This gets called shortly before the "</body>" tag.
576 *
577 * @return String HTML-wrapped JS code to be put before "</body>"
578 */
579 function bottomScripts() {
580 // TODO and the suckage continues. This function is really just a wrapper around
581 // OutputPage::getBottomScripts() which takes a Skin param. This should be cleaned
582 // up at some point
583 $bottomScriptText = $this->getOutput()->getBottomScripts();
584 wfRunHooks( 'SkinAfterBottomScripts', array( $this, &$bottomScriptText ) );
585
586 return $bottomScriptText;
587 }
588
589 /**
590 * Text with the permalink to the source page,
591 * usually shown on the footer of a printed page
592 *
593 * @return string HTML text with an URL
594 */
595 function printSource() {
596 $oldid = $this->getRevisionId();
597 if ( $oldid ) {
598 $url = htmlspecialchars( wfExpandIRI( $this->getTitle()->getCanonicalURL( 'oldid=' . $oldid ) ) );
599 } else {
600 // oldid not available for non existing pages
601 $url = htmlspecialchars( wfExpandIRI( $this->getTitle()->getCanonicalURL() ) );
602 }
603 return $this->msg( 'retrievedfrom', '<a href="' . $url . '">' . $url . '</a>' )->text();
604 }
605
606 /**
607 * @return String
608 */
609 function getUndeleteLink() {
610 $action = $this->getRequest()->getVal( 'action', 'view' );
611
612 if ( $this->getUser()->isAllowed( 'deletedhistory' ) &&
613 ( $this->getTitle()->getArticleID() == 0 || $action == 'history' ) ) {
614 $n = $this->getTitle()->isDeleted();
615
616
617 if ( $n ) {
618 if ( $this->getUser()->isAllowed( 'undelete' ) ) {
619 $msg = 'thisisdeleted';
620 } else {
621 $msg = 'viewdeleted';
622 }
623
624 return $this->msg( $msg )->rawParams(
625 Linker::linkKnown(
626 SpecialPage::getTitleFor( 'Undelete', $this->getTitle()->getPrefixedDBkey() ),
627 $this->msg( 'restorelink' )->numParams( $n )->escaped() )
628 )->text();
629 }
630 }
631
632 return '';
633 }
634
635 /**
636 * @return string
637 */
638 function subPageSubtitle() {
639 global $wgLang;
640 $out = $this->getOutput();
641 $subpages = '';
642
643 if ( !wfRunHooks( 'SkinSubPageSubtitle', array( &$subpages, $this, $out ) ) ) {
644 return $subpages;
645 }
646
647 if ( $out->isArticle() && MWNamespace::hasSubpages( $out->getTitle()->getNamespace() ) ) {
648 $ptext = $this->getTitle()->getPrefixedText();
649 if ( preg_match( '/\//', $ptext ) ) {
650 $links = explode( '/', $ptext );
651 array_pop( $links );
652 $c = 0;
653 $growinglink = '';
654 $display = '';
655
656 foreach ( $links as $link ) {
657 $growinglink .= $link;
658 $display .= $link;
659 $linkObj = Title::newFromText( $growinglink );
660
661 if ( is_object( $linkObj ) && $linkObj->isKnown() ) {
662 $getlink = Linker::linkKnown(
663 $linkObj,
664 htmlspecialchars( $display )
665 );
666
667 $c++;
668
669 if ( $c > 1 ) {
670 $subpages .= $wgLang->getDirMarkEntity() . $this->msg( 'pipe-separator' )->escaped();
671 } else {
672 $subpages .= '&lt; ';
673 }
674
675 $subpages .= $getlink;
676 $display = '';
677 } else {
678 $display .= '/';
679 }
680 $growinglink .= '/';
681 }
682 }
683 }
684
685 return $subpages;
686 }
687
688 /**
689 * Returns true if the IP should be shown in the header
690 * @return Bool
691 */
692 function showIPinHeader() {
693 global $wgShowIPinHeader;
694 return $wgShowIPinHeader && session_id() != '';
695 }
696
697 /**
698 * @return String
699 */
700 function getSearchLink() {
701 $searchPage = SpecialPage::getTitleFor( 'Search' );
702 return $searchPage->getLocalURL();
703 }
704
705 /**
706 * @return string
707 */
708 function escapeSearchLink() {
709 return htmlspecialchars( $this->getSearchLink() );
710 }
711
712 /**
713 * @param $type string
714 * @return string
715 */
716 function getCopyright( $type = 'detect' ) {
717 global $wgRightsPage, $wgRightsUrl, $wgRightsText, $wgContLang;
718
719 if ( $type == 'detect' ) {
720 if ( !$this->isRevisionCurrent() && !$this->msg( 'history_copyright' )->inContentLanguage()->isDisabled() ) {
721 $type = 'history';
722 } else {
723 $type = 'normal';
724 }
725 }
726
727 if ( $type == 'history' ) {
728 $msg = 'history_copyright';
729 } else {
730 $msg = 'copyright';
731 }
732
733 if ( $wgRightsPage ) {
734 $title = Title::newFromText( $wgRightsPage );
735 $link = Linker::linkKnown( $title, $wgRightsText );
736 } elseif ( $wgRightsUrl ) {
737 $link = Linker::makeExternalLink( $wgRightsUrl, $wgRightsText );
738 } elseif ( $wgRightsText ) {
739 $link = $wgRightsText;
740 } else {
741 # Give up now
742 return '';
743 }
744
745 // Allow for site and per-namespace customization of copyright notice.
746 $forContent = true;
747
748 wfRunHooks( 'SkinCopyrightFooter', array( $this->getTitle(), $type, &$msg, &$link, &$forContent ) );
749
750 $msgObj = $this->msg( $msg )->rawParams( $link );
751 if ( $forContent ) {
752 $msg = $msgObj->inContentLanguage()->text();
753 if ( $this->getLanguage()->getCode() !== $wgContLang->getCode() ) {
754 $msg = Html::rawElement( 'span', array( 'lang' => $wgContLang->getHtmlCode(), 'dir' => $wgContLang->getDir() ), $msg );
755 }
756 return $msg;
757 } else {
758 return $msgObj->text();
759 }
760 }
761
762 /**
763 * @return null|string
764 */
765 function getCopyrightIcon() {
766 global $wgRightsUrl, $wgRightsText, $wgRightsIcon, $wgCopyrightIcon;
767
768 $out = '';
769
770 if ( isset( $wgCopyrightIcon ) && $wgCopyrightIcon ) {
771 $out = $wgCopyrightIcon;
772 } elseif ( $wgRightsIcon ) {
773 $icon = htmlspecialchars( $wgRightsIcon );
774
775 if ( $wgRightsUrl ) {
776 $url = htmlspecialchars( $wgRightsUrl );
777 $out .= '<a href="' . $url . '">';
778 }
779
780 $text = htmlspecialchars( $wgRightsText );
781 $out .= "<img src=\"$icon\" alt=\"$text\" width=\"88\" height=\"31\" />";
782
783 if ( $wgRightsUrl ) {
784 $out .= '</a>';
785 }
786 }
787
788 return $out;
789 }
790
791 /**
792 * Gets the powered by MediaWiki icon.
793 * @return string
794 */
795 function getPoweredBy() {
796 global $wgStylePath;
797
798 $url = htmlspecialchars( "$wgStylePath/common/images/poweredby_mediawiki_88x31.png" );
799 $text = '<a href="//www.mediawiki.org/"><img src="' . $url . '" height="31" width="88" alt="Powered by MediaWiki" /></a>';
800 wfRunHooks( 'SkinGetPoweredBy', array( &$text, $this ) );
801 return $text;
802 }
803
804 /**
805 * Get the timestamp of the latest revision, formatted in user language
806 *
807 * @return String
808 */
809 protected function lastModified() {
810 $timestamp = $this->getOutput()->getRevisionTimestamp();
811
812 # No cached timestamp, load it from the database
813 if ( $timestamp === null ) {
814 $timestamp = Revision::getTimestampFromId( $this->getTitle(), $this->getRevisionId() );
815 }
816
817 if ( $timestamp ) {
818 $d = $this->getLanguage()->userDate( $timestamp, $this->getUser() );
819 $t = $this->getLanguage()->userTime( $timestamp, $this->getUser() );
820 $s = ' ' . $this->msg( 'lastmodifiedat', $d, $t )->text();
821 } else {
822 $s = '';
823 }
824
825 if ( wfGetLB()->getLaggedSlaveMode() ) {
826 $s .= ' <strong>' . $this->msg( 'laggedslavemode' )->text() . '</strong>';
827 }
828
829 return $s;
830 }
831
832 /**
833 * @param $align string
834 * @return string
835 */
836 function logoText( $align = '' ) {
837 if ( $align != '' ) {
838 $a = " style='float: {$align};'";
839 } else {
840 $a = '';
841 }
842
843 $mp = $this->msg( 'mainpage' )->escaped();
844 $mptitle = Title::newMainPage();
845 $url = ( is_object( $mptitle ) ? htmlspecialchars( $mptitle->getLocalURL() ) : '' );
846
847 $logourl = $this->getLogo();
848 $s = "<a href='{$url}'><img{$a} src='{$logourl}' alt='[{$mp}]' /></a>";
849
850 return $s;
851 }
852
853 /**
854 * Renders a $wgFooterIcons icon acording to the method's arguments
855 * @param $icon Array: The icon to build the html for, see $wgFooterIcons for the format of this array
856 * @param $withImage Bool|String: Whether to use the icon's image or output a text-only footericon
857 * @return String HTML
858 */
859 function makeFooterIcon( $icon, $withImage = 'withImage' ) {
860 if ( is_string( $icon ) ) {
861 $html = $icon;
862 } else { // Assuming array
863 $url = isset($icon["url"]) ? $icon["url"] : null;
864 unset( $icon["url"] );
865 if ( isset( $icon["src"] ) && $withImage === 'withImage' ) {
866 $html = Html::element( 'img', $icon ); // do this the lazy way, just pass icon data as an attribute array
867 } else {
868 $html = htmlspecialchars( $icon["alt"] );
869 }
870 if ( $url ) {
871 $html = Html::rawElement( 'a', array( "href" => $url ), $html );
872 }
873 }
874 return $html;
875 }
876
877 /**
878 * Gets the link to the wiki's main page.
879 * @return string
880 */
881 function mainPageLink() {
882 $s = Linker::linkKnown(
883 Title::newMainPage(),
884 $this->msg( 'mainpage' )->escaped()
885 );
886
887 return $s;
888 }
889
890 /**
891 * @param $desc
892 * @param $page
893 * @return string
894 */
895 public function footerLink( $desc, $page ) {
896 // if the link description has been set to "-" in the default language,
897 if ( $this->msg( $desc )->inContentLanguage()->isDisabled() ) {
898 // then it is disabled, for all languages.
899 return '';
900 } else {
901 // Otherwise, we display the link for the user, described in their
902 // language (which may or may not be the same as the default language),
903 // but we make the link target be the one site-wide page.
904 $title = Title::newFromText( $this->msg( $page )->inContentLanguage()->text() );
905
906 return Linker::linkKnown(
907 $title,
908 $this->msg( $desc )->escaped()
909 );
910 }
911 }
912
913 /**
914 * Gets the link to the wiki's privacy policy page.
915 * @return String HTML
916 */
917 function privacyLink() {
918 return $this->footerLink( 'privacy', 'privacypage' );
919 }
920
921 /**
922 * Gets the link to the wiki's about page.
923 * @return String HTML
924 */
925 function aboutLink() {
926 return $this->footerLink( 'aboutsite', 'aboutpage' );
927 }
928
929 /**
930 * Gets the link to the wiki's general disclaimers page.
931 * @return String HTML
932 */
933 function disclaimerLink() {
934 return $this->footerLink( 'disclaimers', 'disclaimerpage' );
935 }
936
937 /**
938 * Return URL options for the 'edit page' link.
939 * This may include an 'oldid' specifier, if the current page view is such.
940 *
941 * @return array
942 * @private
943 */
944 function editUrlOptions() {
945 $options = array( 'action' => 'edit' );
946
947 if ( !$this->isRevisionCurrent() ) {
948 $options['oldid'] = intval( $this->getRevisionId() );
949 }
950
951 return $options;
952 }
953
954 /**
955 * @param $id User|int
956 * @return bool
957 */
958 function showEmailUser( $id ) {
959 if ( $id instanceof User ) {
960 $targetUser = $id;
961 } else {
962 $targetUser = User::newFromId( $id );
963 }
964 return $this->getUser()->canSendEmail() && # the sending user must have a confirmed email address
965 $targetUser->canReceiveEmail(); # the target user must have a confirmed email address and allow emails from users
966 }
967
968 /**
969 * Return a fully resolved style path url to images or styles stored in the common folder.
970 * This method returns a url resolved using the configured skin style path
971 * and includes the style version inside of the url.
972 * @param $name String: The name or path of a skin resource file
973 * @return String The fully resolved style path url including styleversion
974 */
975 function getCommonStylePath( $name ) {
976 global $wgStylePath, $wgStyleVersion;
977 return "$wgStylePath/common/$name?$wgStyleVersion";
978 }
979
980 /**
981 * Return a fully resolved style path url to images or styles stored in the curent skins's folder.
982 * This method returns a url resolved using the configured skin style path
983 * and includes the style version inside of the url.
984 * @param $name String: The name or path of a skin resource file
985 * @return String The fully resolved style path url including styleversion
986 */
987 function getSkinStylePath( $name ) {
988 global $wgStylePath, $wgStyleVersion;
989 return "$wgStylePath/{$this->stylename}/$name?$wgStyleVersion";
990 }
991
992 /* these are used extensively in SkinTemplate, but also some other places */
993
994 /**
995 * @param $urlaction string
996 * @return String
997 */
998 static function makeMainPageUrl( $urlaction = '' ) {
999 $title = Title::newMainPage();
1000 self::checkTitle( $title, '' );
1001
1002 return $title->getLocalURL( $urlaction );
1003 }
1004
1005 /**
1006 * Make a URL for a Special Page using the given query and protocol.
1007 *
1008 * If $proto is set to null, make a local URL. Otherwise, make a full
1009 * URL with the protocol specified.
1010 *
1011 * @param $name string Name of the Special page
1012 * @param $urlaction string Query to append
1013 * @param $proto Protocol to use or null for a local URL
1014 * @return String
1015 */
1016 static function makeSpecialUrl( $name, $urlaction = '', $proto = null ) {
1017 $title = SpecialPage::getSafeTitleFor( $name );
1018 if( is_null( $proto ) ) {
1019 return $title->getLocalURL( $urlaction );
1020 } else {
1021 return $title->getFullURL( $urlaction, false, $proto );
1022 }
1023 }
1024
1025 /**
1026 * @param $name string
1027 * @param $subpage string
1028 * @param $urlaction string
1029 * @return String
1030 */
1031 static function makeSpecialUrlSubpage( $name, $subpage, $urlaction = '' ) {
1032 $title = SpecialPage::getSafeTitleFor( $name, $subpage );
1033 return $title->getLocalURL( $urlaction );
1034 }
1035
1036 /**
1037 * @param $name string
1038 * @param $urlaction string
1039 * @return String
1040 */
1041 static function makeI18nUrl( $name, $urlaction = '' ) {
1042 $title = Title::newFromText( wfMessage( $name )->inContentLanguage()->text() );
1043 self::checkTitle( $title, $name );
1044 return $title->getLocalURL( $urlaction );
1045 }
1046
1047 /**
1048 * @param $name string
1049 * @param $urlaction string
1050 * @return String
1051 */
1052 static function makeUrl( $name, $urlaction = '' ) {
1053 $title = Title::newFromText( $name );
1054 self::checkTitle( $title, $name );
1055
1056 return $title->getLocalURL( $urlaction );
1057 }
1058
1059 /**
1060 * If url string starts with http, consider as external URL, else
1061 * internal
1062 * @param $name String
1063 * @return String URL
1064 */
1065 static function makeInternalOrExternalUrl( $name ) {
1066 if ( preg_match( '/^(?i:' . wfUrlProtocols() . ')/', $name ) ) {
1067 return $name;
1068 } else {
1069 return self::makeUrl( $name );
1070 }
1071 }
1072
1073 /**
1074 * this can be passed the NS number as defined in Language.php
1075 * @param $name
1076 * @param $urlaction string
1077 * @param $namespace int
1078 * @return String
1079 */
1080 static function makeNSUrl( $name, $urlaction = '', $namespace = NS_MAIN ) {
1081 $title = Title::makeTitleSafe( $namespace, $name );
1082 self::checkTitle( $title, $name );
1083
1084 return $title->getLocalURL( $urlaction );
1085 }
1086
1087 /**
1088 * these return an array with the 'href' and boolean 'exists'
1089 * @param $name
1090 * @param $urlaction string
1091 * @return array
1092 */
1093 static function makeUrlDetails( $name, $urlaction = '' ) {
1094 $title = Title::newFromText( $name );
1095 self::checkTitle( $title, $name );
1096
1097 return array(
1098 'href' => $title->getLocalURL( $urlaction ),
1099 'exists' => $title->getArticleID() != 0,
1100 );
1101 }
1102
1103 /**
1104 * Make URL details where the article exists (or at least it's convenient to think so)
1105 * @param $name String Article name
1106 * @param $urlaction String
1107 * @return Array
1108 */
1109 static function makeKnownUrlDetails( $name, $urlaction = '' ) {
1110 $title = Title::newFromText( $name );
1111 self::checkTitle( $title, $name );
1112
1113 return array(
1114 'href' => $title->getLocalURL( $urlaction ),
1115 'exists' => true
1116 );
1117 }
1118
1119 /**
1120 * make sure we have some title to operate on
1121 *
1122 * @param $title Title
1123 * @param $name string
1124 */
1125 static function checkTitle( &$title, $name ) {
1126 if ( !is_object( $title ) ) {
1127 $title = Title::newFromText( $name );
1128 if ( !is_object( $title ) ) {
1129 $title = Title::newFromText( '--error: link target missing--' );
1130 }
1131 }
1132 }
1133
1134 /**
1135 * Build an array that represents the sidebar(s), the navigation bar among them
1136 *
1137 * @return array
1138 */
1139 function buildSidebar() {
1140 global $wgMemc, $wgEnableSidebarCache, $wgSidebarCacheExpiry;
1141 wfProfileIn( __METHOD__ );
1142
1143 $key = wfMemcKey( 'sidebar', $this->getLanguage()->getCode() );
1144
1145 if ( $wgEnableSidebarCache ) {
1146 $cachedsidebar = $wgMemc->get( $key );
1147 if ( $cachedsidebar ) {
1148 wfProfileOut( __METHOD__ );
1149 return $cachedsidebar;
1150 }
1151 }
1152
1153 $bar = array();
1154 $this->addToSidebar( $bar, 'sidebar' );
1155
1156 wfRunHooks( 'SkinBuildSidebar', array( $this, &$bar ) );
1157 if ( $wgEnableSidebarCache ) {
1158 $wgMemc->set( $key, $bar, $wgSidebarCacheExpiry );
1159 }
1160
1161 wfProfileOut( __METHOD__ );
1162 return $bar;
1163 }
1164 /**
1165 * Add content from a sidebar system message
1166 * Currently only used for MediaWiki:Sidebar (but may be used by Extensions)
1167 *
1168 * This is just a wrapper around addToSidebarPlain() for backwards compatibility
1169 *
1170 * @param $bar array
1171 * @param $message String
1172 */
1173 function addToSidebar( &$bar, $message ) {
1174 $this->addToSidebarPlain( $bar, wfMessage( $message )->inContentLanguage()->plain() );
1175 }
1176
1177 /**
1178 * Add content from plain text
1179 * @since 1.17
1180 * @param $bar array
1181 * @param $text string
1182 * @return Array
1183 */
1184 function addToSidebarPlain( &$bar, $text ) {
1185 $lines = explode( "\n", $text );
1186
1187 $heading = '';
1188
1189 foreach ( $lines as $line ) {
1190 if ( strpos( $line, '*' ) !== 0 ) {
1191 continue;
1192 }
1193 $line = rtrim( $line, "\r" ); // for Windows compat
1194
1195 if ( strpos( $line, '**' ) !== 0 ) {
1196 $heading = trim( $line, '* ' );
1197 if ( !array_key_exists( $heading, $bar ) ) {
1198 $bar[$heading] = array();
1199 }
1200 } else {
1201 $line = trim( $line, '* ' );
1202
1203 if ( strpos( $line, '|' ) !== false ) { // sanity check
1204 $line = MessageCache::singleton()->transform( $line, false, null, $this->getTitle() );
1205 $line = array_map( 'trim', explode( '|', $line, 2 ) );
1206 if ( count( $line ) !== 2 ) {
1207 // Second sanity check, could be hit by people doing
1208 // funky stuff with parserfuncs... (bug 33321)
1209 continue;
1210 }
1211
1212 $extraAttribs = array();
1213
1214 $msgLink = $this->msg( $line[0] )->inContentLanguage();
1215 if ( $msgLink->exists() ) {
1216 $link = $msgLink->text();
1217 if ( $link == '-' ) {
1218 continue;
1219 }
1220 } else {
1221 $link = $line[0];
1222 }
1223 $msgText = $this->msg( $line[1] );
1224 if ( $msgText->exists() ) {
1225 $text = $msgText->text();
1226 } else {
1227 $text = $line[1];
1228 }
1229
1230 if ( preg_match( '/^(?i:' . wfUrlProtocols() . ')/', $link ) ) {
1231 $href = $link;
1232
1233 // Parser::getExternalLinkAttribs won't work here because of the Namespace things
1234 global $wgNoFollowLinks, $wgNoFollowDomainExceptions;
1235 if ( $wgNoFollowLinks && !wfMatchesDomainList( $href, $wgNoFollowDomainExceptions ) ) {
1236 $extraAttribs['rel'] = 'nofollow';
1237 }
1238
1239 global $wgExternalLinkTarget;
1240 if ( $wgExternalLinkTarget) {
1241 $extraAttribs['target'] = $wgExternalLinkTarget;
1242 }
1243 } else {
1244 $title = Title::newFromText( $link );
1245
1246 if ( $title ) {
1247 $title = $title->fixSpecialName();
1248 $href = $title->getLinkURL();
1249 } else {
1250 $href = 'INVALID-TITLE';
1251 }
1252 }
1253
1254 $bar[$heading][] = array_merge( array(
1255 'text' => $text,
1256 'href' => $href,
1257 'id' => 'n-' . Sanitizer::escapeId( strtr( $line[1], ' ', '-' ), 'noninitial' ),
1258 'active' => false
1259 ), $extraAttribs );
1260 } else {
1261 continue;
1262 }
1263 }
1264 }
1265
1266 return $bar;
1267 }
1268
1269 /**
1270 * Should we load mediawiki.legacy.wikiprintable? Skins that have their own
1271 * print stylesheet should override this and return false. (This is an
1272 * ugly hack to get Monobook to play nicely with OutputPage::headElement().)
1273 *
1274 * @return bool
1275 */
1276 public function commonPrintStylesheet() {
1277 return true;
1278 }
1279
1280 /**
1281 * Gets new talk page messages for the current user.
1282 * @return MediaWiki message or if no new talk page messages, nothing
1283 */
1284 function getNewtalks() {
1285 $out = $this->getOutput();
1286
1287 $newtalks = $this->getUser()->getNewMessageLinks();
1288 $ntl = '';
1289
1290 if ( count( $newtalks ) == 1 && $newtalks[0]['wiki'] === wfWikiID() ) {
1291 $uTalkTitle = $this->getUser()->getTalkPage();
1292
1293 if ( !$uTalkTitle->equals( $out->getTitle() ) ) {
1294 $lastSeenRev = isset( $newtalks[0]['rev'] ) ? $newtalks[0]['rev'] : null;
1295 $nofAuthors = 0;
1296 if ( $lastSeenRev !== null ) {
1297 $plural = true; // Default if we have a last seen revision: if unknown, use plural
1298 $latestRev = Revision::newFromTitle( $uTalkTitle, false, Revision::READ_NORMAL );
1299 if ( $latestRev !== null ) {
1300 // Singular if only 1 unseen revision, plural if several unseen revisions.
1301 $plural = $latestRev->getParentId() !== $lastSeenRev->getId();
1302 $nofAuthors = $uTalkTitle->countAuthorsBetween(
1303 $lastSeenRev, $latestRev, 10, 'include_new' );
1304 }
1305 } else {
1306 // Singular if no revision -> diff link will show latest change only in any case
1307 $plural = false;
1308 }
1309 $plural = $plural ? 2 : 1;
1310 // 2 signifies "more than one revision". We don't know how many, and even if we did,
1311 // the number of revisions or authors is not necessarily the same as the number of
1312 // "messages".
1313 $newMessagesLink = Linker::linkKnown(
1314 $uTalkTitle,
1315 $this->msg( 'newmessageslinkplural' )->params( $plural )->escaped(),
1316 array(),
1317 array( 'redirect' => 'no' )
1318 );
1319
1320 $newMessagesDiffLink = Linker::linkKnown(
1321 $uTalkTitle,
1322 $this->msg( 'newmessagesdifflinkplural' )->params( $plural )->escaped(),
1323 array(),
1324 $lastSeenRev !== null
1325 ? array( 'oldid' => $lastSeenRev->getId(), 'diff' => 'cur' )
1326 : array( 'diff' => 'cur' )
1327 );
1328
1329 if ( $nofAuthors >= 1 && $nofAuthors <= 10 ) {
1330 $ntl = $this->msg(
1331 'youhavenewmessagesfromusers',
1332 $newMessagesLink,
1333 $newMessagesDiffLink
1334 )->numParams( $nofAuthors );
1335 } else {
1336 // $nofAuthors === 11 signifies "11 or more" ("more than 10")
1337 $ntl = $this->msg(
1338 $nofAuthors > 10 ? 'youhavenewmessagesmanyusers' : 'youhavenewmessages',
1339 $newMessagesLink,
1340 $newMessagesDiffLink
1341 );
1342 }
1343 $ntl = $ntl->text();
1344 # Disable Squid cache
1345 $out->setSquidMaxage( 0 );
1346 }
1347 } elseif ( count( $newtalks ) ) {
1348 // _>" " for BC <= 1.16
1349 $sep = str_replace( '_', ' ', $this->msg( 'newtalkseparator' )->escaped() );
1350 $msgs = array();
1351
1352 foreach ( $newtalks as $newtalk ) {
1353 $msgs[] = Xml::element(
1354 'a',
1355 array( 'href' => $newtalk['link'] ), $newtalk['wiki']
1356 );
1357 }
1358 $parts = implode( $sep, $msgs );
1359 $ntl = $this->msg( 'youhavenewmessagesmulti' )->rawParams( $parts )->escaped();
1360 $out->setSquidMaxage( 0 );
1361 }
1362
1363 return $ntl;
1364 }
1365
1366 /**
1367 * Get a cached notice
1368 *
1369 * @param $name String: message name, or 'default' for $wgSiteNotice
1370 * @return String: HTML fragment
1371 */
1372 private function getCachedNotice( $name ) {
1373 global $wgRenderHashAppend, $parserMemc, $wgContLang;
1374
1375 wfProfileIn( __METHOD__ );
1376
1377 $needParse = false;
1378
1379 if( $name === 'default' ) {
1380 // special case
1381 global $wgSiteNotice;
1382 $notice = $wgSiteNotice;
1383 if( empty( $notice ) ) {
1384 wfProfileOut( __METHOD__ );
1385 return false;
1386 }
1387 } else {
1388 $msg = $this->msg( $name )->inContentLanguage();
1389 if( $msg->isDisabled() ) {
1390 wfProfileOut( __METHOD__ );
1391 return false;
1392 }
1393 $notice = $msg->plain();
1394 }
1395
1396 // Use the extra hash appender to let eg SSL variants separately cache.
1397 $key = wfMemcKey( $name . $wgRenderHashAppend );
1398 $cachedNotice = $parserMemc->get( $key );
1399 if( is_array( $cachedNotice ) ) {
1400 if( md5( $notice ) == $cachedNotice['hash'] ) {
1401 $notice = $cachedNotice['html'];
1402 } else {
1403 $needParse = true;
1404 }
1405 } else {
1406 $needParse = true;
1407 }
1408
1409 if ( $needParse ) {
1410 $parsed = $this->getOutput()->parse( $notice );
1411 $parserMemc->set( $key, array( 'html' => $parsed, 'hash' => md5( $notice ) ), 600 );
1412 $notice = $parsed;
1413 }
1414
1415 $notice = Html::rawElement( 'div', array( 'id' => 'localNotice',
1416 'lang' => $wgContLang->getHtmlCode(), 'dir' => $wgContLang->getDir() ), $notice );
1417 wfProfileOut( __METHOD__ );
1418 return $notice;
1419 }
1420
1421 /**
1422 * Get a notice based on page's namespace
1423 *
1424 * @return String: HTML fragment
1425 */
1426 function getNamespaceNotice() {
1427 wfProfileIn( __METHOD__ );
1428
1429 $key = 'namespacenotice-' . $this->getTitle()->getNsText();
1430 $namespaceNotice = $this->getCachedNotice( $key );
1431 if ( $namespaceNotice && substr( $namespaceNotice, 0, 7 ) != '<p>&lt;' ) {
1432 $namespaceNotice = '<div id="namespacebanner">' . $namespaceNotice . '</div>';
1433 } else {
1434 $namespaceNotice = '';
1435 }
1436
1437 wfProfileOut( __METHOD__ );
1438 return $namespaceNotice;
1439 }
1440
1441 /**
1442 * Get the site notice
1443 *
1444 * @return String: HTML fragment
1445 */
1446 function getSiteNotice() {
1447 wfProfileIn( __METHOD__ );
1448 $siteNotice = '';
1449
1450 if ( wfRunHooks( 'SiteNoticeBefore', array( &$siteNotice, $this ) ) ) {
1451 if ( is_object( $this->getUser() ) && $this->getUser()->isLoggedIn() ) {
1452 $siteNotice = $this->getCachedNotice( 'sitenotice' );
1453 } else {
1454 $anonNotice = $this->getCachedNotice( 'anonnotice' );
1455 if ( !$anonNotice ) {
1456 $siteNotice = $this->getCachedNotice( 'sitenotice' );
1457 } else {
1458 $siteNotice = $anonNotice;
1459 }
1460 }
1461 if ( !$siteNotice ) {
1462 $siteNotice = $this->getCachedNotice( 'default' );
1463 }
1464 }
1465
1466 wfRunHooks( 'SiteNoticeAfter', array( &$siteNotice, $this ) );
1467 wfProfileOut( __METHOD__ );
1468 return $siteNotice;
1469 }
1470
1471 /**
1472 * Create a section edit link. This supersedes editSectionLink() and
1473 * editSectionLinkForOther().
1474 *
1475 * @param $nt Title The title being linked to (may not be the same as
1476 * $wgTitle, if the section is included from a template)
1477 * @param $section string The designation of the section being pointed to,
1478 * to be included in the link, like "&section=$section"
1479 * @param $tooltip string The tooltip to use for the link: will be escaped
1480 * and wrapped in the 'editsectionhint' message
1481 * @param $lang string Language code
1482 * @return string HTML to use for edit link
1483 */
1484 public function doEditSectionLink( Title $nt, $section, $tooltip = null, $lang = false ) {
1485 // HTML generated here should probably have userlangattributes
1486 // added to it for LTR text on RTL pages
1487
1488 $lang = wfGetLangObj( $lang );
1489
1490 $attribs = array();
1491 if ( !is_null( $tooltip ) ) {
1492 # Bug 25462: undo double-escaping.
1493 $tooltip = Sanitizer::decodeCharReferences( $tooltip );
1494 $attribs['title'] = wfMessage( 'editsectionhint' )->rawParams( $tooltip )
1495 ->inLanguage( $lang )->text();
1496 }
1497 $link = Linker::link( $nt, wfMessage( 'editsection' )->inLanguage( $lang )->text(),
1498 $attribs,
1499 array( 'action' => 'edit', 'section' => $section ),
1500 array( 'noclasses', 'known' )
1501 );
1502
1503 # Run the old hook. This takes up half of the function . . . hopefully
1504 # we can rid of it someday.
1505 $attribs = '';
1506 if ( $tooltip ) {
1507 $attribs = wfMessage( 'editsectionhint' )->rawParams( $tooltip )
1508 ->inLanguage( $lang )->escaped();
1509 $attribs = " title=\"$attribs\"";
1510 }
1511 $result = null;
1512 wfRunHooks( 'EditSectionLink', array( &$this, $nt, $section, $attribs, $link, &$result, $lang ) );
1513 if ( !is_null( $result ) ) {
1514 # For reverse compatibility, add the brackets *after* the hook is
1515 # run, and even add them to hook-provided text. (This is the main
1516 # reason that the EditSectionLink hook is deprecated in favor of
1517 # DoEditSectionLink: it can't change the brackets or the span.)
1518 $result = wfMessage( 'editsection-brackets' )->rawParams( $result )
1519 ->inLanguage( $lang )->escaped();
1520 return "<span class=\"editsection\">$result</span>";
1521 }
1522
1523 # Add the brackets and the span, and *then* run the nice new hook, with
1524 # clean and non-redundant arguments.
1525 $result = wfMessage( 'editsection-brackets' )->rawParams( $link )
1526 ->inLanguage( $lang )->escaped();
1527 $result = "<span class=\"editsection\">$result</span>";
1528
1529 wfRunHooks( 'DoEditSectionLink', array( $this, $nt, $section, $tooltip, &$result, $lang ) );
1530 return $result;
1531 }
1532
1533 /**
1534 * Use PHP's magic __call handler to intercept legacy calls to the linker
1535 * for backwards compatibility.
1536 *
1537 * @param $fname String Name of called method
1538 * @param $args Array Arguments to the method
1539 * @throws MWException
1540 * @return mixed
1541 */
1542 function __call( $fname, $args ) {
1543 $realFunction = array( 'Linker', $fname );
1544 if ( is_callable( $realFunction ) ) {
1545 return call_user_func_array( $realFunction, $args );
1546 } else {
1547 $className = get_class( $this );
1548 throw new MWException( "Call to undefined method $className::$fname" );
1549 }
1550 }
1551
1552 }