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