c6b40e9952cab2b1fe9e728483b7b6a503f9883b
[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 * The main skin class that provide methods and properties for all other skins.
11 * This base class is also the "Standard" skin.
12 *
13 * See docs/skin.txt for more information.
14 *
15 * @ingroup Skins
16 */
17 class Skin extends Linker {
18 /**#@+
19 * @private
20 */
21 var $mWatchLinkNum = 0; // Appended to end of watch link id's
22 // How many search boxes have we made? Avoid duplicate id's.
23 protected $searchboxes = '';
24 /**#@-*/
25 protected $mRevisionId; // The revision ID we're looking at, null if not applicable.
26 protected $skinname = 'standard' ;
27
28 /** Constructor, call parent constructor */
29 function Skin() { parent::__construct(); }
30
31 /**
32 * Fetch the set of available skins.
33 * @return array of strings
34 * @static
35 */
36 static function getSkinNames() {
37 global $wgValidSkinNames;
38 static $skinsInitialised = false;
39 if ( !$skinsInitialised ) {
40 # Get a list of available skins
41 # Build using the regular expression '^(.*).php$'
42 # Array keys are all lower case, array value keep the case used by filename
43 #
44 wfProfileIn( __METHOD__ . '-init' );
45 global $wgStyleDirectory;
46 $skinDir = dir( $wgStyleDirectory );
47
48 # while code from www.php.net
49 while (false !== ($file = $skinDir->read())) {
50 // Skip non-PHP files, hidden files, and '.dep' includes
51 $matches = array();
52 if(preg_match('/^([^.]*)\.php$/',$file, $matches)) {
53 $aSkin = $matches[1];
54 $wgValidSkinNames[strtolower($aSkin)] = $aSkin;
55 }
56 }
57 $skinDir->close();
58 $skinsInitialised = true;
59 wfProfileOut( __METHOD__ . '-init' );
60 }
61 return $wgValidSkinNames;
62 }
63
64 /**
65 * Fetch the list of usable skins in regards to $wgSkipSkins.
66 * Useful for Special:Preferences and other places where you
67 * only want to show skins users _can_ use.
68 * @return array of strings
69 */
70 public static function getUsableSkins() {
71 global $wgSkipSkins;
72 $usableSkins = self::getSkinNames();
73 foreach ( $wgSkipSkins as $skip ) {
74 unset( $usableSkins[$skip] );
75 }
76 return $usableSkins;
77 }
78
79 /**
80 * Normalize a skin preference value to a form that can be loaded.
81 * If a skin can't be found, it will fall back to the configured
82 * default (or the old 'Classic' skin if that's broken).
83 * @param string $key
84 * @return string
85 * @static
86 */
87 static function normalizeKey( $key ) {
88 global $wgDefaultSkin;
89 $skinNames = Skin::getSkinNames();
90
91 if( $key == '' ) {
92 // Don't return the default immediately;
93 // in a misconfiguration we need to fall back.
94 $key = $wgDefaultSkin;
95 }
96
97 if( isset( $skinNames[$key] ) ) {
98 return $key;
99 }
100
101 // Older versions of the software used a numeric setting
102 // in the user preferences.
103 $fallback = array(
104 0 => $wgDefaultSkin,
105 1 => 'nostalgia',
106 2 => 'cologneblue' );
107
108 if( isset( $fallback[$key] ) ){
109 $key = $fallback[$key];
110 }
111
112 if( isset( $skinNames[$key] ) ) {
113 return $key;
114 } else {
115 return 'monobook';
116 }
117 }
118
119 /**
120 * Factory method for loading a skin of a given type
121 * @param string $key 'monobook', 'standard', etc
122 * @return Skin
123 * @static
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'.ucfirst($key);
133
134 # Grab the skin class and initialise it.
135 if ( !class_exists( $className ) ) {
136 // Preload base classes to work around APC/PHP5 bug
137 $deps = "{$wgStyleDirectory}/{$skinName}.deps.php";
138 if( file_exists( $deps ) ) include_once( $deps );
139 require_once( "{$wgStyleDirectory}/{$skinName}.php" );
140
141 # Check if we got if not failback to default skin
142 if( !class_exists( $className ) ) {
143 # DO NOT die if the class isn't found. This breaks maintenance
144 # scripts and can cause a user account to be unrecoverable
145 # except by SQL manipulation if a previously valid skin name
146 # is no longer valid.
147 wfDebug( "Skin class does not exist: $className\n" );
148 $className = 'SkinMonobook';
149 require_once( "{$wgStyleDirectory}/MonoBook.php" );
150 }
151 }
152 $skin = new $className;
153 return $skin;
154 }
155
156 /** @return string path to the skin stylesheet */
157 function getStylesheet() {
158 return 'common/wikistandard.css';
159 }
160
161 /** @return string skin name */
162 public function getSkinName() {
163 return $this->skinname;
164 }
165
166 function qbSetting() {
167 global $wgOut, $wgUser;
168
169 if ( $wgOut->isQuickbarSuppressed() ) { return 0; }
170 $q = $wgUser->getOption( 'quickbar', 0 );
171 return $q;
172 }
173
174 function initPage( OutputPage $out ) {
175 global $wgFavicon, $wgAppleTouchIcon;
176
177 wfProfileIn( __METHOD__ );
178
179 # Generally the order of the favicon and apple-touch-icon links
180 # should not matter, but Konqueror (3.5.9 at least) incorrectly
181 # uses whichever one appears later in the HTML source. Make sure
182 # apple-touch-icon is specified first to avoid this.
183 if( false !== $wgAppleTouchIcon ) {
184 $out->addLink( array( 'rel' => 'apple-touch-icon', 'href' => $wgAppleTouchIcon ) );
185 }
186
187 if( false !== $wgFavicon ) {
188 $out->addLink( array( 'rel' => 'shortcut icon', 'href' => $wgFavicon ) );
189 }
190
191 # OpenSearch description link
192 $out->addLink( array(
193 'rel' => 'search',
194 'type' => 'application/opensearchdescription+xml',
195 'href' => wfScript( 'opensearch_desc' ),
196 'title' => wfMsgForContent( 'opensearch-desc' ),
197 ));
198
199 $this->addMetadataLinks($out);
200
201 $this->mRevisionId = $out->mRevisionId;
202
203 $this->preloadExistence();
204
205 wfProfileOut( __METHOD__ );
206 }
207
208 /**
209 * Preload the existence of three commonly-requested pages in a single query
210 */
211 function preloadExistence() {
212 global $wgUser, $wgTitle;
213
214 // User/talk link
215 $titles = array( $wgUser->getUserPage(), $wgUser->getTalkPage() );
216
217 // Other tab link
218 if ( $wgTitle->getNamespace() == NS_SPECIAL ) {
219 // nothing
220 } elseif ( $wgTitle->isTalkPage() ) {
221 $titles[] = $wgTitle->getSubjectPage();
222 } else {
223 $titles[] = $wgTitle->getTalkPage();
224 }
225
226 $lb = new LinkBatch( $titles );
227 $lb->execute();
228 }
229
230 function addMetadataLinks( OutputPage $out ) {
231 global $wgTitle, $wgEnableDublinCoreRdf, $wgEnableCreativeCommonsRdf;
232 global $wgRightsPage, $wgRightsUrl;
233
234 if( $out->isArticleRelated() ) {
235 # note: buggy CC software only reads first "meta" link
236 if( $wgEnableCreativeCommonsRdf ) {
237 $out->addMetadataLink( array(
238 'title' => 'Creative Commons',
239 'type' => 'application/rdf+xml',
240 'href' => $wgTitle->getLocalURL( 'action=creativecommons') ) );
241 }
242 if( $wgEnableDublinCoreRdf ) {
243 $out->addMetadataLink( array(
244 'title' => 'Dublin Core',
245 'type' => 'application/rdf+xml',
246 'href' => $wgTitle->getLocalURL( 'action=dublincore' ) ) );
247 }
248 }
249 $copyright = '';
250 if( $wgRightsPage ) {
251 $copy = Title::newFromText( $wgRightsPage );
252 if( $copy ) {
253 $copyright = $copy->getLocalURL();
254 }
255 }
256 if( !$copyright && $wgRightsUrl ) {
257 $copyright = $wgRightsUrl;
258 }
259 if( $copyright ) {
260 $out->addLink( array(
261 'rel' => 'copyright',
262 'href' => $copyright ) );
263 }
264 }
265
266 function setMembers(){
267 global $wgTitle, $wgUser;
268 $this->mTitle = $wgTitle;
269 $this->mUser = $wgUser;
270 $this->userpage = $wgUser->getUserPage()->getPrefixedText();
271 $this->usercss = false;
272 }
273
274 function outputPage( OutputPage $out ) {
275 global $wgDebugComments;
276 wfProfileIn( __METHOD__ );
277
278 $this->setMembers();
279 $this->initPage( $out );
280
281 // See self::afterContentHook() for documentation
282 $afterContent = $this->afterContentHook();
283
284 $out->out( $out->headElement( $this ) );
285
286 $out->out( "\n<body" );
287 $ops = $this->getBodyOptions();
288 foreach ( $ops as $name => $val ) {
289 $out->out( " $name='$val'" );
290 }
291 $out->out( ">\n" );
292 if ( $wgDebugComments ) {
293 $out->out( "<!-- Wiki debugging output:\n" .
294 $out->mDebugtext . "-->\n" );
295 }
296
297 $out->out( $this->beforeContent() );
298
299 $out->out( $out->mBodytext . "\n" );
300
301 $out->out( $this->afterContent() );
302
303 $out->out( $afterContent );
304
305 $out->out( $this->bottomScripts() );
306
307 $out->out( wfReportTime() );
308
309 $out->out( "\n</body></html>" );
310 wfProfileOut( __METHOD__ );
311 }
312
313 static function makeVariablesScript( $data ) {
314 global $wgJsMimeType;
315
316 $r = array( "<script type= \"$wgJsMimeType\">/*<![CDATA[*/" );
317 foreach ( $data as $name => $value ) {
318 $encValue = Xml::encodeJsVar( $value );
319 $r[] = "var $name = $encValue;";
320 }
321 $r[] = "/*]]>*/</script>\n";
322
323 return implode( "\n\t\t", $r );
324 }
325
326 /**
327 * Make a <script> tag containing global variables
328 * @param array $data Associative array containing one element:
329 * skinname => the skin name
330 * The odd calling convention is for backwards compatibility
331 */
332 static function makeGlobalVariablesScript( $data ) {
333 global $wgScript, $wgStylePath, $wgUser;
334 global $wgArticlePath, $wgScriptPath, $wgServer, $wgContLang, $wgLang;
335 global $wgTitle, $wgCanonicalNamespaceNames, $wgOut, $wgArticle;
336 global $wgBreakFrames, $wgRequest, $wgVariantArticlePath, $wgActionPaths;
337 global $wgUseAjax, $wgAjaxWatch;
338 global $wgVersion, $wgEnableAPI, $wgEnableWriteAPI;
339 global $wgRestrictionTypes, $wgLivePreview;
340 global $wgMWSuggestTemplate, $wgDBname, $wgEnableMWSuggest;
341
342 $ns = $wgTitle->getNamespace();
343 $nsname = isset( $wgCanonicalNamespaceNames[ $ns ] ) ? $wgCanonicalNamespaceNames[ $ns ] : $wgTitle->getNsText();
344 $separatorTransTable = $wgContLang->separatorTransformTable();
345 $separatorTransTable = $separatorTransTable ? $separatorTransTable : array();
346 $compactSeparatorTransTable = array(
347 implode( "\t", array_keys( $separatorTransTable ) ),
348 implode( "\t", $separatorTransTable ),
349 );
350 $digitTransTable = $wgContLang->digitTransformTable();
351 $digitTransTable = $digitTransTable ? $digitTransTable : array();
352 $compactDigitTransTable = array(
353 implode( "\t", array_keys( $digitTransTable ) ),
354 implode( "\t", $digitTransTable ),
355 );
356
357 $vars = array(
358 'skin' => $data['skinname'],
359 'stylepath' => $wgStylePath,
360 'wgArticlePath' => $wgArticlePath,
361 'wgScriptPath' => $wgScriptPath,
362 'wgScript' => $wgScript,
363 'wgVariantArticlePath' => $wgVariantArticlePath,
364 'wgActionPaths' => (object)$wgActionPaths,
365 'wgServer' => $wgServer,
366 'wgCanonicalNamespace' => $nsname,
367 'wgCanonicalSpecialPageName' => SpecialPage::resolveAlias( $wgTitle->getDBkey() ),
368 'wgNamespaceNumber' => $wgTitle->getNamespace(),
369 'wgPageName' => $wgTitle->getPrefixedDBKey(),
370 'wgTitle' => $wgTitle->getText(),
371 'wgAction' => $wgRequest->getText( 'action', 'view' ),
372 'wgArticleId' => $wgTitle->getArticleId(),
373 'wgIsArticle' => $wgOut->isArticle(),
374 'wgUserName' => $wgUser->isAnon() ? NULL : $wgUser->getName(),
375 'wgUserGroups' => $wgUser->isAnon() ? NULL : $wgUser->getEffectiveGroups(),
376 'wgUserLanguage' => $wgLang->getCode(),
377 'wgContentLanguage' => $wgContLang->getCode(),
378 'wgBreakFrames' => $wgBreakFrames,
379 'wgCurRevisionId' => isset( $wgArticle ) ? $wgArticle->getLatest() : 0,
380 'wgVersion' => $wgVersion,
381 'wgEnableAPI' => $wgEnableAPI,
382 'wgEnableWriteAPI' => $wgEnableWriteAPI,
383 'wgSeparatorTransformTable' => $compactSeparatorTransTable,
384 'wgDigitTransformTable' => $compactDigitTransTable,
385 );
386
387 if( $wgUseAjax && $wgEnableMWSuggest && !$wgUser->getOption( 'disablesuggest', false )){
388 $vars['wgMWSuggestTemplate'] = SearchEngine::getMWSuggestTemplate();
389 $vars['wgDBname'] = $wgDBname;
390 $vars['wgSearchNamespaces'] = SearchEngine::userNamespaces( $wgUser );
391 $vars['wgMWSuggestMessages'] = array( wfMsg('search-mwsuggest-enabled'), wfMsg('search-mwsuggest-disabled'));
392 }
393
394 foreach( $wgRestrictionTypes as $type )
395 $vars['wgRestriction' . ucfirst( $type )] = $wgTitle->getRestrictions( $type );
396
397 if ( $wgLivePreview && $wgUser->getOption( 'uselivepreview' ) ) {
398 $vars['wgLivepreviewMessageLoading'] = wfMsg( 'livepreview-loading' );
399 $vars['wgLivepreviewMessageReady'] = wfMsg( 'livepreview-ready' );
400 $vars['wgLivepreviewMessageFailed'] = wfMsg( 'livepreview-failed' );
401 $vars['wgLivepreviewMessageError'] = wfMsg( 'livepreview-error' );
402 }
403
404 if($wgUseAjax && $wgAjaxWatch && $wgUser->isLoggedIn() ) {
405 $msgs = (object)array();
406 foreach ( array( 'watch', 'unwatch', 'watching', 'unwatching' ) as $msgName ) {
407 $msgs->{$msgName . 'Msg'} = wfMsg( $msgName );
408 }
409 $vars['wgAjaxWatch'] = $msgs;
410 }
411
412 wfRunHooks('MakeGlobalVariablesScript', array(&$vars));
413
414 return self::makeVariablesScript( $vars );
415 }
416
417 function getHeadScripts( $allowUserJs ) {
418 global $wgStylePath, $wgUser, $wgJsMimeType, $wgStyleVersion;
419
420 $vars = self::makeGlobalVariablesScript( array( 'skinname' => $this->getSkinName() ) );
421
422 $r = array( "<script type=\"{$wgJsMimeType}\" src=\"{$wgStylePath}/common/wikibits.js?$wgStyleVersion\"></script>" );
423 global $wgUseSiteJs;
424 if ($wgUseSiteJs) {
425 $jsCache = $wgUser->isLoggedIn() ? '&smaxage=0' : '';
426 $r[] = "<script type=\"$wgJsMimeType\" src=\"".
427 htmlspecialchars(self::makeUrl('-',
428 "action=raw$jsCache&gen=js&useskin=" .
429 urlencode( $this->getSkinName() ) ) ) .
430 "\"><!-- site js --></script>";
431 }
432 if( $allowUserJs && $wgUser->isLoggedIn() ) {
433 $userpage = $wgUser->getUserPage();
434 $userjs = htmlspecialchars( self::makeUrl(
435 $userpage->getPrefixedText().'/'.$this->getSkinName().'.js',
436 'action=raw&ctype='.$wgJsMimeType));
437 $r[] = '<script type="'.$wgJsMimeType.'" src="'.$userjs."\"></script>";
438 }
439 return $vars . "\t\t" . implode ( "\n\t\t", $r );
440 }
441
442 /**
443 * To make it harder for someone to slip a user a fake
444 * user-JavaScript or user-CSS preview, a random token
445 * is associated with the login session. If it's not
446 * passed back with the preview request, we won't render
447 * the code.
448 *
449 * @param string $action
450 * @return bool
451 * @private
452 */
453 function userCanPreview( $action ) {
454 global $wgTitle, $wgRequest, $wgUser;
455
456 if( $action != 'submit' )
457 return false;
458 if( !$wgRequest->wasPosted() )
459 return false;
460 if( !$wgTitle->userCanEditCssJsSubpage() )
461 return false;
462 return $wgUser->matchEditToken(
463 $wgRequest->getVal( 'wpEditToken' ) );
464 }
465
466 /**
467 * generated JavaScript action=raw&gen=js
468 * This returns MediaWiki:Common.js and MediaWiki:[Skinname].js concate-
469 * nated together. For some bizarre reason, it does *not* return any
470 * custom user JS from subpages. Huh?
471 *
472 * There's absolutely no reason to have separate Monobook/Common JSes.
473 * Any JS that cares can just check the skin variable generated at the
474 * top. For now Monobook.js will be maintained, but it should be consi-
475 * dered deprecated.
476 *
477 * @return string
478 */
479 public function generateUserJs() {
480 global $wgStylePath;
481
482 wfProfileIn( __METHOD__ );
483
484 $s = "/* generated javascript */\n";
485 $s .= "var skin = '" . Xml::escapeJsString( $this->getSkinName() ) . "';\n";
486 $s .= "var stylepath = '" . Xml::escapeJsString( $wgStylePath ) . "';";
487 $s .= "\n\n/* MediaWiki:Common.js */\n";
488 $commonJs = wfMsgForContent('common.js');
489 if ( !wfEmptyMsg ( 'common.js', $commonJs ) ) {
490 $s .= $commonJs;
491 }
492
493 $s .= "\n\n/* MediaWiki:".ucfirst( $this->getSkinName() ).".js */\n";
494 // avoid inclusion of non defined user JavaScript (with custom skins only)
495 // by checking for default message content
496 $msgKey = ucfirst( $this->getSkinName() ).'.js';
497 $userJS = wfMsgForContent($msgKey);
498 if ( !wfEmptyMsg( $msgKey, $userJS ) ) {
499 $s .= $userJS;
500 }
501
502 wfProfileOut( __METHOD__ );
503 return $s;
504 }
505
506 /**
507 * generate user stylesheet for action=raw&gen=css
508 */
509 public function generateUserStylesheet() {
510 wfProfileIn( __METHOD__ );
511 $s = "/* generated user stylesheet */\n" .
512 $this->reallyGenerateUserStylesheet();
513 wfProfileOut( __METHOD__ );
514 return $s;
515 }
516
517 /**
518 * Split for easier subclassing in SkinSimple, SkinStandard and SkinCologneBlue
519 */
520 protected function reallyGenerateUserStylesheet(){
521 global $wgUser;
522 $s = '';
523 if (($undopt = $wgUser->getOption("underline")) < 2) {
524 $underline = $undopt ? 'underline' : 'none';
525 $s .= "a { text-decoration: $underline; }\n";
526 }
527 if( $wgUser->getOption( 'highlightbroken' ) ) {
528 $s .= "a.new, #quickbar a.new { color: #CC2200; }\n";
529 } else {
530 $s .= <<<END
531 a.new, #quickbar a.new,
532 a.stub, #quickbar a.stub {
533 color: inherit;
534 }
535 a.new:after, #quickbar a.new:after {
536 content: "?";
537 color: #CC2200;
538 }
539 a.stub:after, #quickbar a.stub:after {
540 content: "!";
541 color: #772233;
542 }
543 END;
544 }
545 if( $wgUser->getOption( 'justify' ) ) {
546 $s .= "#article, #bodyContent, #mw_content { text-align: justify; }\n";
547 }
548 if( !$wgUser->getOption( 'showtoc' ) ) {
549 $s .= "#toc { display: none; }\n";
550 }
551 if( !$wgUser->getOption( 'editsection' ) ) {
552 $s .= ".editsection { display: none; }\n";
553 }
554 return $s;
555 }
556
557 /**
558 * @private
559 */
560 function setupUserCss( OutputPage $out ) {
561 global $wgRequest, $wgContLang, $wgUser;
562 global $wgAllowUserCss, $wgUseSiteCss, $wgSquidMaxage, $wgStylePath;
563
564 wfProfileIn( __METHOD__ );
565
566 $this->setupSkinUserCss( $out );
567
568 $siteargs = array(
569 'action' => 'raw',
570 'maxage' => $wgSquidMaxage,
571 );
572
573 // Add any extension CSS
574 foreach( $out->getExtStyle() as $tag ) {
575 $out->addStyle( $tag['href'] );
576 }
577
578 // If we use the site's dynamic CSS, throw that in, too
579 // Per-site custom styles
580 if( $wgUseSiteCss ) {
581 global $wgHandheldStyle;
582 $query = wfArrayToCGI( array(
583 'usemsgcache' => 'yes',
584 'ctype' => 'text/css',
585 'smaxage' => $wgSquidMaxage
586 ) + $siteargs );
587 # Site settings must override extension css! (bug 15025)
588 $out->addStyle( self::makeNSUrl( 'Common.css', $query, NS_MEDIAWIKI ) );
589 $out->addStyle( self::makeNSUrl( 'Print.css', $query, NS_MEDIAWIKI ), 'print' );
590 if( $wgHandheldStyle ) {
591 $out->addStyle( self::makeNSUrl( 'Handheld.css', $query, NS_MEDIAWIKI ), 'handheld' );
592 }
593 $out->addStyle( self::makeNSUrl( $this->getSkinName() . '.css', $query, NS_MEDIAWIKI ) );
594 }
595
596 if( $wgUser->isLoggedIn() ) {
597 // Ensure that logged-in users' generated CSS isn't clobbered
598 // by anons' publicly cacheable generated CSS.
599 $siteargs['smaxage'] = '0';
600 $siteargs['ts'] = $wgUser->mTouched;
601 }
602 // Per-user styles based on preferences
603 $siteargs['gen'] = 'css';
604 if( ( $us = $wgRequest->getVal( 'useskin', '' ) ) !== '' ) {
605 $siteargs['useskin'] = $us;
606 }
607 $out->addStyle( self::makeUrl( '-', wfArrayToCGI( $siteargs ) ) );
608
609 // Per-user custom style pages
610 if( $wgAllowUserCss && $wgUser->isLoggedIn() ) {
611 $action = $wgRequest->getVal('action');
612 # If we're previewing the CSS page, use it
613 if( $this->mTitle->isCssSubpage() && $this->userCanPreview( $action ) ) {
614 $previewCss = $wgRequest->getText('wpTextbox1');
615 // @FIXME: properly escape the cdata!
616 $this->usercss = "/*<![CDATA[*/\n" . $previewCss . "/*]]>*/";
617 } else {
618 $out->addStyle( self::makeUrl($this->userpage . '/' . $this->getSkinName() .'.css',
619 'action=raw&ctype=text/css' ) );
620 }
621 }
622
623 wfProfileOut( __METHOD__ );
624 }
625
626 /**
627 * Add skin specific stylesheets
628 * @param $out OutputPage
629 */
630 function setupSkinUserCss( OutputPage $out ) {
631 $out->addStyle( 'common/shared.css' );
632 $out->addStyle( 'common/oldshared.css' );
633 $out->addStyle( $this->getStylesheet() );
634 $out->addStyle( 'common/common_rtl.css', '', '', 'rtl' );
635 }
636
637 function getBodyOptions() {
638 global $wgUser, $wgTitle, $wgOut, $wgRequest, $wgContLang;
639
640 extract( $wgRequest->getValues( 'oldid', 'redirect', 'diff' ) );
641
642 if ( 0 != $wgTitle->getNamespace() ) {
643 $a = array( 'bgcolor' => '#ffffec' );
644 }
645 else $a = array( 'bgcolor' => '#FFFFFF' );
646 if($wgOut->isArticle() && $wgUser->getOption('editondblclick') &&
647 $wgTitle->quickUserCan( 'edit' ) ) {
648 $s = $wgTitle->getFullURL( $this->editUrlOptions() );
649 $s = 'document.location = "' .Xml::escapeJsString( $s ) .'";';
650 $a += array ('ondblclick' => $s);
651
652 }
653 $a['onload'] = $wgOut->getOnloadHandler();
654 $a['class'] =
655 'mediawiki' .
656 ' '.( $wgContLang->isRTL() ? "rtl" : "ltr" ).
657 ' '.$this->getPageClasses( $wgTitle ) .
658 ' skin-'. Sanitizer::escapeClass( $this->getSkinName( ) );
659 return $a;
660 }
661
662 function getPageClasses( $title ) {
663 $numeric = 'ns-'.$title->getNamespace();
664 if( $title->getNamespace() == NS_SPECIAL ) {
665 $type = "ns-special";
666 } elseif( $title->isTalkPage() ) {
667 $type = "ns-talk";
668 } else {
669 $type = "ns-subject";
670 }
671 $name = Sanitizer::escapeClass( 'page-'.$title->getPrefixedText() );
672 return "$numeric $type $name";
673 }
674
675 /**
676 * URL to the logo
677 */
678 function getLogo() {
679 global $wgLogo;
680 return $wgLogo;
681 }
682
683 /**
684 * This will be called immediately after the <body> tag. Split into
685 * two functions to make it easier to subclass.
686 */
687 function beforeContent() {
688 return $this->doBeforeContent();
689 }
690
691 function doBeforeContent() {
692 global $wgContLang;
693 $fname = 'Skin::doBeforeContent';
694 wfProfileIn( $fname );
695
696 $s = '';
697 $qb = $this->qbSetting();
698
699 if( $langlinks = $this->otherLanguages() ) {
700 $rows = 2;
701 $borderhack = '';
702 } else {
703 $rows = 1;
704 $langlinks = false;
705 $borderhack = 'class="top"';
706 }
707
708 $s .= "\n<div id='content'>\n<div id='topbar'>\n" .
709 "<table border='0' cellspacing='0' width='98%'>\n<tr>\n";
710
711 $shove = ( $qb != 0 );
712 $left = ( $qb == 1 || $qb == 3 );
713 if( $wgContLang->isRTL() ) $left = !$left;
714
715 if( !$shove ) {
716 $s .= "<td class='top' align='left' valign='top' rowspan='{$rows}'>\n" .
717 $this->logoText() . '</td>';
718 } elseif( $left ) {
719 $s .= $this->getQuickbarCompensator( $rows );
720 }
721 $l = $wgContLang->isRTL() ? 'right' : 'left';
722 $s .= "<td {$borderhack} align='$l' valign='top'>\n";
723
724 $s .= $this->topLinks() ;
725 $s .= "<p class='subtitle'>" . $this->pageTitleLinks() . "</p>\n";
726
727 $r = $wgContLang->isRTL() ? "left" : "right";
728 $s .= "</td>\n<td {$borderhack} valign='top' align='$r' nowrap='nowrap'>";
729 $s .= $this->nameAndLogin();
730 $s .= "\n<br />" . $this->searchForm() . "</td>";
731
732 if ( $langlinks ) {
733 $s .= "</tr>\n<tr>\n<td class='top' colspan=\"2\">$langlinks</td>\n";
734 }
735
736 if ( $shove && !$left ) { # Right
737 $s .= $this->getQuickbarCompensator( $rows );
738 }
739 $s .= "</tr>\n</table>\n</div>\n";
740 $s .= "\n<div id='article'>\n";
741
742 $notice = wfGetSiteNotice();
743 if( $notice ) {
744 $s .= "\n<div id='siteNotice'>$notice</div>\n";
745 }
746 $s .= $this->pageTitle();
747 $s .= $this->pageSubtitle() ;
748 $s .= $this->getCategories();
749 wfProfileOut( $fname );
750 return $s;
751 }
752
753
754 function getCategoryLinks() {
755 global $wgOut, $wgTitle, $wgUseCategoryBrowser;
756 global $wgContLang, $wgUser;
757
758 if( count( $wgOut->mCategoryLinks ) == 0 ) return '';
759
760 # Separator
761 $sep = wfMsgHtml( 'catseparator' );
762
763 // Use Unicode bidi embedding override characters,
764 // to make sure links don't smash each other up in ugly ways.
765 $dir = $wgContLang->isRTL() ? 'rtl' : 'ltr';
766 $embed = "<span dir='$dir'>";
767 $pop = '</span>';
768
769 $allCats = $wgOut->getCategoryLinks();
770 $s = '';
771 $colon = wfMsgExt( 'colon-separator', 'escapenoentities' );
772 if ( !empty( $allCats['normal'] ) ) {
773 $t = $embed . implode ( "{$pop} {$sep} {$embed}" , $allCats['normal'] ) . $pop;
774
775 $msg = wfMsgExt( 'pagecategories', array( 'parsemag', 'escapenoentities' ), count( $allCats['normal'] ) );
776 $s .= '<div id="mw-normal-catlinks">' .
777 $this->link( Title::newFromText( wfMsgForContent('pagecategorieslink') ), $msg )
778 . $colon . $t . '</div>';
779 }
780
781 # Hidden categories
782 if ( isset( $allCats['hidden'] ) ) {
783 if ( $wgUser->getBoolOption( 'showhiddencats' ) ) {
784 $class ='mw-hidden-cats-user-shown';
785 } elseif ( $wgTitle->getNamespace() == NS_CATEGORY ) {
786 $class = 'mw-hidden-cats-ns-shown';
787 } else {
788 $class = 'mw-hidden-cats-hidden';
789 }
790 $s .= "<div id=\"mw-hidden-catlinks\" class=\"$class\">" .
791 wfMsgExt( 'hidden-categories', array( 'parsemag', 'escapenoentities' ), count( $allCats['hidden'] ) ) .
792 $colon . $embed . implode( "$pop $sep $embed", $allCats['hidden'] ) . $pop .
793 "</div>";
794 }
795
796 # optional 'dmoz-like' category browser. Will be shown under the list
797 # of categories an article belong to
798 if( $wgUseCategoryBrowser ){
799 $s .= '<br /><hr />';
800
801 # get a big array of the parents tree
802 $parenttree = $wgTitle->getParentCategoryTree();
803 # Skin object passed by reference cause it can not be
804 # accessed under the method subfunction drawCategoryBrowser
805 $tempout = explode("\n", Skin::drawCategoryBrowser($parenttree, $this) );
806 # Clean out bogus first entry and sort them
807 unset($tempout[0]);
808 asort($tempout);
809 # Output one per line
810 $s .= implode("<br />\n", $tempout);
811 }
812
813 return $s;
814 }
815
816 /** Render the array as a serie of links.
817 * @param $tree Array: categories tree returned by Title::getParentCategoryTree
818 * @param &skin Object: skin passed by reference
819 * @return String separated by &gt;, terminate with "\n"
820 */
821 function drawCategoryBrowser( $tree, &$skin ){
822 $return = '';
823 foreach ($tree as $element => $parent) {
824 if (empty($parent)) {
825 # element start a new list
826 $return .= "\n";
827 } else {
828 # grab the others elements
829 $return .= Skin::drawCategoryBrowser($parent, $skin) . ' &gt; ';
830 }
831 # add our current element to the list
832 $eltitle = Title::newFromText($element);
833 $return .= $skin->link( $eltitle, $eltitle->getText() ) ;
834 }
835 return $return;
836 }
837
838 function getCategories() {
839 $catlinks=$this->getCategoryLinks();
840
841 $classes = 'catlinks';
842
843 if( strpos( $catlinks, '<div id="mw-normal-catlinks">' ) === false &&
844 strpos( $catlinks, '<div id="mw-hidden-catlinks" class="mw-hidden-cats-hidden">' ) !== false ) {
845 $classes .= ' catlinks-allhidden';
846 }
847
848 if( !empty( $catlinks ) ){
849 return "<div id='catlinks' class='$classes'>{$catlinks}</div>";
850 }
851 }
852
853 function getQuickbarCompensator( $rows = 1 ) {
854 return "<td width='152' rowspan='{$rows}'>&nbsp;</td>";
855 }
856
857 /**
858 * This runs a hook to allow extensions placing their stuff after content
859 * and article metadata (e.g. categories).
860 * Note: This function has nothing to do with afterContent().
861 *
862 * This hook is placed here in order to allow using the same hook for all
863 * skins, both the SkinTemplate based ones and the older ones, which directly
864 * use this class to get their data.
865 *
866 * The output of this function gets processed in SkinTemplate::outputPage() for
867 * the SkinTemplate based skins, all other skins should directly echo it.
868 *
869 * Returns an empty string by default, if not changed by any hook function.
870 */
871 protected function afterContentHook() {
872 $data = "";
873
874 if( wfRunHooks( 'SkinAfterContent', array( &$data ) ) ){
875 // adding just some spaces shouldn't toggle the output
876 // of the whole <div/>, so we use trim() here
877 if( trim( $data ) != '' ){
878 // Doing this here instead of in the skins to
879 // ensure that the div has the same ID in all
880 // skins
881 $data = "<div id='mw-data-after-content'>\n" .
882 "\t$data\n" .
883 "</div>\n";
884 }
885 } else {
886 wfDebug( "Hook SkinAfterContent changed output processing.\n" );
887 }
888
889 return $data;
890 }
891
892 /**
893 * Generate debug data HTML for displaying at the bottom of the main content
894 * area.
895 * @return String HTML containing debug data, if enabled (otherwise empty).
896 */
897 protected function generateDebugHTML() {
898 global $wgShowDebug, $wgOut;
899 if ( $wgShowDebug ) {
900 $listInternals = str_replace( "\n", "</li>\n<li>", htmlspecialchars( $wgOut->mDebugtext ) );
901 return "\n<hr>\n<strong>Debug data:</strong><ul style=\"font-family:monospace;\"><li>" .
902 $listInternals . "</li></ul>\n";
903 }
904 return '';
905 }
906
907 /**
908 * This gets called shortly before the </body> tag.
909 * @return String HTML to be put before </body>
910 */
911 function afterContent() {
912 $printfooter = "<div class=\"printfooter\">\n" . $this->printFooter() . "</div>\n";
913 return $printfooter . $this->generateDebugHTML() . $this->doAfterContent();
914 }
915
916 /**
917 * This gets called shortly before the </body> tag.
918 * @return String HTML-wrapped JS code to be put before </body>
919 */
920 function bottomScripts() {
921 global $wgJsMimeType;
922 $bottomScriptText = "\n\t\t<script type=\"$wgJsMimeType\">if (window.runOnloadHook) runOnloadHook();</script>\n";
923 wfRunHooks( 'SkinAfterBottomScripts', array( $this, &$bottomScriptText ) );
924 return $bottomScriptText;
925 }
926
927 /** @return string Retrievied from HTML text */
928 function printSource() {
929 global $wgTitle;
930 $url = htmlspecialchars( $wgTitle->getFullURL() );
931 return wfMsg( 'retrievedfrom', '<a href="'.$url.'">'.$url.'</a>' );
932 }
933
934 function printFooter() {
935 return "<p>" . $this->printSource() .
936 "</p>\n\n<p>" . $this->pageStats() . "</p>\n";
937 }
938
939 /** overloaded by derived classes */
940 function doAfterContent() { return "</div></div>"; }
941
942 function pageTitleLinks() {
943 global $wgOut, $wgTitle, $wgUser, $wgRequest, $wgLang;
944
945 $oldid = $wgRequest->getVal( 'oldid' );
946 $diff = $wgRequest->getVal( 'diff' );
947 $action = $wgRequest->getText( 'action' );
948
949 $s[] = $this->printableLink();
950 $disclaimer = $this->disclaimerLink(); # may be empty
951 if( $disclaimer ) {
952 $s[] = $disclaimer;
953 }
954 $privacy = $this->privacyLink(); # may be empty too
955 if( $privacy ) {
956 $s[] = $privacy;
957 }
958
959 if ( $wgOut->isArticleRelated() ) {
960 if ( $wgTitle->getNamespace() == NS_FILE ) {
961 $name = $wgTitle->getDBkey();
962 $image = wfFindFile( $wgTitle );
963 if( $image ) {
964 $link = htmlspecialchars( $image->getURL() );
965 $style = $this->getInternalLinkAttributes( $link, $name );
966 $s[] = "<a href=\"{$link}\"{$style}>{$name}</a>";
967 }
968 }
969 }
970 if ( 'history' == $action || isset( $diff ) || isset( $oldid ) ) {
971 $s[] .= $this->makeKnownLinkObj( $wgTitle,
972 wfMsg( 'currentrev' ) );
973 }
974
975 if ( $wgUser->getNewtalk() ) {
976 # do not show "You have new messages" text when we are viewing our
977 # own talk page
978 if( !$wgTitle->equals( $wgUser->getTalkPage() ) ) {
979 $tl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), wfMsgHtml( 'newmessageslink' ), 'redirect=no' );
980 $dl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), wfMsgHtml( 'newmessagesdifflink' ), 'diff=cur' );
981 $s[] = '<strong>'. wfMsg( 'youhavenewmessages', $tl, $dl ) . '</strong>';
982 # disable caching
983 $wgOut->setSquidMaxage(0);
984 $wgOut->enableClientCache(false);
985 }
986 }
987
988 $undelete = $this->getUndeleteLink();
989 if( !empty( $undelete ) ) {
990 $s[] = $undelete;
991 }
992 return $wgLang->pipeList( $s );
993 }
994
995 function getUndeleteLink() {
996 global $wgUser, $wgTitle, $wgContLang, $wgLang, $action;
997 if( $wgUser->isAllowed( 'deletedhistory' ) &&
998 (($wgTitle->getArticleId() == 0) || ($action == "history")) &&
999 ($n = $wgTitle->isDeleted() ) )
1000 {
1001 if ( $wgUser->isAllowed( 'undelete' ) ) {
1002 $msg = 'thisisdeleted';
1003 } else {
1004 $msg = 'viewdeleted';
1005 }
1006 return wfMsg( $msg,
1007 $this->makeKnownLinkObj(
1008 SpecialPage::getTitleFor( 'Undelete', $wgTitle->getPrefixedDBkey() ),
1009 wfMsgExt( 'restorelink', array( 'parsemag', 'escape' ), $wgLang->formatNum( $n ) ) ) );
1010 }
1011 return '';
1012 }
1013
1014 function printableLink() {
1015 global $wgOut, $wgFeedClasses, $wgRequest, $wgLang;
1016
1017 $printurl = $wgRequest->escapeAppendQuery( 'printable=yes' );
1018
1019 $s[] = "<a href=\"$printurl\" rel=\"alternate\">" . wfMsg( 'printableversion' ) . '</a>';
1020 if( $wgOut->isSyndicated() ) {
1021 foreach( $wgFeedClasses as $format => $class ) {
1022 $feedurl = $wgRequest->escapeAppendQuery( "feed=$format" );
1023 $s[] = "<a href=\"$feedurl\" rel=\"alternate\" type=\"application/{$format}+xml\" class=\"feedlink\">{$format}</a>";
1024 }
1025 }
1026 return $wgLang->pipeList( $s );
1027 }
1028
1029 function pageTitle() {
1030 global $wgOut;
1031 $s = '<h1 class="pagetitle">' . $wgOut->getPageTitle() . '</h1>';
1032 return $s;
1033 }
1034
1035 function pageSubtitle() {
1036 global $wgOut;
1037
1038 $sub = $wgOut->getSubtitle();
1039 if ( '' == $sub ) {
1040 global $wgExtraSubtitle;
1041 $sub = wfMsgExt( 'tagline', 'parsemag' ) . $wgExtraSubtitle;
1042 }
1043 $subpages = $this->subPageSubtitle();
1044 $sub .= !empty($subpages)?"</p><p class='subpages'>$subpages":'';
1045 $s = "<p class='subtitle'>{$sub}</p>\n";
1046 return $s;
1047 }
1048
1049 function subPageSubtitle() {
1050 $subpages = '';
1051 if(!wfRunHooks('SkinSubPageSubtitle', array(&$subpages)))
1052 return $subpages;
1053
1054 global $wgOut, $wgTitle;
1055 if($wgOut->isArticle() && MWNamespace::hasSubpages( $wgTitle->getNamespace() )) {
1056 $ptext=$wgTitle->getPrefixedText();
1057 if(preg_match('/\//',$ptext)) {
1058 $links = explode('/',$ptext);
1059 array_pop( $links );
1060 $c = 0;
1061 $growinglink = '';
1062 $display = '';
1063 foreach($links as $link) {
1064 $growinglink .= $link;
1065 $display .= $link;
1066 $linkObj = Title::newFromText( $growinglink );
1067 if( is_object( $linkObj ) && $linkObj->exists() ){
1068 $getlink = $this->makeKnownLinkObj( $linkObj, htmlspecialchars( $display ) );
1069 $c++;
1070 if ($c>1) {
1071 $subpages .= wfMsgExt( 'pipe-separator' , 'escapenoentities' );
1072 } else {
1073 $subpages .= '&lt; ';
1074 }
1075 $subpages .= $getlink;
1076 $display = '';
1077 } else {
1078 $display .= '/';
1079 }
1080 $growinglink .= '/';
1081 }
1082 }
1083 }
1084 return $subpages;
1085 }
1086
1087 /**
1088 * Returns true if the IP should be shown in the header
1089 */
1090 function showIPinHeader() {
1091 global $wgShowIPinHeader;
1092 return $wgShowIPinHeader && session_id() != '';
1093 }
1094
1095 function nameAndLogin() {
1096 global $wgUser, $wgTitle, $wgLang, $wgContLang;
1097
1098 $logoutPage = $wgContLang->specialPage( 'Userlogout' );
1099
1100 $ret = '';
1101 if ( $wgUser->isAnon() ) {
1102 if( $this->showIPinHeader() ) {
1103 $name = wfGetIP();
1104
1105 $talkLink = $this->link( $wgUser->getTalkPage(),
1106 $wgLang->getNsText( NS_TALK ) );
1107
1108 $ret .= "$name ($talkLink)";
1109 } else {
1110 $ret .= wfMsg( 'notloggedin' );
1111 }
1112
1113 $returnTo = $wgTitle->getPrefixedDBkey();
1114 $query = array();
1115 if ( $logoutPage != $returnTo ) {
1116 $query['returnto'] = $returnTo;
1117 }
1118
1119 $loginlink = $wgUser->isAllowed( 'createaccount' )
1120 ? 'nav-login-createaccount'
1121 : 'login';
1122 $ret .= "\n<br />" . $this->link(
1123 SpecialPage::getTitleFor( 'Userlogin' ),
1124 wfMsg( $loginlink ), array(), $query
1125 );
1126 } else {
1127 $returnTo = $wgTitle->getPrefixedDBkey();
1128 $talkLink = $this->link( $wgUser->getTalkPage(),
1129 $wgLang->getNsText( NS_TALK ) );
1130
1131 $ret .= $this->link( $wgUser->getUserPage(),
1132 htmlspecialchars( $wgUser->getName() ) );
1133 $ret .= " ($talkLink)<br />";
1134 $ret .= $wgLang->pipeList( array(
1135 $this->link(
1136 SpecialPage::getTitleFor( 'Userlogout' ), wfMsg( 'logout' ),
1137 array(), array( 'returnto' => $returnTo )
1138 ),
1139 $this->specialLink( 'preferences' ),
1140 ) );
1141 }
1142 $ret = $wgLang->pipeList( array(
1143 $ret,
1144 $this->link(
1145 Title::newFromText( wfMsgForContent( 'helppage' ) ),
1146 wfMsg( 'help' )
1147 ),
1148 ) );
1149
1150 return $ret;
1151 }
1152
1153 function getSearchLink() {
1154 $searchPage = SpecialPage::getTitleFor( 'Search' );
1155 return $searchPage->getLocalURL();
1156 }
1157
1158 function escapeSearchLink() {
1159 return htmlspecialchars( $this->getSearchLink() );
1160 }
1161
1162 function searchForm() {
1163 global $wgRequest, $wgUseTwoButtonsSearchForm;
1164 $search = $wgRequest->getText( 'search' );
1165
1166 $s = '<form id="searchform'.$this->searchboxes.'" name="search" class="inline" method="post" action="'
1167 . $this->escapeSearchLink() . "\">\n"
1168 . '<input type="text" id="searchInput'.$this->searchboxes.'" name="search" size="19" value="'
1169 . htmlspecialchars(substr($search,0,256)) . "\" />\n"
1170 . '<input type="submit" name="go" value="' . wfMsg ('searcharticle') . '" />';
1171
1172 if ($wgUseTwoButtonsSearchForm)
1173 $s .= '&nbsp;<input type="submit" name="fulltext" value="' . wfMsg ('searchbutton') . "\" />\n";
1174 else
1175 $s .= ' <a href="' . $this->escapeSearchLink() . '" rel="search">' . wfMsg ('powersearch-legend') . "</a>\n";
1176
1177 $s .= '</form>';
1178
1179 // Ensure unique id's for search boxes made after the first
1180 $this->searchboxes = $this->searchboxes == '' ? 2 : $this->searchboxes + 1;
1181
1182 return $s;
1183 }
1184
1185 function topLinks() {
1186 global $wgOut;
1187
1188 $s = array(
1189 $this->mainPageLink(),
1190 $this->specialLink( 'recentchanges' )
1191 );
1192
1193 if ( $wgOut->isArticleRelated() ) {
1194 $s[] = $this->editThisPage();
1195 $s[] = $this->historyLink();
1196 }
1197 # Many people don't like this dropdown box
1198 #$s[] = $this->specialPagesList();
1199
1200 if( $this->variantLinks() ) {
1201 $s = $this->variantLinks();
1202 }
1203
1204 if( $this->extensionTabLinks() ) {
1205 $s[] = $this->extensionTabLinks();
1206 }
1207
1208 // FIXME: Is using Language::pipeList impossible here? Do not quite understand the use of the newline
1209 return implode( $s, wfMsgExt( 'pipe-separator' , 'escapenoentities' ) . "\n" );
1210 }
1211
1212 /**
1213 * Compatibility for extensions adding functionality through tabs.
1214 * Eventually these old skins should be replaced with SkinTemplate-based
1215 * versions, sigh...
1216 * @return string
1217 */
1218 function extensionTabLinks() {
1219 $tabs = array();
1220 $out = '';
1221 $s = array();
1222 wfRunHooks( 'SkinTemplateTabs', array( $this, &$tabs ) );
1223 foreach( $tabs as $tab ) {
1224 $s[] = Xml::element( 'a',
1225 array( 'href' => $tab['href'] ),
1226 $tab['text'] );
1227 }
1228
1229 if( count( $s ) ) {
1230 global $wgLang;
1231
1232 $out = wfMsgExt( 'pipe-separator' , 'escapenoentities' );
1233 $out .= $wgLang->pipeList( $s );
1234 }
1235
1236 return $out;
1237 }
1238
1239 /**
1240 * Language/charset variant links for classic-style skins
1241 * @return string
1242 */
1243 function variantLinks() {
1244 $s = '';
1245 /* show links to different language variants */
1246 global $wgDisableLangConversion, $wgLang, $wgContLang, $wgTitle;
1247 $variants = $wgContLang->getVariants();
1248 if( !$wgDisableLangConversion && sizeof( $variants ) > 1 ) {
1249 foreach( $variants as $code ) {
1250 $varname = $wgContLang->getVariantname( $code );
1251 if( $varname == 'disable' )
1252 continue;
1253 $s = $wgLang->pipeList( array( $s, '<a href="' . $wgTitle->escapeLocalUrl( 'variant=' . $code ) . '">' . htmlspecialchars( $varname ) . '</a>' ) );
1254 }
1255 }
1256 return $s;
1257 }
1258
1259 function bottomLinks() {
1260 global $wgOut, $wgUser, $wgTitle, $wgUseTrackbacks;
1261 $sep = wfMsgExt( 'pipe-separator' , 'escapenoentities' ) . "\n";
1262
1263 $s = '';
1264 if ( $wgOut->isArticleRelated() ) {
1265 $element[] = '<strong>' . $this->editThisPage() . '</strong>';
1266 if ( $wgUser->isLoggedIn() ) {
1267 $element[] = $this->watchThisPage();
1268 }
1269 $element[] = $this->talkLink();
1270 $element[] = $this->historyLink();
1271 $element[] = $this->whatLinksHere();
1272 $element[] = $this->watchPageLinksLink();
1273
1274 if ($wgUseTrackbacks)
1275 $element[] = $this->trackbackLink();
1276
1277 if ( $wgTitle->getNamespace() == NS_USER
1278 || $wgTitle->getNamespace() == NS_USER_TALK )
1279
1280 {
1281 $id=User::idFromName($wgTitle->getText());
1282 $ip=User::isIP($wgTitle->getText());
1283
1284 if($id || $ip) { # both anons and non-anons have contri list
1285 $element[] = $this->userContribsLink();
1286 }
1287 if( $this->showEmailUser( $id ) ) {
1288 $element[] = $this->emailUserLink();
1289 }
1290 }
1291
1292 $s = implode( $element, $sep );
1293
1294 if ( $wgTitle->getArticleId() ) {
1295 $s .= "\n<br />";
1296 if($wgUser->isAllowed('delete')) { $s .= $this->deleteThisPage(); }
1297 if($wgUser->isAllowed('protect')) { $s .= $sep . $this->protectThisPage(); }
1298 if($wgUser->isAllowed('move')) { $s .= $sep . $this->moveThisPage(); }
1299 }
1300 $s .= "<br />\n" . $this->otherLanguages();
1301 }
1302
1303 return $s;
1304 }
1305
1306 function pageStats() {
1307 global $wgOut, $wgLang, $wgArticle, $wgRequest, $wgUser;
1308 global $wgDisableCounters, $wgMaxCredits, $wgShowCreditsIfMax, $wgTitle, $wgPageShowWatchingUsers;
1309
1310 $oldid = $wgRequest->getVal( 'oldid' );
1311 $diff = $wgRequest->getVal( 'diff' );
1312 if ( ! $wgOut->isArticle() ) { return ''; }
1313 if( !$wgArticle instanceOf Article ) { return ''; }
1314 if ( isset( $oldid ) || isset( $diff ) ) { return ''; }
1315 if ( 0 == $wgArticle->getID() ) { return ''; }
1316
1317 $s = '';
1318 if ( !$wgDisableCounters ) {
1319 $count = $wgLang->formatNum( $wgArticle->getCount() );
1320 if ( $count ) {
1321 $s = wfMsgExt( 'viewcount', array( 'parseinline' ), $count );
1322 }
1323 }
1324
1325 if( $wgMaxCredits != 0 ){
1326 $s .= ' ' . Credits::getCredits( $wgArticle, $wgMaxCredits, $wgShowCreditsIfMax );
1327 } else {
1328 $s .= $this->lastModified();
1329 }
1330
1331 if( $wgPageShowWatchingUsers && $wgUser->getOption( 'shownumberswatching' ) ) {
1332 $dbr = wfGetDB( DB_SLAVE );
1333 $watchlist = $dbr->tableName( 'watchlist' );
1334 $sql = "SELECT COUNT(*) AS n FROM $watchlist
1335 WHERE wl_title='" . $dbr->strencode($wgTitle->getDBkey()) .
1336 "' AND wl_namespace=" . $wgTitle->getNamespace() ;
1337 $res = $dbr->query( $sql, 'Skin::pageStats');
1338 $x = $dbr->fetchObject( $res );
1339
1340 $s .= ' ' . wfMsgExt( 'number_of_watching_users_pageview',
1341 array( 'parseinline' ), $wgLang->formatNum($x->n)
1342 );
1343 }
1344
1345 return $s . ' ' . $this->getCopyright();
1346 }
1347
1348 function getCopyright( $type = 'detect' ) {
1349 global $wgRightsPage, $wgRightsUrl, $wgRightsText, $wgRequest, $wgArticle;
1350
1351 if ( $type == 'detect' ) {
1352 $diff = $wgRequest->getVal( 'diff' );
1353 $isCur = $wgArticle && $wgArticle->isCurrent();
1354 if ( is_null( $diff ) && !$isCur && wfMsgForContent( 'history_copyright' ) !== '-' ) {
1355 $type = 'history';
1356 } else {
1357 $type = 'normal';
1358 }
1359 }
1360
1361 if ( $type == 'history' ) {
1362 $msg = 'history_copyright';
1363 } else {
1364 $msg = 'copyright';
1365 }
1366
1367 $out = '';
1368 if( $wgRightsPage ) {
1369 $link = $this->makeKnownLink( $wgRightsPage, $wgRightsText );
1370 } elseif( $wgRightsUrl ) {
1371 $link = $this->makeExternalLink( $wgRightsUrl, $wgRightsText );
1372 } elseif( $wgRightsText ) {
1373 $link = $wgRightsText;
1374 } else {
1375 # Give up now
1376 return $out;
1377 }
1378 $out .= wfMsgForContent( $msg, $link );
1379 return $out;
1380 }
1381
1382 function getCopyrightIcon() {
1383 global $wgRightsUrl, $wgRightsText, $wgRightsIcon, $wgCopyrightIcon;
1384 $out = '';
1385 if ( isset( $wgCopyrightIcon ) && $wgCopyrightIcon ) {
1386 $out = $wgCopyrightIcon;
1387 } else if ( $wgRightsIcon ) {
1388 $icon = htmlspecialchars( $wgRightsIcon );
1389 if ( $wgRightsUrl ) {
1390 $url = htmlspecialchars( $wgRightsUrl );
1391 $out .= '<a href="'.$url.'">';
1392 }
1393 $text = htmlspecialchars( $wgRightsText );
1394 $out .= "<img src=\"$icon\" alt='$text' />";
1395 if ( $wgRightsUrl ) {
1396 $out .= '</a>';
1397 }
1398 }
1399 return $out;
1400 }
1401
1402 function getPoweredBy() {
1403 global $wgStylePath;
1404 $url = htmlspecialchars( "$wgStylePath/common/images/poweredby_mediawiki_88x31.png" );
1405 $img = '<a href="http://www.mediawiki.org/"><img src="'.$url.'" alt="Powered by MediaWiki" /></a>';
1406 return $img;
1407 }
1408
1409 function lastModified() {
1410 global $wgLang, $wgArticle;
1411 if( $this->mRevisionId ) {
1412 $timestamp = Revision::getTimestampFromId( $wgArticle->getTitle(), $this->mRevisionId );
1413 } else {
1414 $timestamp = $wgArticle->getTimestamp();
1415 }
1416 if ( $timestamp ) {
1417 $d = $wgLang->date( $timestamp, true );
1418 $t = $wgLang->time( $timestamp, true );
1419 $s = ' ' . wfMsg( 'lastmodifiedat', $d, $t );
1420 } else {
1421 $s = '';
1422 }
1423 if ( wfGetLB()->getLaggedSlaveMode() ) {
1424 $s .= ' <strong>' . wfMsg( 'laggedslavemode' ) . '</strong>';
1425 }
1426 return $s;
1427 }
1428
1429 function logoText( $align = '' ) {
1430 if ( '' != $align ) { $a = " align='{$align}'"; }
1431 else { $a = ''; }
1432
1433 $mp = wfMsg( 'mainpage' );
1434 $mptitle = Title::newMainPage();
1435 $url = ( is_object($mptitle) ? $mptitle->escapeLocalURL() : '' );
1436
1437 $logourl = $this->getLogo();
1438 $s = "<a href='{$url}'><img{$a} src='{$logourl}' alt='[{$mp}]' /></a>";
1439 return $s;
1440 }
1441
1442 /**
1443 * show a drop-down box of special pages
1444 */
1445 function specialPagesList() {
1446 global $wgUser, $wgContLang, $wgServer, $wgRedirectScript;
1447 $pages = array_merge( SpecialPage::getRegularPages(), SpecialPage::getRestrictedPages() );
1448 foreach ( $pages as $name => $page ) {
1449 $pages[$name] = $page->getDescription();
1450 }
1451
1452 $go = wfMsg( 'go' );
1453 $sp = wfMsg( 'specialpages' );
1454 $spp = $wgContLang->specialPage( 'Specialpages' );
1455
1456 $s = '<form id="specialpages" method="get" ' .
1457 'action="' . htmlspecialchars( "{$wgServer}{$wgRedirectScript}" ) . "\">\n";
1458 $s .= "<select name=\"wpDropdown\">\n";
1459 $s .= "<option value=\"{$spp}\">{$sp}</option>\n";
1460
1461
1462 foreach ( $pages as $name => $desc ) {
1463 $p = $wgContLang->specialPage( $name );
1464 $s .= "<option value=\"{$p}\">{$desc}</option>\n";
1465 }
1466 $s .= "</select>\n";
1467 $s .= "<input type='submit' value=\"{$go}\" name='redirect' />\n";
1468 $s .= "</form>\n";
1469 return $s;
1470 }
1471
1472 function mainPageLink() {
1473 $s = $this->makeKnownLinkObj( Title::newMainPage(), wfMsg( 'mainpage' ) );
1474 return $s;
1475 }
1476
1477 function copyrightLink() {
1478 $s = $this->makeKnownLink( wfMsgForContent( 'copyrightpage' ),
1479 wfMsg( 'copyrightpagename' ) );
1480 return $s;
1481 }
1482
1483 private function footerLink ( $desc, $page ) {
1484 // if the link description has been set to "-" in the default language,
1485 if ( wfMsgForContent( $desc ) == '-') {
1486 // then it is disabled, for all languages.
1487 return '';
1488 } else {
1489 // Otherwise, we display the link for the user, described in their
1490 // language (which may or may not be the same as the default language),
1491 // but we make the link target be the one site-wide page.
1492 return $this->makeKnownLink( wfMsgForContent( $page ),
1493 wfMsgExt( $desc, array( 'parsemag', 'escapenoentities' ) ) );
1494 }
1495 }
1496
1497 function privacyLink() {
1498 return $this->footerLink( 'privacy', 'privacypage' );
1499 }
1500
1501 function aboutLink() {
1502 return $this->footerLink( 'aboutsite', 'aboutpage' );
1503 }
1504
1505 function disclaimerLink() {
1506 return $this->footerLink( 'disclaimers', 'disclaimerpage' );
1507 }
1508
1509 function editThisPage() {
1510 global $wgOut, $wgTitle;
1511
1512 if ( !$wgOut->isArticleRelated() ) {
1513 $s = wfMsg( 'protectedpage' );
1514 } else {
1515 if( $wgTitle->quickUserCan( 'edit' ) && $wgTitle->exists() ) {
1516 $t = wfMsg( 'editthispage' );
1517 } elseif( $wgTitle->quickUserCan( 'create' ) && !$wgTitle->exists() ) {
1518 $t = wfMsg( 'create-this-page' );
1519 } else {
1520 $t = wfMsg( 'viewsource' );
1521 }
1522
1523 $s = $this->makeKnownLinkObj( $wgTitle, $t, $this->editUrlOptions() );
1524 }
1525 return $s;
1526 }
1527
1528 /**
1529 * Return URL options for the 'edit page' link.
1530 * This may include an 'oldid' specifier, if the current page view is such.
1531 *
1532 * @return string
1533 * @private
1534 */
1535 function editUrlOptions() {
1536 global $wgArticle;
1537
1538 if( $this->mRevisionId && ! $wgArticle->isCurrent() ) {
1539 return "action=edit&oldid=" . intval( $this->mRevisionId );
1540 } else {
1541 return "action=edit";
1542 }
1543 }
1544
1545 function deleteThisPage() {
1546 global $wgUser, $wgTitle, $wgRequest;
1547
1548 $diff = $wgRequest->getVal( 'diff' );
1549 if ( $wgTitle->getArticleId() && ( ! $diff ) && $wgUser->isAllowed('delete') ) {
1550 $t = wfMsg( 'deletethispage' );
1551
1552 $s = $this->makeKnownLinkObj( $wgTitle, $t, 'action=delete' );
1553 } else {
1554 $s = '';
1555 }
1556 return $s;
1557 }
1558
1559 function protectThisPage() {
1560 global $wgUser, $wgTitle, $wgRequest;
1561
1562 $diff = $wgRequest->getVal( 'diff' );
1563 if ( $wgTitle->getArticleId() && ( ! $diff ) && $wgUser->isAllowed('protect') ) {
1564 if ( $wgTitle->isProtected() ) {
1565 $t = wfMsg( 'unprotectthispage' );
1566 $q = 'action=unprotect';
1567 } else {
1568 $t = wfMsg( 'protectthispage' );
1569 $q = 'action=protect';
1570 }
1571 $s = $this->makeKnownLinkObj( $wgTitle, $t, $q );
1572 } else {
1573 $s = '';
1574 }
1575 return $s;
1576 }
1577
1578 function watchThisPage() {
1579 global $wgOut, $wgTitle;
1580 ++$this->mWatchLinkNum;
1581
1582 if ( $wgOut->isArticleRelated() ) {
1583 if ( $wgTitle->userIsWatching() ) {
1584 $t = wfMsg( 'unwatchthispage' );
1585 $q = 'action=unwatch';
1586 $id = "mw-unwatch-link".$this->mWatchLinkNum;
1587 } else {
1588 $t = wfMsg( 'watchthispage' );
1589 $q = 'action=watch';
1590 $id = 'mw-watch-link'.$this->mWatchLinkNum;
1591 }
1592 $s = $this->makeKnownLinkObj( $wgTitle, $t, $q, '', '', " id=\"$id\"" );
1593 } else {
1594 $s = wfMsg( 'notanarticle' );
1595 }
1596 return $s;
1597 }
1598
1599 function moveThisPage() {
1600 global $wgTitle;
1601
1602 if ( $wgTitle->quickUserCan( 'move' ) ) {
1603 return $this->makeKnownLinkObj( SpecialPage::getTitleFor( 'Movepage' ),
1604 wfMsg( 'movethispage' ), 'target=' . $wgTitle->getPrefixedURL() );
1605 } else {
1606 // no message if page is protected - would be redundant
1607 return '';
1608 }
1609 }
1610
1611 function historyLink() {
1612 global $wgTitle;
1613
1614 return $this->link( $wgTitle, wfMsg( 'history' ),
1615 array( 'rel' => 'archives' ), array( 'action' => 'history' ) );
1616 }
1617
1618 function whatLinksHere() {
1619 global $wgTitle;
1620
1621 return $this->makeKnownLinkObj(
1622 SpecialPage::getTitleFor( 'Whatlinkshere', $wgTitle->getPrefixedDBkey() ),
1623 wfMsg( 'whatlinkshere' ) );
1624 }
1625
1626 function userContribsLink() {
1627 global $wgTitle;
1628
1629 return $this->makeKnownLinkObj(
1630 SpecialPage::getTitleFor( 'Contributions', $wgTitle->getDBkey() ),
1631 wfMsg( 'contributions' ) );
1632 }
1633
1634 function showEmailUser( $id ) {
1635 global $wgUser;
1636 $targetUser = User::newFromId( $id );
1637 return $wgUser->canSendEmail() && # the sending user must have a confirmed email address
1638 $targetUser->canReceiveEmail(); # the target user must have a confirmed email address and allow emails from users
1639 }
1640
1641 function emailUserLink() {
1642 global $wgTitle;
1643
1644 return $this->makeKnownLinkObj(
1645 SpecialPage::getTitleFor( 'Emailuser', $wgTitle->getDBkey() ),
1646 wfMsg( 'emailuser' ) );
1647 }
1648
1649 function watchPageLinksLink() {
1650 global $wgOut, $wgTitle;
1651
1652 if ( ! $wgOut->isArticleRelated() ) {
1653 return '(' . wfMsg( 'notanarticle' ) . ')';
1654 } else {
1655 return $this->makeKnownLinkObj(
1656 SpecialPage::getTitleFor( 'Recentchangeslinked', $wgTitle->getPrefixedDBkey() ),
1657 wfMsg( 'recentchangeslinked' ) );
1658 }
1659 }
1660
1661 function trackbackLink() {
1662 global $wgTitle;
1663
1664 return "<a href=\"" . $wgTitle->trackbackURL() . "\">"
1665 . wfMsg('trackbacklink') . "</a>";
1666 }
1667
1668 function otherLanguages() {
1669 global $wgOut, $wgContLang, $wgHideInterlanguageLinks;
1670
1671 if ( $wgHideInterlanguageLinks ) {
1672 return '';
1673 }
1674
1675 $a = $wgOut->getLanguageLinks();
1676 if ( 0 == count( $a ) ) {
1677 return '';
1678 }
1679
1680 $s = wfMsg( 'otherlanguages' ) . wfMsg( 'colon-separator' );
1681 $first = true;
1682 if($wgContLang->isRTL()) $s .= '<span dir="LTR">';
1683 foreach( $a as $l ) {
1684 if ( ! $first ) { $s .= wfMsgExt( 'pipe-separator' , 'escapenoentities' ); }
1685 $first = false;
1686
1687 $nt = Title::newFromText( $l );
1688 $url = $nt->escapeFullURL();
1689 $text = $wgContLang->getLanguageName( $nt->getInterwiki() );
1690
1691 if ( '' == $text ) { $text = $l; }
1692 $style = $this->getExternalLinkAttributes( $l, $text );
1693 $s .= "<a href=\"{$url}\"{$style}>{$text}</a>";
1694 }
1695 if($wgContLang->isRTL()) $s .= '</span>';
1696 return $s;
1697 }
1698
1699 function talkLink() {
1700 global $wgTitle;
1701
1702 if ( NS_SPECIAL == $wgTitle->getNamespace() ) {
1703 # No discussion links for special pages
1704 return '';
1705 }
1706
1707 $linkOptions = array();
1708
1709 if( $wgTitle->isTalkPage() ) {
1710 $link = $wgTitle->getSubjectPage();
1711 switch( $link->getNamespace() ) {
1712 case NS_MAIN:
1713 $text = wfMsg( 'articlepage' );
1714 break;
1715 case NS_USER:
1716 $text = wfMsg( 'userpage' );
1717 break;
1718 case NS_PROJECT:
1719 $text = wfMsg( 'projectpage' );
1720 break;
1721 case NS_FILE:
1722 $text = wfMsg( 'imagepage' );
1723 # Make link known if image exists, even if the desc. page doesn't.
1724 if( wfFindFile( $link ) )
1725 $linkOptions[] = 'known';
1726 break;
1727 case NS_MEDIAWIKI:
1728 $text = wfMsg( 'mediawikipage' );
1729 break;
1730 case NS_TEMPLATE:
1731 $text = wfMsg( 'templatepage' );
1732 break;
1733 case NS_HELP:
1734 $text = wfMsg( 'viewhelppage' );
1735 break;
1736 case NS_CATEGORY:
1737 $text = wfMsg( 'categorypage' );
1738 break;
1739 default:
1740 $text = wfMsg( 'articlepage' );
1741 }
1742 } else {
1743 $link = $wgTitle->getTalkPage();
1744 $text = wfMsg( 'talkpage' );
1745 }
1746
1747 $s = $this->link( $link, $text, array(), array(), $linkOptions );
1748
1749 return $s;
1750 }
1751
1752 function commentLink() {
1753 global $wgTitle, $wgOut;
1754
1755 if ( $wgTitle->getNamespace() == NS_SPECIAL ) {
1756 return '';
1757 }
1758
1759 # __NEWSECTIONLINK___ changes behaviour here
1760 # If it's present, the link points to this page, otherwise
1761 # it points to the talk page
1762 if( $wgTitle->isTalkPage() ) {
1763 $title = $wgTitle;
1764 } elseif( $wgOut->showNewSectionLink() ) {
1765 $title = $wgTitle;
1766 } else {
1767 $title = $wgTitle->getTalkPage();
1768 }
1769
1770 return $this->makeKnownLinkObj( $title, wfMsg( 'postcomment' ), 'action=edit&section=new' );
1771 }
1772
1773 /* these are used extensively in SkinTemplate, but also some other places */
1774 static function makeMainPageUrl( $urlaction = '' ) {
1775 $title = Title::newMainPage();
1776 self::checkTitle( $title, '' );
1777 return $title->getLocalURL( $urlaction );
1778 }
1779
1780 static function makeSpecialUrl( $name, $urlaction = '' ) {
1781 $title = SpecialPage::getTitleFor( $name );
1782 return $title->getLocalURL( $urlaction );
1783 }
1784
1785 static function makeSpecialUrlSubpage( $name, $subpage, $urlaction = '' ) {
1786 $title = SpecialPage::getSafeTitleFor( $name, $subpage );
1787 return $title->getLocalURL( $urlaction );
1788 }
1789
1790 static function makeI18nUrl( $name, $urlaction = '' ) {
1791 $title = Title::newFromText( wfMsgForContent( $name ) );
1792 self::checkTitle( $title, $name );
1793 return $title->getLocalURL( $urlaction );
1794 }
1795
1796 static function makeUrl( $name, $urlaction = '' ) {
1797 $title = Title::newFromText( $name );
1798 self::checkTitle( $title, $name );
1799 return $title->getLocalURL( $urlaction );
1800 }
1801
1802 # If url string starts with http, consider as external URL, else
1803 # internal
1804 static function makeInternalOrExternalUrl( $name ) {
1805 if ( preg_match( '/^(?:' . wfUrlProtocols() . ')/', $name ) ) {
1806 return $name;
1807 } else {
1808 return self::makeUrl( $name );
1809 }
1810 }
1811
1812 # this can be passed the NS number as defined in Language.php
1813 static function makeNSUrl( $name, $urlaction = '', $namespace = NS_MAIN ) {
1814 $title = Title::makeTitleSafe( $namespace, $name );
1815 self::checkTitle( $title, $name );
1816 return $title->getLocalURL( $urlaction );
1817 }
1818
1819 /* these return an array with the 'href' and boolean 'exists' */
1820 static function makeUrlDetails( $name, $urlaction = '' ) {
1821 $title = Title::newFromText( $name );
1822 self::checkTitle( $title, $name );
1823 return array(
1824 'href' => $title->getLocalURL( $urlaction ),
1825 'exists' => $title->getArticleID() != 0 ? true : false
1826 );
1827 }
1828
1829 /**
1830 * Make URL details where the article exists (or at least it's convenient to think so)
1831 */
1832 static function makeKnownUrlDetails( $name, $urlaction = '' ) {
1833 $title = Title::newFromText( $name );
1834 self::checkTitle( $title, $name );
1835 return array(
1836 'href' => $title->getLocalURL( $urlaction ),
1837 'exists' => true
1838 );
1839 }
1840
1841 # make sure we have some title to operate on
1842 static function checkTitle( &$title, $name ) {
1843 if( !is_object( $title ) ) {
1844 $title = Title::newFromText( $name );
1845 if( !is_object( $title ) ) {
1846 $title = Title::newFromText( '--error: link target missing--' );
1847 }
1848 }
1849 }
1850
1851 /**
1852 * Build an array that represents the sidebar(s), the navigation bar among them
1853 *
1854 * @return array
1855 */
1856 function buildSidebar() {
1857 global $parserMemc, $wgEnableSidebarCache, $wgSidebarCacheExpiry;
1858 global $wgLang;
1859 wfProfileIn( __METHOD__ );
1860
1861 $key = wfMemcKey( 'sidebar', $wgLang->getCode() );
1862
1863 if ( $wgEnableSidebarCache ) {
1864 $cachedsidebar = $parserMemc->get( $key );
1865 if ( $cachedsidebar ) {
1866 wfProfileOut( __METHOD__ );
1867 return $cachedsidebar;
1868 }
1869 }
1870
1871 $bar = array();
1872 $lines = explode( "\n", wfMsgForContent( 'sidebar' ) );
1873 $heading = '';
1874 foreach ($lines as $line) {
1875 if (strpos($line, '*') !== 0)
1876 continue;
1877 if (strpos($line, '**') !== 0) {
1878 $line = trim($line, '* ');
1879 $heading = $line;
1880 if( !array_key_exists($heading, $bar) ) $bar[$heading] = array();
1881 } else {
1882 if (strpos($line, '|') !== false) { // sanity check
1883 $line = array_map('trim', explode( '|' , trim($line, '* '), 2 ) );
1884 $link = wfMsgForContent( $line[0] );
1885 if ($link == '-')
1886 continue;
1887
1888 $text = wfMsgExt($line[1], 'parsemag');
1889 if (wfEmptyMsg($line[1], $text))
1890 $text = $line[1];
1891 if (wfEmptyMsg($line[0], $link))
1892 $link = $line[0];
1893
1894 if ( preg_match( '/^(?:' . wfUrlProtocols() . ')/', $link ) ) {
1895 $href = $link;
1896 } else {
1897 $title = Title::newFromText( $link );
1898 if ( $title ) {
1899 $title = $title->fixSpecialName();
1900 $href = $title->getLocalURL();
1901 } else {
1902 $href = 'INVALID-TITLE';
1903 }
1904 }
1905
1906 $bar[$heading][] = array(
1907 'text' => $text,
1908 'href' => $href,
1909 'id' => 'n-' . strtr($line[1], ' ', '-'),
1910 'active' => false
1911 );
1912 } else { continue; }
1913 }
1914 }
1915 wfRunHooks('SkinBuildSidebar', array($this, &$bar));
1916 if ( $wgEnableSidebarCache ) $parserMemc->set( $key, $bar, $wgSidebarCacheExpiry );
1917 wfProfileOut( __METHOD__ );
1918 return $bar;
1919 }
1920 }