e04f8770e4add9781ef84afcc5f5b8a72e01df6d
[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 * This gets called shortly before the </body> tag.
894 * @return String HTML to be put before </body>
895 */
896 function afterContent() {
897 $printfooter = "<div class=\"printfooter\">\n" . $this->printFooter() . "</div>\n";
898 return $printfooter . $this->doAfterContent();
899 }
900
901 /**
902 * This gets called shortly before the </body> tag.
903 * @return String HTML-wrapped JS code to be put before </body>
904 */
905 function bottomScripts() {
906 global $wgJsMimeType;
907 $bottomScriptText = "\n\t\t<script type=\"$wgJsMimeType\">if (window.runOnloadHook) runOnloadHook();</script>\n";
908 wfRunHooks( 'SkinAfterBottomScripts', array( $this, &$bottomScriptText ) );
909 return $bottomScriptText;
910 }
911
912 /** @return string Retrievied from HTML text */
913 function printSource() {
914 global $wgTitle;
915 $url = htmlspecialchars( $wgTitle->getFullURL() );
916 return wfMsg( 'retrievedfrom', '<a href="'.$url.'">'.$url.'</a>' );
917 }
918
919 function printFooter() {
920 global $wgArticle;
921 // Under certain conditions, $wgArticle might not be an object which would cause a fatal error like this:
922 // Fatal error: Call to a member function getID() on a non-object in ../includes/Skin.php on line 1270
923 // To prevent this, we'll check first if $wgArticle is an object and if that's the case, then we'll load the page stats.
924 $stats = ( is_object( $wgArticle ) ? "<p>" . $this->pageStats() . "</p>\n" : '' );
925 return "<p>" . $this->printSource() .
926 "</p>\n\n" . $stats;
927 }
928
929 /** overloaded by derived classes */
930 function doAfterContent() { return "</div></div>"; }
931
932 function pageTitleLinks() {
933 global $wgOut, $wgTitle, $wgUser, $wgRequest;
934
935 $oldid = $wgRequest->getVal( 'oldid' );
936 $diff = $wgRequest->getVal( 'diff' );
937 $action = $wgRequest->getText( 'action' );
938
939 $s = $this->printableLink();
940 $disclaimer = $this->disclaimerLink(); # may be empty
941 if( $disclaimer ) {
942 $s .= ' | ' . $disclaimer;
943 }
944 $privacy = $this->privacyLink(); # may be empty too
945 if( $privacy ) {
946 $s .= ' | ' . $privacy;
947 }
948
949 if ( $wgOut->isArticleRelated() ) {
950 if ( $wgTitle->getNamespace() == NS_FILE ) {
951 $name = $wgTitle->getDBkey();
952 $image = wfFindFile( $wgTitle );
953 if( $image ) {
954 $link = htmlspecialchars( $image->getURL() );
955 $style = $this->getInternalLinkAttributes( $link, $name );
956 $s .= " | <a href=\"{$link}\"{$style}>{$name}</a>";
957 }
958 }
959 }
960 if ( 'history' == $action || isset( $diff ) || isset( $oldid ) ) {
961 $s .= ' | ' . $this->makeKnownLinkObj( $wgTitle,
962 wfMsg( 'currentrev' ) );
963 }
964
965 if ( $wgUser->getNewtalk() ) {
966 # do not show "You have new messages" text when we are viewing our
967 # own talk page
968 if( !$wgTitle->equals( $wgUser->getTalkPage() ) ) {
969 $tl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), wfMsgHtml( 'newmessageslink' ), 'redirect=no' );
970 $dl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), wfMsgHtml( 'newmessagesdifflink' ), 'diff=cur' );
971 $s.= ' | <strong>'. wfMsg( 'youhavenewmessages', $tl, $dl ) . '</strong>';
972 # disable caching
973 $wgOut->setSquidMaxage(0);
974 $wgOut->enableClientCache(false);
975 }
976 }
977
978 $undelete = $this->getUndeleteLink();
979 if( !empty( $undelete ) ) {
980 $s .= ' | '.$undelete;
981 }
982 return $s;
983 }
984
985 function getUndeleteLink() {
986 global $wgUser, $wgTitle, $wgContLang, $wgLang, $action;
987 if( $wgUser->isAllowed( 'deletedhistory' ) &&
988 (($wgTitle->getArticleId() == 0) || ($action == "history")) &&
989 ($n = $wgTitle->isDeleted() ) )
990 {
991 if ( $wgUser->isAllowed( 'undelete' ) ) {
992 $msg = 'thisisdeleted';
993 } else {
994 $msg = 'viewdeleted';
995 }
996 return wfMsg( $msg,
997 $this->makeKnownLinkObj(
998 SpecialPage::getTitleFor( 'Undelete', $wgTitle->getPrefixedDBkey() ),
999 wfMsgExt( 'restorelink', array( 'parsemag', 'escape' ), $wgLang->formatNum( $n ) ) ) );
1000 }
1001 return '';
1002 }
1003
1004 function printableLink() {
1005 global $wgOut, $wgFeedClasses, $wgRequest;
1006
1007 $printurl = $wgRequest->escapeAppendQuery( 'printable=yes' );
1008
1009 $s = "<a href=\"$printurl\">" . wfMsg( 'printableversion' ) . '</a>';
1010 if( $wgOut->isSyndicated() ) {
1011 foreach( $wgFeedClasses as $format => $class ) {
1012 $feedurl = $wgRequest->escapeAppendQuery( "feed=$format" );
1013 $s .= " | <a href=\"$feedurl\">{$format}</a>";
1014 }
1015 }
1016 return $s;
1017 }
1018
1019 function pageTitle() {
1020 global $wgOut;
1021 $s = '<h1 class="pagetitle">' . htmlspecialchars( $wgOut->getPageTitle() ) . '</h1>';
1022 return $s;
1023 }
1024
1025 function pageSubtitle() {
1026 global $wgOut;
1027
1028 $sub = $wgOut->getSubtitle();
1029 if ( '' == $sub ) {
1030 global $wgExtraSubtitle;
1031 $sub = wfMsgExt( 'tagline', 'parsemag' ) . $wgExtraSubtitle;
1032 }
1033 $subpages = $this->subPageSubtitle();
1034 $sub .= !empty($subpages)?"</p><p class='subpages'>$subpages":'';
1035 $s = "<p class='subtitle'>{$sub}</p>\n";
1036 return $s;
1037 }
1038
1039 function subPageSubtitle() {
1040 $subpages = '';
1041 if(!wfRunHooks('SkinSubPageSubtitle', array(&$subpages)))
1042 return $subpages;
1043
1044 global $wgOut, $wgTitle;
1045 if($wgOut->isArticle() && MWNamespace::hasSubpages( $wgTitle->getNamespace() )) {
1046 $ptext=$wgTitle->getPrefixedText();
1047 if(preg_match('/\//',$ptext)) {
1048 $links = explode('/',$ptext);
1049 array_pop( $links );
1050 $c = 0;
1051 $growinglink = '';
1052 $display = '';
1053 foreach($links as $link) {
1054 $growinglink .= $link;
1055 $display .= $link;
1056 $linkObj = Title::newFromText( $growinglink );
1057 if( is_object( $linkObj ) && $linkObj->exists() ){
1058 $getlink = $this->makeKnownLinkObj( $linkObj, htmlspecialchars( $display ) );
1059 $c++;
1060 if ($c>1) {
1061 $subpages .= ' | ';
1062 } else {
1063 $subpages .= '&lt; ';
1064 }
1065 $subpages .= $getlink;
1066 $display = '';
1067 } else {
1068 $display .= '/';
1069 }
1070 $growinglink .= '/';
1071 }
1072 }
1073 }
1074 return $subpages;
1075 }
1076
1077 /**
1078 * Returns true if the IP should be shown in the header
1079 */
1080 function showIPinHeader() {
1081 global $wgShowIPinHeader;
1082 return $wgShowIPinHeader && session_id() != '';
1083 }
1084
1085 function nameAndLogin() {
1086 global $wgUser, $wgTitle, $wgLang, $wgContLang;
1087
1088 $logoutPage = $wgContLang->specialPage( 'Userlogout' );
1089
1090 $ret = '';
1091 if ( $wgUser->isAnon() ) {
1092 if( $this->showIPinHeader() ) {
1093 $name = wfGetIP();
1094
1095 $talkLink = $this->link( $wgUser->getTalkPage(),
1096 $wgLang->getNsText( NS_TALK ) );
1097
1098 $ret .= "$name ($talkLink)";
1099 } else {
1100 $ret .= wfMsg( 'notloggedin' );
1101 }
1102
1103 $returnTo = $wgTitle->getPrefixedDBkey();
1104 $query = array();
1105 if ( $logoutPage != $returnTo ) {
1106 $query['returnto'] = $returnTo;
1107 }
1108
1109 $loginlink = $wgUser->isAllowed( 'createaccount' )
1110 ? 'nav-login-createaccount'
1111 : 'login';
1112 $ret .= "\n<br />" . $this->link(
1113 SpecialPage::getTitleFor( 'Userlogin' ),
1114 wfMsg( $loginlink ), array(), $query
1115 );
1116 } else {
1117 $returnTo = $wgTitle->getPrefixedDBkey();
1118 $talkLink = $this->link( $wgUser->getTalkPage(),
1119 $wgLang->getNsText( NS_TALK ) );
1120
1121 $ret .= $this->link( $wgUser->getUserPage(),
1122 htmlspecialchars( $wgUser->getName() ) );
1123 $ret .= " ($talkLink)<br />";
1124 $ret .= $this->link(
1125 SpecialPage::getTitleFor( 'Userlogout' ), wfMsg( 'logout' ),
1126 array(), array( 'returnto' => $returnTo )
1127 );
1128 $ret .= ' | ' . $this->specialLink( 'preferences' );
1129 }
1130 $ret .= ' | ' . $this->link(
1131 Title::newFromText( wfMsgForContent( 'helppage' ) ),
1132 wfMsg( 'help' )
1133 );
1134
1135 return $ret;
1136 }
1137
1138 function getSearchLink() {
1139 $searchPage = SpecialPage::getTitleFor( 'Search' );
1140 return $searchPage->getLocalURL();
1141 }
1142
1143 function escapeSearchLink() {
1144 return htmlspecialchars( $this->getSearchLink() );
1145 }
1146
1147 function searchForm() {
1148 global $wgRequest;
1149 $search = $wgRequest->getText( 'search' );
1150
1151 $s = '<form id="searchform'.$this->searchboxes.'" name="search" class="inline" method="post" action="'
1152 . $this->escapeSearchLink() . "\">\n"
1153 . '<input type="text" id="searchInput'.$this->searchboxes.'" name="search" size="19" value="'
1154 . htmlspecialchars(substr($search,0,256)) . "\" />\n"
1155 . '<input type="submit" name="go" value="' . wfMsg ('searcharticle') . '" />&nbsp;'
1156 . '<input type="submit" name="fulltext" value="' . wfMsg ('searchbutton') . "\" />\n</form>";
1157
1158 // Ensure unique id's for search boxes made after the first
1159 $this->searchboxes = $this->searchboxes == '' ? 2 : $this->searchboxes + 1;
1160
1161 return $s;
1162 }
1163
1164 function topLinks() {
1165 global $wgOut;
1166 $sep = " |\n";
1167
1168 $s = $this->mainPageLink();
1169
1170 if ( $wgOut->isArticleRelated() ) {
1171 $s .= $sep . $this->editThisPage() . $sep . $this->historyLink();
1172 }
1173
1174 $s .= $this->variantLinks();
1175
1176 $s .= $this->extensionTabLinks();
1177
1178 return $s;
1179 }
1180
1181 /**
1182 * Compatibility for extensions adding functionality through tabs.
1183 * Eventually these old skins should be replaced with SkinTemplate-based
1184 * versions, sigh...
1185 * @return string
1186 */
1187 function extensionTabLinks() {
1188 $tabs = array();
1189 $s = '';
1190 wfRunHooks( 'SkinTemplateTabs', array( $this, &$tabs ) );
1191 foreach( $tabs as $tab ) {
1192 $s .= ' | ' . Xml::element( 'a',
1193 array( 'href' => $tab['href'] ),
1194 $tab['text'] );
1195 }
1196 return $s;
1197 }
1198
1199 /**
1200 * Language/charset variant links for classic-style skins
1201 * @return string
1202 */
1203 function variantLinks() {
1204 $s = '';
1205 /* show links to different language variants */
1206 global $wgDisableLangConversion, $wgContLang, $wgTitle;
1207 $variants = $wgContLang->getVariants();
1208 if( !$wgDisableLangConversion && sizeof( $variants ) > 1 ) {
1209 foreach( $variants as $code ) {
1210 $varname = $wgContLang->getVariantname( $code );
1211 if( $varname == 'disable' )
1212 continue;
1213 $s .= ' | <a href="' . $wgTitle->escapeLocalUrl( 'variant=' . $code ) . '">' . htmlspecialchars( $varname ) . '</a>';
1214 }
1215 }
1216 return $s;
1217 }
1218
1219 function bottomLinks() {
1220 global $wgOut, $wgUser, $wgTitle, $wgUseTrackbacks;
1221 $sep = " |\n";
1222
1223 $s = '';
1224 if ( $wgOut->isArticleRelated() ) {
1225 $s .= '<strong>' . $this->editThisPage() . '</strong>';
1226 if ( $wgUser->isLoggedIn() ) {
1227 $s .= $sep . $this->watchThisPage();
1228 }
1229 $s .= $sep . $this->talkLink()
1230 . $sep . $this->historyLink()
1231 . $sep . $this->whatLinksHere()
1232 . $sep . $this->watchPageLinksLink();
1233
1234 if ($wgUseTrackbacks)
1235 $s .= $sep . $this->trackbackLink();
1236
1237 if ( $wgTitle->getNamespace() == NS_USER
1238 || $wgTitle->getNamespace() == NS_USER_TALK )
1239
1240 {
1241 $id=User::idFromName($wgTitle->getText());
1242 $ip=User::isIP($wgTitle->getText());
1243
1244 if($id || $ip) { # both anons and non-anons have contri list
1245 $s .= $sep . $this->userContribsLink();
1246 }
1247 if( $this->showEmailUser( $id ) ) {
1248 $s .= $sep . $this->emailUserLink();
1249 }
1250 }
1251 if ( $wgTitle->getArticleId() ) {
1252 $s .= "\n<br />";
1253 if($wgUser->isAllowed('delete')) { $s .= $this->deleteThisPage(); }
1254 if($wgUser->isAllowed('protect')) { $s .= $sep . $this->protectThisPage(); }
1255 if($wgUser->isAllowed('move')) { $s .= $sep . $this->moveThisPage(); }
1256 }
1257 $s .= "<br />\n" . $this->otherLanguages();
1258 }
1259 return $s;
1260 }
1261
1262 function pageStats() {
1263 global $wgOut, $wgLang, $wgArticle, $wgRequest, $wgUser;
1264 global $wgDisableCounters, $wgMaxCredits, $wgShowCreditsIfMax, $wgTitle, $wgPageShowWatchingUsers;
1265
1266 $oldid = $wgRequest->getVal( 'oldid' );
1267 $diff = $wgRequest->getVal( 'diff' );
1268 if ( ! $wgOut->isArticle() ) { return ''; }
1269 if ( isset( $oldid ) || isset( $diff ) ) { return ''; }
1270 if ( 0 == $wgArticle->getID() ) { return ''; }
1271
1272 $s = '';
1273 if ( !$wgDisableCounters ) {
1274 $count = $wgLang->formatNum( $wgArticle->getCount() );
1275 if ( $count ) {
1276 $s = wfMsgExt( 'viewcount', array( 'parseinline' ), $count );
1277 }
1278 }
1279
1280 if( $wgMaxCredits != 0 ){
1281 $s .= ' ' . Credits::getCredits( $wgArticle, $wgMaxCredits, $wgShowCreditsIfMax );
1282 } else {
1283 $s .= $this->lastModified();
1284 }
1285
1286 if( $wgPageShowWatchingUsers && $wgUser->getOption( 'shownumberswatching' ) ) {
1287 $dbr = wfGetDB( DB_SLAVE );
1288 $watchlist = $dbr->tableName( 'watchlist' );
1289 $sql = "SELECT COUNT(*) AS n FROM $watchlist
1290 WHERE wl_title='" . $dbr->strencode($wgTitle->getDBkey()) .
1291 "' AND wl_namespace=" . $wgTitle->getNamespace() ;
1292 $res = $dbr->query( $sql, 'Skin::pageStats');
1293 $x = $dbr->fetchObject( $res );
1294
1295 $s .= ' ' . wfMsgExt( 'number_of_watching_users_pageview',
1296 array( 'parseinline' ), $wgLang->formatNum($x->n)
1297 );
1298 }
1299
1300 return $s . ' ' . $this->getCopyright();
1301 }
1302
1303 function getCopyright( $type = 'detect' ) {
1304 global $wgRightsPage, $wgRightsUrl, $wgRightsText, $wgRequest, $wgArticle;
1305
1306 if ( $type == 'detect' ) {
1307 $diff = $wgRequest->getVal( 'diff' );
1308 $isCur = $wgArticle && $wgArticle->isCurrent();
1309 if ( is_null( $diff ) && !$isCur && wfMsgForContent( 'history_copyright' ) !== '-' ) {
1310 $type = 'history';
1311 } else {
1312 $type = 'normal';
1313 }
1314 }
1315
1316 if ( $type == 'history' ) {
1317 $msg = 'history_copyright';
1318 } else {
1319 $msg = 'copyright';
1320 }
1321
1322 $out = '';
1323 if( $wgRightsPage ) {
1324 $link = $this->makeKnownLink( $wgRightsPage, $wgRightsText );
1325 } elseif( $wgRightsUrl ) {
1326 $link = $this->makeExternalLink( $wgRightsUrl, $wgRightsText );
1327 } elseif( $wgRightsText ) {
1328 $link = $wgRightsText;
1329 } else {
1330 # Give up now
1331 return $out;
1332 }
1333 $out .= wfMsgForContent( $msg, $link );
1334 return $out;
1335 }
1336
1337 function getCopyrightIcon() {
1338 global $wgRightsUrl, $wgRightsText, $wgRightsIcon, $wgCopyrightIcon;
1339 $out = '';
1340 if ( isset( $wgCopyrightIcon ) && $wgCopyrightIcon ) {
1341 $out = $wgCopyrightIcon;
1342 } else if ( $wgRightsIcon ) {
1343 $icon = htmlspecialchars( $wgRightsIcon );
1344 if ( $wgRightsUrl ) {
1345 $url = htmlspecialchars( $wgRightsUrl );
1346 $out .= '<a href="'.$url.'">';
1347 }
1348 $text = htmlspecialchars( $wgRightsText );
1349 $out .= "<img src=\"$icon\" alt='$text' />";
1350 if ( $wgRightsUrl ) {
1351 $out .= '</a>';
1352 }
1353 }
1354 return $out;
1355 }
1356
1357 function getPoweredBy() {
1358 global $wgStylePath;
1359 $url = htmlspecialchars( "$wgStylePath/common/images/poweredby_mediawiki_88x31.png" );
1360 $img = '<a href="http://www.mediawiki.org/"><img src="'.$url.'" alt="Powered by MediaWiki" /></a>';
1361 return $img;
1362 }
1363
1364 function lastModified() {
1365 global $wgLang, $wgArticle;
1366 if( $this->mRevisionId ) {
1367 $timestamp = Revision::getTimestampFromId( $wgArticle->getTitle(), $this->mRevisionId );
1368 } else {
1369 $timestamp = $wgArticle->getTimestamp();
1370 }
1371 if ( $timestamp ) {
1372 $d = $wgLang->date( $timestamp, true );
1373 $t = $wgLang->time( $timestamp, true );
1374 $s = ' ' . wfMsg( 'lastmodifiedat', $d, $t );
1375 } else {
1376 $s = '';
1377 }
1378 if ( wfGetLB()->getLaggedSlaveMode() ) {
1379 $s .= ' <strong>' . wfMsg( 'laggedslavemode' ) . '</strong>';
1380 }
1381 return $s;
1382 }
1383
1384 function logoText( $align = '' ) {
1385 if ( '' != $align ) { $a = " align='{$align}'"; }
1386 else { $a = ''; }
1387
1388 $mp = wfMsg( 'mainpage' );
1389 $mptitle = Title::newMainPage();
1390 $url = ( is_object($mptitle) ? $mptitle->escapeLocalURL() : '' );
1391
1392 $logourl = $this->getLogo();
1393 $s = "<a href='{$url}'><img{$a} src='{$logourl}' alt='[{$mp}]' /></a>";
1394 return $s;
1395 }
1396
1397 /**
1398 * show a drop-down box of special pages
1399 */
1400 function specialPagesList() {
1401 global $wgUser, $wgContLang, $wgServer, $wgRedirectScript;
1402 $pages = array_merge( SpecialPage::getRegularPages(), SpecialPage::getRestrictedPages() );
1403 foreach ( $pages as $name => $page ) {
1404 $pages[$name] = $page->getDescription();
1405 }
1406
1407 $go = wfMsg( 'go' );
1408 $sp = wfMsg( 'specialpages' );
1409 $spp = $wgContLang->specialPage( 'Specialpages' );
1410
1411 $s = '<form id="specialpages" method="get" ' .
1412 'action="' . htmlspecialchars( "{$wgServer}{$wgRedirectScript}" ) . "\">\n";
1413 $s .= "<select name=\"wpDropdown\">\n";
1414 $s .= "<option value=\"{$spp}\">{$sp}</option>\n";
1415
1416
1417 foreach ( $pages as $name => $desc ) {
1418 $p = $wgContLang->specialPage( $name );
1419 $s .= "<option value=\"{$p}\">{$desc}</option>\n";
1420 }
1421 $s .= "</select>\n";
1422 $s .= "<input type='submit' value=\"{$go}\" name='redirect' />\n";
1423 $s .= "</form>\n";
1424 return $s;
1425 }
1426
1427 function mainPageLink() {
1428 $s = $this->makeKnownLinkObj( Title::newMainPage(), wfMsg( 'mainpage' ) );
1429 return $s;
1430 }
1431
1432 function copyrightLink() {
1433 $s = $this->makeKnownLink( wfMsgForContent( 'copyrightpage' ),
1434 wfMsg( 'copyrightpagename' ) );
1435 return $s;
1436 }
1437
1438 private function footerLink ( $desc, $page ) {
1439 // if the link description has been set to "-" in the default language,
1440 if ( wfMsgForContent( $desc ) == '-') {
1441 // then it is disabled, for all languages.
1442 return '';
1443 } else {
1444 // Otherwise, we display the link for the user, described in their
1445 // language (which may or may not be the same as the default language),
1446 // but we make the link target be the one site-wide page.
1447 return $this->makeKnownLink( wfMsgForContent( $page ),
1448 wfMsgExt( $desc, array( 'parsemag', 'escapenoentities' ) ) );
1449 }
1450 }
1451
1452 function privacyLink() {
1453 return $this->footerLink( 'privacy', 'privacypage' );
1454 }
1455
1456 function aboutLink() {
1457 return $this->footerLink( 'aboutsite', 'aboutpage' );
1458 }
1459
1460 function disclaimerLink() {
1461 return $this->footerLink( 'disclaimers', 'disclaimerpage' );
1462 }
1463
1464 function editThisPage() {
1465 global $wgOut, $wgTitle;
1466
1467 if ( !$wgOut->isArticleRelated() ) {
1468 $s = wfMsg( 'protectedpage' );
1469 } else {
1470 if( $wgTitle->quickUserCan( 'edit' ) && $wgTitle->exists() ) {
1471 $t = wfMsg( 'editthispage' );
1472 } elseif( $wgTitle->quickUserCan( 'create' ) && !$wgTitle->exists() ) {
1473 $t = wfMsg( 'create-this-page' );
1474 } else {
1475 $t = wfMsg( 'viewsource' );
1476 }
1477
1478 $s = $this->makeKnownLinkObj( $wgTitle, $t, $this->editUrlOptions() );
1479 }
1480 return $s;
1481 }
1482
1483 /**
1484 * Return URL options for the 'edit page' link.
1485 * This may include an 'oldid' specifier, if the current page view is such.
1486 *
1487 * @return string
1488 * @private
1489 */
1490 function editUrlOptions() {
1491 global $wgArticle;
1492
1493 if( $this->mRevisionId && ! $wgArticle->isCurrent() ) {
1494 return "action=edit&oldid=" . intval( $this->mRevisionId );
1495 } else {
1496 return "action=edit";
1497 }
1498 }
1499
1500 function deleteThisPage() {
1501 global $wgUser, $wgTitle, $wgRequest;
1502
1503 $diff = $wgRequest->getVal( 'diff' );
1504 if ( $wgTitle->getArticleId() && ( ! $diff ) && $wgUser->isAllowed('delete') ) {
1505 $t = wfMsg( 'deletethispage' );
1506
1507 $s = $this->makeKnownLinkObj( $wgTitle, $t, 'action=delete' );
1508 } else {
1509 $s = '';
1510 }
1511 return $s;
1512 }
1513
1514 function protectThisPage() {
1515 global $wgUser, $wgTitle, $wgRequest;
1516
1517 $diff = $wgRequest->getVal( 'diff' );
1518 if ( $wgTitle->getArticleId() && ( ! $diff ) && $wgUser->isAllowed('protect') ) {
1519 if ( $wgTitle->isProtected() ) {
1520 $t = wfMsg( 'unprotectthispage' );
1521 $q = 'action=unprotect';
1522 } else {
1523 $t = wfMsg( 'protectthispage' );
1524 $q = 'action=protect';
1525 }
1526 $s = $this->makeKnownLinkObj( $wgTitle, $t, $q );
1527 } else {
1528 $s = '';
1529 }
1530 return $s;
1531 }
1532
1533 function watchThisPage() {
1534 global $wgOut, $wgTitle;
1535 ++$this->mWatchLinkNum;
1536
1537 if ( $wgOut->isArticleRelated() ) {
1538 if ( $wgTitle->userIsWatching() ) {
1539 $t = wfMsg( 'unwatchthispage' );
1540 $q = 'action=unwatch';
1541 $id = "mw-unwatch-link".$this->mWatchLinkNum;
1542 } else {
1543 $t = wfMsg( 'watchthispage' );
1544 $q = 'action=watch';
1545 $id = 'mw-watch-link'.$this->mWatchLinkNum;
1546 }
1547 $s = $this->makeKnownLinkObj( $wgTitle, $t, $q, '', '', " id=\"$id\"" );
1548 } else {
1549 $s = wfMsg( 'notanarticle' );
1550 }
1551 return $s;
1552 }
1553
1554 function moveThisPage() {
1555 global $wgTitle;
1556
1557 if ( $wgTitle->quickUserCan( 'move' ) ) {
1558 return $this->makeKnownLinkObj( SpecialPage::getTitleFor( 'Movepage' ),
1559 wfMsg( 'movethispage' ), 'target=' . $wgTitle->getPrefixedURL() );
1560 } else {
1561 // no message if page is protected - would be redundant
1562 return '';
1563 }
1564 }
1565
1566 function historyLink() {
1567 global $wgTitle;
1568
1569 return $this->makeKnownLinkObj( $wgTitle,
1570 wfMsg( 'history' ), 'action=history' );
1571 }
1572
1573 function whatLinksHere() {
1574 global $wgTitle;
1575
1576 return $this->makeKnownLinkObj(
1577 SpecialPage::getTitleFor( 'Whatlinkshere', $wgTitle->getPrefixedDBkey() ),
1578 wfMsg( 'whatlinkshere' ) );
1579 }
1580
1581 function userContribsLink() {
1582 global $wgTitle;
1583
1584 return $this->makeKnownLinkObj(
1585 SpecialPage::getTitleFor( 'Contributions', $wgTitle->getDBkey() ),
1586 wfMsg( 'contributions' ) );
1587 }
1588
1589 function showEmailUser( $id ) {
1590 global $wgUser;
1591 $targetUser = User::newFromId( $id );
1592 return $wgUser->canSendEmail() && # the sending user must have a confirmed email address
1593 $targetUser->canReceiveEmail(); # the target user must have a confirmed email address and allow emails from users
1594 }
1595
1596 function emailUserLink() {
1597 global $wgTitle;
1598
1599 return $this->makeKnownLinkObj(
1600 SpecialPage::getTitleFor( 'Emailuser', $wgTitle->getDBkey() ),
1601 wfMsg( 'emailuser' ) );
1602 }
1603
1604 function watchPageLinksLink() {
1605 global $wgOut, $wgTitle;
1606
1607 if ( ! $wgOut->isArticleRelated() ) {
1608 return '(' . wfMsg( 'notanarticle' ) . ')';
1609 } else {
1610 return $this->makeKnownLinkObj(
1611 SpecialPage::getTitleFor( 'Recentchangeslinked', $wgTitle->getPrefixedDBkey() ),
1612 wfMsg( 'recentchangeslinked' ) );
1613 }
1614 }
1615
1616 function trackbackLink() {
1617 global $wgTitle;
1618
1619 return "<a href=\"" . $wgTitle->trackbackURL() . "\">"
1620 . wfMsg('trackbacklink') . "</a>";
1621 }
1622
1623 function otherLanguages() {
1624 global $wgOut, $wgContLang, $wgHideInterlanguageLinks;
1625
1626 if ( $wgHideInterlanguageLinks ) {
1627 return '';
1628 }
1629
1630 $a = $wgOut->getLanguageLinks();
1631 if ( 0 == count( $a ) ) {
1632 return '';
1633 }
1634
1635 $s = wfMsg( 'otherlanguages' ) . ': ';
1636 $first = true;
1637 if($wgContLang->isRTL()) $s .= '<span dir="LTR">';
1638 foreach( $a as $l ) {
1639 if ( ! $first ) { $s .= ' | '; }
1640 $first = false;
1641
1642 $nt = Title::newFromText( $l );
1643 $url = $nt->escapeFullURL();
1644 $text = $wgContLang->getLanguageName( $nt->getInterwiki() );
1645
1646 if ( '' == $text ) { $text = $l; }
1647 $style = $this->getExternalLinkAttributes( $l, $text );
1648 $s .= "<a href=\"{$url}\"{$style}>{$text}</a>";
1649 }
1650 if($wgContLang->isRTL()) $s .= '</span>';
1651 return $s;
1652 }
1653
1654 function bugReportsLink() {
1655 $s = $this->makeKnownLink( wfMsgForContent( 'bugreportspage' ),
1656 wfMsg( 'bugreports' ) );
1657 return $s;
1658 }
1659
1660 function talkLink() {
1661 global $wgTitle;
1662
1663 if ( NS_SPECIAL == $wgTitle->getNamespace() ) {
1664 # No discussion links for special pages
1665 return '';
1666 }
1667
1668 $linkOptions = array();
1669
1670 if( $wgTitle->isTalkPage() ) {
1671 $link = $wgTitle->getSubjectPage();
1672 switch( $link->getNamespace() ) {
1673 case NS_MAIN:
1674 $text = wfMsg( 'articlepage' );
1675 break;
1676 case NS_USER:
1677 $text = wfMsg( 'userpage' );
1678 break;
1679 case NS_PROJECT:
1680 $text = wfMsg( 'projectpage' );
1681 break;
1682 case NS_FILE:
1683 $text = wfMsg( 'imagepage' );
1684 # Make link known if image exists, even if the desc. page doesn't.
1685 if( wfFindFile( $link ) )
1686 $linkOptions[] = 'known';
1687 break;
1688 case NS_MEDIAWIKI:
1689 $text = wfMsg( 'mediawikipage' );
1690 break;
1691 case NS_TEMPLATE:
1692 $text = wfMsg( 'templatepage' );
1693 break;
1694 case NS_HELP:
1695 $text = wfMsg( 'viewhelppage' );
1696 break;
1697 case NS_CATEGORY:
1698 $text = wfMsg( 'categorypage' );
1699 break;
1700 default:
1701 $text = wfMsg( 'articlepage' );
1702 }
1703 } else {
1704 $link = $wgTitle->getTalkPage();
1705 $text = wfMsg( 'talkpage' );
1706 }
1707
1708 $s = $this->link( $link, $text, array(), array(), $linkOptions );
1709
1710 return $s;
1711 }
1712
1713 function commentLink() {
1714 global $wgTitle, $wgOut;
1715
1716 if ( $wgTitle->getNamespace() == NS_SPECIAL ) {
1717 return '';
1718 }
1719
1720 # __NEWSECTIONLINK___ changes behaviour here
1721 # If it's present, the link points to this page, otherwise
1722 # it points to the talk page
1723 if( $wgTitle->isTalkPage() ) {
1724 $title = $wgTitle;
1725 } elseif( $wgOut->showNewSectionLink() ) {
1726 $title = $wgTitle;
1727 } else {
1728 $title = $wgTitle->getTalkPage();
1729 }
1730
1731 return $this->makeKnownLinkObj( $title, wfMsg( 'postcomment' ), 'action=edit&section=new' );
1732 }
1733
1734 /* these are used extensively in SkinTemplate, but also some other places */
1735 static function makeMainPageUrl( $urlaction = '' ) {
1736 $title = Title::newMainPage();
1737 self::checkTitle( $title, '' );
1738 return $title->getLocalURL( $urlaction );
1739 }
1740
1741 static function makeSpecialUrl( $name, $urlaction = '' ) {
1742 $title = SpecialPage::getTitleFor( $name );
1743 return $title->getLocalURL( $urlaction );
1744 }
1745
1746 static function makeSpecialUrlSubpage( $name, $subpage, $urlaction = '' ) {
1747 $title = SpecialPage::getSafeTitleFor( $name, $subpage );
1748 return $title->getLocalURL( $urlaction );
1749 }
1750
1751 static function makeI18nUrl( $name, $urlaction = '' ) {
1752 $title = Title::newFromText( wfMsgForContent( $name ) );
1753 self::checkTitle( $title, $name );
1754 return $title->getLocalURL( $urlaction );
1755 }
1756
1757 static function makeUrl( $name, $urlaction = '' ) {
1758 $title = Title::newFromText( $name );
1759 self::checkTitle( $title, $name );
1760 return $title->getLocalURL( $urlaction );
1761 }
1762
1763 # If url string starts with http, consider as external URL, else
1764 # internal
1765 static function makeInternalOrExternalUrl( $name ) {
1766 if ( preg_match( '/^(?:' . wfUrlProtocols() . ')/', $name ) ) {
1767 return $name;
1768 } else {
1769 return self::makeUrl( $name );
1770 }
1771 }
1772
1773 # this can be passed the NS number as defined in Language.php
1774 static function makeNSUrl( $name, $urlaction = '', $namespace = NS_MAIN ) {
1775 $title = Title::makeTitleSafe( $namespace, $name );
1776 self::checkTitle( $title, $name );
1777 return $title->getLocalURL( $urlaction );
1778 }
1779
1780 /* these return an array with the 'href' and boolean 'exists' */
1781 static function makeUrlDetails( $name, $urlaction = '' ) {
1782 $title = Title::newFromText( $name );
1783 self::checkTitle( $title, $name );
1784 return array(
1785 'href' => $title->getLocalURL( $urlaction ),
1786 'exists' => $title->getArticleID() != 0 ? true : false
1787 );
1788 }
1789
1790 /**
1791 * Make URL details where the article exists (or at least it's convenient to think so)
1792 */
1793 static function makeKnownUrlDetails( $name, $urlaction = '' ) {
1794 $title = Title::newFromText( $name );
1795 self::checkTitle( $title, $name );
1796 return array(
1797 'href' => $title->getLocalURL( $urlaction ),
1798 'exists' => true
1799 );
1800 }
1801
1802 # make sure we have some title to operate on
1803 static function checkTitle( &$title, $name ) {
1804 if( !is_object( $title ) ) {
1805 $title = Title::newFromText( $name );
1806 if( !is_object( $title ) ) {
1807 $title = Title::newFromText( '--error: link target missing--' );
1808 }
1809 }
1810 }
1811
1812 /**
1813 * Build an array that represents the sidebar(s), the navigation bar among them
1814 *
1815 * @return array
1816 */
1817 function buildSidebar() {
1818 global $parserMemc, $wgEnableSidebarCache, $wgSidebarCacheExpiry;
1819 global $wgLang;
1820 wfProfileIn( __METHOD__ );
1821
1822 $key = wfMemcKey( 'sidebar', $wgLang->getCode() );
1823
1824 if ( $wgEnableSidebarCache ) {
1825 $cachedsidebar = $parserMemc->get( $key );
1826 if ( $cachedsidebar ) {
1827 wfProfileOut( __METHOD__ );
1828 return $cachedsidebar;
1829 }
1830 }
1831
1832 $bar = array();
1833 $lines = explode( "\n", wfMsgForContent( 'sidebar' ) );
1834 $heading = '';
1835 foreach ($lines as $line) {
1836 if (strpos($line, '*') !== 0)
1837 continue;
1838 if (strpos($line, '**') !== 0) {
1839 $line = trim($line, '* ');
1840 $heading = $line;
1841 if( !array_key_exists($heading, $bar) ) $bar[$heading] = array();
1842 } else {
1843 if (strpos($line, '|') !== false) { // sanity check
1844 $line = array_map('trim', explode( '|' , trim($line, '* '), 2 ) );
1845 $link = wfMsgForContent( $line[0] );
1846 if ($link == '-')
1847 continue;
1848
1849 $text = wfMsgExt($line[1], 'parsemag');
1850 if (wfEmptyMsg($line[1], $text))
1851 $text = $line[1];
1852 if (wfEmptyMsg($line[0], $link))
1853 $link = $line[0];
1854
1855 if ( preg_match( '/^(?:' . wfUrlProtocols() . ')/', $link ) ) {
1856 $href = $link;
1857 } else {
1858 $title = Title::newFromText( $link );
1859 if ( $title ) {
1860 $title = $title->fixSpecialName();
1861 $href = $title->getLocalURL();
1862 } else {
1863 $href = 'INVALID-TITLE';
1864 }
1865 }
1866
1867 $bar[$heading][] = array(
1868 'text' => $text,
1869 'href' => $href,
1870 'id' => 'n-' . strtr($line[1], ' ', '-'),
1871 'active' => false
1872 );
1873 } else { continue; }
1874 }
1875 }
1876 wfRunHooks('SkinBuildSidebar', array($this, &$bar));
1877 if ( $wgEnableSidebarCache ) $parserMemc->set( $key, $bar, $wgSidebarCacheExpiry );
1878 wfProfileOut( __METHOD__ );
1879 return $bar;
1880 }
1881 }