getParamValue defaults to current page only if url undefined
[mediawiki.git] / includes / SkinTemplate.php
blobb8b1654c241ecf83eea50999449a6ffdd9abf1b6
1 <?php
2 /**
3 * Base class for template-based skins.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
23 /**
24 * Wrapper object for MediaWiki's localization functions,
25 * to be passed to the template engine.
27 * @private
28 * @ingroup Skins
30 class MediaWiki_I18N {
31 var $_context = array();
33 function set( $varName, $value ) {
34 $this->_context[$varName] = $value;
37 function translate( $value ) {
38 wfProfileIn( __METHOD__ );
40 // Hack for i18n:attributes in PHPTAL 1.0.0 dev version as of 2004-10-23
41 $value = preg_replace( '/^string:/', '', $value );
43 $value = wfMessage( $value )->text();
44 // interpolate variables
45 $m = array();
46 while( preg_match( '/\$([0-9]*?)/sm', $value, $m ) ) {
47 list( $src, $var ) = $m;
48 wfSuppressWarnings();
49 $varValue = $this->_context[$var];
50 wfRestoreWarnings();
51 $value = str_replace( $src, $varValue, $value );
53 wfProfileOut( __METHOD__ );
54 return $value;
58 /**
59 * Template-filler skin base class
60 * Formerly generic PHPTal (http://phptal.sourceforge.net/) skin
61 * Based on Brion's smarty skin
62 * @copyright Copyright © Gabriel Wicke -- http://www.aulinx.de/
64 * @todo Needs some serious refactoring into functions that correspond
65 * to the computations individual esi snippets need. Most importantly no body
66 * parsing for most of those of course.
68 * @ingroup Skins
70 class SkinTemplate extends Skin {
71 /**#@+
72 * @private
75 /**
76 * Name of our skin, it probably needs to be all lower case. Child classes
77 * should override the default.
79 var $skinname = 'monobook';
81 /**
82 * Stylesheets set to use. Subdirectory in skins/ where various stylesheets
83 * are located. Child classes should override the default.
85 var $stylename = 'monobook';
87 /**
88 * For QuickTemplate, the name of the subclass which will actually fill the
89 * template. Child classes should override the default.
91 var $template = 'QuickTemplate';
93 /**
94 * Whether this skin use OutputPage::headElement() to generate the "<head>"
95 * tag
97 var $useHeadElement = false;
99 /**#@-*/
102 * Add specific styles for this skin
104 * @param $out OutputPage
106 function setupSkinUserCss( OutputPage $out ) {
107 $out->addModuleStyles( array( 'mediawiki.legacy.shared', 'mediawiki.legacy.commonPrint' ) );
111 * Create the template engine object; we feed it a bunch of data
112 * and eventually it spits out some HTML. Should have interface
113 * roughly equivalent to PHPTAL 0.7.
115 * @param $classname String
116 * @param $repository string: subdirectory where we keep template files
117 * @param $cache_dir string
118 * @return QuickTemplate
119 * @private
121 function setupTemplate( $classname, $repository = false, $cache_dir = false ) {
122 return new $classname();
126 * initialize various variables and generate the template
128 * @param $out OutputPage
130 function outputPage( OutputPage $out=null ) {
131 global $wgContLang;
132 global $wgScript, $wgStylePath;
133 global $wgMimeType, $wgJsMimeType;
134 global $wgXhtmlDefaultNamespace, $wgXhtmlNamespaces, $wgHtml5Version;
135 global $wgDisableCounters, $wgSitename, $wgLogo, $wgHideInterlanguageLinks;
136 global $wgMaxCredits, $wgShowCreditsIfMax;
137 global $wgPageShowWatchingUsers;
138 global $wgArticlePath, $wgScriptPath, $wgServer;
140 wfProfileIn( __METHOD__ );
141 Profiler::instance()->setTemplated( true );
143 $oldContext = null;
144 if ( $out !== null ) {
145 // @todo Add wfDeprecated in 1.20
146 $oldContext = $this->getContext();
147 $this->setContext( $out->getContext() );
150 $out = $this->getOutput();
151 $request = $this->getRequest();
152 $user = $this->getUser();
153 $title = $this->getTitle();
155 wfProfileIn( __METHOD__ . '-init' );
156 $this->initPage( $out );
158 $tpl = $this->setupTemplate( $this->template, 'skins' );
159 wfProfileOut( __METHOD__ . '-init' );
161 wfProfileIn( __METHOD__ . '-stuff' );
162 $this->thispage = $title->getPrefixedDBkey();
163 $this->titletxt = $title->getPrefixedText();
164 $this->userpage = $user->getUserPage()->getPrefixedText();
165 $query = array();
166 if ( !$request->wasPosted() ) {
167 $query = $request->getValues();
168 unset( $query['title'] );
169 unset( $query['returnto'] );
170 unset( $query['returntoquery'] );
172 $this->thisquery = wfArrayToCGI( $query );
173 $this->loggedin = $user->isLoggedIn();
174 $this->username = $user->getName();
176 if ( $this->loggedin || $this->showIPinHeader() ) {
177 $this->userpageUrlDetails = self::makeUrlDetails( $this->userpage );
178 } else {
179 # This won't be used in the standard skins, but we define it to preserve the interface
180 # To save time, we check for existence
181 $this->userpageUrlDetails = self::makeKnownUrlDetails( $this->userpage );
184 wfProfileOut( __METHOD__ . '-stuff' );
186 wfProfileIn( __METHOD__ . '-stuff-head' );
187 if ( !$this->useHeadElement ) {
188 $tpl->set( 'pagecss', false );
189 $tpl->set( 'usercss', false );
191 $tpl->set( 'userjs', false );
192 $tpl->set( 'userjsprev', false );
194 $tpl->set( 'jsvarurl', false );
196 $tpl->setRef( 'xhtmldefaultnamespace', $wgXhtmlDefaultNamespace );
197 $tpl->set( 'xhtmlnamespaces', $wgXhtmlNamespaces );
198 $tpl->set( 'html5version', $wgHtml5Version );
199 $tpl->set( 'headlinks', $out->getHeadLinks() );
200 $tpl->set( 'csslinks', $out->buildCssLinks() );
201 $tpl->set( 'pageclass', $this->getPageClasses( $title ) );
202 $tpl->set( 'skinnameclass', ( 'skin-' . Sanitizer::escapeClass( $this->getSkinName() ) ) );
204 wfProfileOut( __METHOD__ . '-stuff-head' );
206 wfProfileIn( __METHOD__ . '-stuff2' );
207 $tpl->set( 'title', $out->getPageTitle() );
208 $tpl->set( 'pagetitle', $out->getHTMLTitle() );
209 $tpl->set( 'displaytitle', $out->mPageLinkTitle );
211 $tpl->setRef( 'thispage', $this->thispage );
212 $tpl->setRef( 'titleprefixeddbkey', $this->thispage );
213 $tpl->set( 'titletext', $title->getText() );
214 $tpl->set( 'articleid', $title->getArticleID() );
216 $tpl->set( 'isarticle', $out->isArticle() );
218 $subpagestr = $this->subPageSubtitle();
219 if ( $subpagestr !== '' ) {
220 $subpagestr = '<span class="subpages">' . $subpagestr . '</span>';
222 $tpl->set( 'subtitle', $subpagestr . $out->getSubtitle() );
224 $undelete = $this->getUndeleteLink();
225 if ( $undelete === '' ) {
226 $tpl->set( 'undelete', '' );
227 } else {
228 $tpl->set( 'undelete', '<span class="subpages">' . $undelete . '</span>' );
231 $tpl->set( 'catlinks', $this->getCategories() );
232 if( $out->isSyndicated() ) {
233 $feeds = array();
234 foreach( $out->getSyndicationLinks() as $format => $link ) {
235 $feeds[$format] = array(
236 'text' => $this->msg( "feed-$format" )->text(),
237 'href' => $link
240 $tpl->setRef( 'feeds', $feeds );
241 } else {
242 $tpl->set( 'feeds', false );
245 $tpl->setRef( 'mimetype', $wgMimeType );
246 $tpl->setRef( 'jsmimetype', $wgJsMimeType );
247 $tpl->set( 'charset', 'UTF-8' );
248 $tpl->setRef( 'wgScript', $wgScript );
249 $tpl->setRef( 'skinname', $this->skinname );
250 $tpl->set( 'skinclass', get_class( $this ) );
251 $tpl->setRef( 'skin', $this );
252 $tpl->setRef( 'stylename', $this->stylename );
253 $tpl->set( 'printable', $out->isPrintable() );
254 $tpl->set( 'handheld', $request->getBool( 'handheld' ) );
255 $tpl->setRef( 'loggedin', $this->loggedin );
256 $tpl->set( 'notspecialpage', !$title->isSpecialPage() );
257 /* XXX currently unused, might get useful later
258 $tpl->set( 'editable', ( !$title->isSpecialPage() ) );
259 $tpl->set( 'exists', $title->getArticleID() != 0 );
260 $tpl->set( 'watch', $user->isWatched( $title ) ? 'unwatch' : 'watch' );
261 $tpl->set( 'protect', count( $title->isProtected() ) ? 'unprotect' : 'protect' );
262 $tpl->set( 'helppage', $this->msg( 'helppage' )->text() );
264 $tpl->set( 'searchaction', $this->escapeSearchLink() );
265 $tpl->set( 'searchtitle', SpecialPage::getTitleFor( 'Search' )->getPrefixedDBKey() );
266 $tpl->set( 'search', trim( $request->getVal( 'search' ) ) );
267 $tpl->setRef( 'stylepath', $wgStylePath );
268 $tpl->setRef( 'articlepath', $wgArticlePath );
269 $tpl->setRef( 'scriptpath', $wgScriptPath );
270 $tpl->setRef( 'serverurl', $wgServer );
271 $tpl->setRef( 'logopath', $wgLogo );
272 $tpl->setRef( 'sitename', $wgSitename );
274 $userLang = $this->getLanguage();
275 $userLangCode = $userLang->getHtmlCode();
276 $userLangDir = $userLang->getDir();
278 $tpl->set( 'lang', $userLangCode );
279 $tpl->set( 'dir', $userLangDir );
280 $tpl->set( 'rtl', $userLang->isRTL() );
282 $tpl->set( 'capitalizeallnouns', $userLang->capitalizeAllNouns() ? ' capitalize-all-nouns' : '' );
283 $tpl->set( 'showjumplinks', $user->getOption( 'showjumplinks' ) );
284 $tpl->set( 'username', $this->loggedin ? $this->username : null );
285 $tpl->setRef( 'userpage', $this->userpage );
286 $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href'] );
287 $tpl->set( 'userlang', $userLangCode );
289 // Users can have their language set differently than the
290 // content of the wiki. For these users, tell the web browser
291 // that interface elements are in a different language.
292 $tpl->set( 'userlangattributes', '' );
293 $tpl->set( 'specialpageattributes', '' ); # obsolete
295 if ( $userLangCode !== $wgContLang->getHtmlCode() || $userLangDir !== $wgContLang->getDir() ) {
296 $escUserlang = htmlspecialchars( $userLangCode );
297 $escUserdir = htmlspecialchars( $userLangDir );
298 // Attributes must be in double quotes because htmlspecialchars() doesn't
299 // escape single quotes
300 $attrs = " lang=\"$escUserlang\" dir=\"$escUserdir\"";
301 $tpl->set( 'userlangattributes', $attrs );
304 wfProfileOut( __METHOD__ . '-stuff2' );
306 wfProfileIn( __METHOD__ . '-stuff3' );
307 $tpl->set( 'newtalk', $this->getNewtalks() );
308 $tpl->set( 'logo', $this->logoText() );
310 $tpl->set( 'copyright', false );
311 $tpl->set( 'viewcount', false );
312 $tpl->set( 'lastmod', false );
313 $tpl->set( 'credits', false );
314 $tpl->set( 'numberofwatchingusers', false );
315 if ( $out->isArticle() && $title->exists() ) {
316 if ( $this->isRevisionCurrent() ) {
317 if ( !$wgDisableCounters ) {
318 $viewcount = $this->getWikiPage()->getCount();
319 if ( $viewcount ) {
320 $tpl->set( 'viewcount', $this->msg( 'viewcount' )->numParams( $viewcount )->parse() );
324 if ( $wgPageShowWatchingUsers ) {
325 $dbr = wfGetDB( DB_SLAVE );
326 $num = $dbr->selectField( 'watchlist', 'COUNT(*)',
327 array( 'wl_title' => $title->getDBkey(), 'wl_namespace' => $title->getNamespace() ),
328 __METHOD__
330 if ( $num > 0 ) {
331 $tpl->set( 'numberofwatchingusers',
332 $this->msg( 'number_of_watching_users_pageview' )->numParams( $num )->parse()
337 if ( $wgMaxCredits != 0 ) {
338 $tpl->set( 'credits', Action::factory( 'credits', $this->getWikiPage(),
339 $this->getContext() )->getCredits( $wgMaxCredits, $wgShowCreditsIfMax ) );
340 } else {
341 $tpl->set( 'lastmod', $this->lastModified() );
344 $tpl->set( 'copyright', $this->getCopyright() );
346 wfProfileOut( __METHOD__ . '-stuff3' );
348 wfProfileIn( __METHOD__ . '-stuff4' );
349 $tpl->set( 'copyrightico', $this->getCopyrightIcon() );
350 $tpl->set( 'poweredbyico', $this->getPoweredBy() );
351 $tpl->set( 'disclaimer', $this->disclaimerLink() );
352 $tpl->set( 'privacy', $this->privacyLink() );
353 $tpl->set( 'about', $this->aboutLink() );
355 $tpl->set( 'footerlinks', array(
356 'info' => array(
357 'lastmod',
358 'viewcount',
359 'numberofwatchingusers',
360 'credits',
361 'copyright',
363 'places' => array(
364 'privacy',
365 'about',
366 'disclaimer',
368 ) );
370 global $wgFooterIcons;
371 $tpl->set( 'footericons', $wgFooterIcons );
372 foreach ( $tpl->data['footericons'] as $footerIconsKey => &$footerIconsBlock ) {
373 if ( count( $footerIconsBlock ) > 0 ) {
374 foreach ( $footerIconsBlock as &$footerIcon ) {
375 if ( isset( $footerIcon['src'] ) ) {
376 if ( !isset( $footerIcon['width'] ) ) {
377 $footerIcon['width'] = 88;
379 if ( !isset( $footerIcon['height'] ) ) {
380 $footerIcon['height'] = 31;
384 } else {
385 unset( $tpl->data['footericons'][$footerIconsKey] );
389 $tpl->set( 'sitenotice', $this->getSiteNotice() );
390 $tpl->set( 'bottomscripts', $this->bottomScripts() );
391 $tpl->set( 'printfooter', $this->printSource() );
393 # An ID that includes the actual body text; without categories, contentSub, ...
394 $realBodyAttribs = array( 'id' => 'mw-content-text' );
396 # Add a mw-content-ltr/rtl class to be able to style based on text direction
397 # when the content is different from the UI language, i.e.:
398 # not for special pages or file pages AND only when viewing AND if the page exists
399 # (or is in MW namespace, because that has default content)
400 if ( !in_array( $title->getNamespace(), array( NS_SPECIAL, NS_FILE ) ) &&
401 in_array( $request->getVal( 'action', 'view' ), array( 'view', 'historysubmit' ) ) &&
402 ( $title->exists() || $title->getNamespace() == NS_MEDIAWIKI ) ) {
403 $pageLang = $title->getPageViewLanguage();
404 $realBodyAttribs['lang'] = $pageLang->getHtmlCode();
405 $realBodyAttribs['dir'] = $pageLang->getDir();
406 $realBodyAttribs['class'] = 'mw-content-'.$pageLang->getDir();
409 $out->mBodytext = Html::rawElement( 'div', $realBodyAttribs, $out->mBodytext );
410 $tpl->setRef( 'bodytext', $out->mBodytext );
412 # Language links
413 $language_urls = array();
415 if ( !$wgHideInterlanguageLinks ) {
416 foreach( $out->getLanguageLinks() as $l ) {
417 $tmp = explode( ':', $l, 2 );
418 $class = 'interwiki-' . $tmp[0];
419 unset( $tmp );
420 $nt = Title::newFromText( $l );
421 if ( $nt ) {
422 $ilLangName = Language::fetchLanguageName( $nt->getInterwiki() );
423 if ( strval( $ilLangName ) === '' ) {
424 $ilLangName = $l;
425 } else {
426 $ilLangName = $this->formatLanguageName( $ilLangName );
428 $language_urls[] = array(
429 'href' => $nt->getFullURL(),
430 'text' => $ilLangName,
431 'title' => $nt->getText(),
432 'class' => $class,
433 'lang' => $nt->getInterwiki(),
434 'hreflang' => $nt->getInterwiki(),
439 if ( count( $language_urls ) ) {
440 $tpl->setRef( 'language_urls', $language_urls );
441 } else {
442 $tpl->set( 'language_urls', false );
444 wfProfileOut( __METHOD__ . '-stuff4' );
446 wfProfileIn( __METHOD__ . '-stuff5' );
447 # Personal toolbar
448 $tpl->set( 'personal_urls', $this->buildPersonalUrls() );
449 $content_navigation = $this->buildContentNavigationUrls();
450 $content_actions = $this->buildContentActionUrls( $content_navigation );
451 $tpl->setRef( 'content_navigation', $content_navigation );
452 $tpl->setRef( 'content_actions', $content_actions );
454 $tpl->set( 'sidebar', $this->buildSidebar() );
455 $tpl->set( 'nav_urls', $this->buildNavUrls() );
457 // Set the head scripts near the end, in case the above actions resulted in added scripts
458 if ( $this->useHeadElement ) {
459 $tpl->set( 'headelement', $out->headElement( $this ) );
460 } else {
461 $tpl->set( 'headscripts', $out->getHeadScripts() . $out->getHeadItems() );
464 $tpl->set( 'debug', '' );
465 $tpl->set( 'debughtml', $this->generateDebugHTML() );
466 $tpl->set( 'reporttime', wfReportTime() );
468 // original version by hansm
469 if( !wfRunHooks( 'SkinTemplateOutputPageBeforeExec', array( &$this, &$tpl ) ) ) {
470 wfDebug( __METHOD__ . ": Hook SkinTemplateOutputPageBeforeExec broke outputPage execution!\n" );
473 // Set the bodytext to another key so that skins can just output it on it's own
474 // and output printfooter and debughtml separately
475 $tpl->set( 'bodycontent', $tpl->data['bodytext'] );
477 // Append printfooter and debughtml onto bodytext so that skins that were already
478 // using bodytext before they were split out don't suddenly start not outputting information
479 $tpl->data['bodytext'] .= Html::rawElement( 'div', array( 'class' => 'printfooter' ), "\n{$tpl->data['printfooter']}" ) . "\n";
480 $tpl->data['bodytext'] .= $tpl->data['debughtml'];
482 // allow extensions adding stuff after the page content.
483 // See Skin::afterContentHook() for further documentation.
484 $tpl->set( 'dataAfterContent', $this->afterContentHook() );
485 wfProfileOut( __METHOD__ . '-stuff5' );
487 // execute template
488 wfProfileIn( __METHOD__ . '-execute' );
489 $res = $tpl->execute();
490 wfProfileOut( __METHOD__ . '-execute' );
492 // result may be an error
493 $this->printOrError( $res );
495 if ( $oldContext ) {
496 $this->setContext( $oldContext );
498 wfProfileOut( __METHOD__ );
502 * Format language name for use in sidebar interlanguage links list.
503 * By default it is capitalized.
505 * @param $name string Language name, e.g. "English" or "español"
506 * @return string
507 * @private
509 function formatLanguageName( $name ) {
510 return $this->getLanguage()->ucfirst( $name );
514 * Output the string, or print error message if it's
515 * an error object of the appropriate type.
516 * For the base class, assume strings all around.
518 * @param $str Mixed
519 * @private
521 function printOrError( $str ) {
522 echo $str;
526 * Output a boolean indiciating if buildPersonalUrls should output separate
527 * login and create account links or output a combined link
528 * By default we simply return a global config setting that affects most skins
529 * This is setup as a method so that like with $wgLogo and getLogo() a skin
530 * can override this setting and always output one or the other if it has
531 * a reason it can't output one of the two modes.
532 * @return bool
534 function useCombinedLoginLink() {
535 global $wgUseCombinedLoginLink;
536 return $wgUseCombinedLoginLink;
540 * build array of urls for personal toolbar
541 * @return array
543 protected function buildPersonalUrls() {
544 global $wgSecureLogin;
546 $title = $this->getTitle();
547 $request = $this->getRequest();
548 $pageurl = $title->getLocalURL();
549 wfProfileIn( __METHOD__ );
551 /* set up the default links for the personal toolbar */
552 $personal_urls = array();
554 # Due to bug 32276, if a user does not have read permissions,
555 # $this->getTitle() will just give Special:Badtitle, which is
556 # not especially useful as a returnto parameter. Use the title
557 # from the request instead, if there was one.
558 $page = Title::newFromURL( $request->getVal( 'title', '' ) );
559 $page = $request->getVal( 'returnto', $page );
560 $a = array();
561 if ( strval( $page ) !== '' ) {
562 $a['returnto'] = $page;
563 $query = $request->getVal( 'returntoquery', $this->thisquery );
564 if( $query != '' ) {
565 $a['returntoquery'] = $query;
569 if ( $wgSecureLogin && $request->detectProtocol() === 'https' ) {
570 $a['wpStickHTTPS'] = true;
573 $returnto = wfArrayToCGI( $a );
574 if( $this->loggedin ) {
575 $personal_urls['userpage'] = array(
576 'text' => $this->username,
577 'href' => &$this->userpageUrlDetails['href'],
578 'class' => $this->userpageUrlDetails['exists'] ? false : 'new',
579 'active' => ( $this->userpageUrlDetails['href'] == $pageurl ),
580 'dir' => 'auto'
582 $usertalkUrlDetails = $this->makeTalkUrlDetails( $this->userpage );
583 $personal_urls['mytalk'] = array(
584 'text' => $this->msg( 'mytalk' )->text(),
585 'href' => &$usertalkUrlDetails['href'],
586 'class' => $usertalkUrlDetails['exists'] ? false : 'new',
587 'active' => ( $usertalkUrlDetails['href'] == $pageurl )
589 $href = self::makeSpecialUrl( 'Preferences' );
590 $personal_urls['preferences'] = array(
591 'text' => $this->msg( 'mypreferences' )->text(),
592 'href' => $href,
593 'active' => ( $href == $pageurl )
595 $href = self::makeSpecialUrl( 'Watchlist' );
596 $personal_urls['watchlist'] = array(
597 'text' => $this->msg( 'mywatchlist' )->text(),
598 'href' => $href,
599 'active' => ( $href == $pageurl )
602 # We need to do an explicit check for Special:Contributions, as we
603 # have to match both the title, and the target, which could come
604 # from request values (Special:Contributions?target=Jimbo_Wales)
605 # or be specified in "sub page" form
606 # (Special:Contributions/Jimbo_Wales). The plot
607 # thickens, because the Title object is altered for special pages,
608 # so it doesn't contain the original alias-with-subpage.
609 $origTitle = Title::newFromText( $request->getText( 'title' ) );
610 if( $origTitle instanceof Title && $origTitle->isSpecialPage() ) {
611 list( $spName, $spPar ) = SpecialPageFactory::resolveAlias( $origTitle->getText() );
612 $active = $spName == 'Contributions'
613 && ( ( $spPar && $spPar == $this->username )
614 || $request->getText( 'target' ) == $this->username );
615 } else {
616 $active = false;
619 $href = self::makeSpecialUrlSubpage( 'Contributions', $this->username );
620 $personal_urls['mycontris'] = array(
621 'text' => $this->msg( 'mycontris' )->text(),
622 'href' => $href,
623 'active' => $active
625 $personal_urls['logout'] = array(
626 'text' => $this->msg( 'userlogout' )->text(),
627 'href' => self::makeSpecialUrl( 'Userlogout',
628 // userlogout link must always contain an & character, otherwise we might not be able
629 // to detect a buggy precaching proxy (bug 17790)
630 $title->isSpecial( 'Preferences' ) ? 'noreturnto' : $returnto
632 'active' => false
634 } else {
635 $useCombinedLoginLink = $this->useCombinedLoginLink();
636 $loginlink = $this->getUser()->isAllowed( 'createaccount' ) && $useCombinedLoginLink
637 ? 'nav-login-createaccount'
638 : 'login';
639 $is_signup = $request->getText( 'type' ) == 'signup';
641 # anonlogin & login are the same
642 global $wgSecureLogin;
643 $proto = $wgSecureLogin ? PROTO_HTTPS : null;
645 $login_id = $this->showIPinHeader() ? 'anonlogin' : 'login';
646 $login_url = array(
647 'text' => $this->msg( $loginlink )->text(),
648 'href' => self::makeSpecialUrl( 'Userlogin', $returnto, $proto ),
649 'active' => $title->isSpecial( 'Userlogin' ) && ( $loginlink == 'nav-login-createaccount' || !$is_signup ),
650 'class' => $wgSecureLogin ? 'link-https' : ''
652 $createaccount_url = array(
653 'text' => $this->msg( 'createaccount' )->text(),
654 'href' => self::makeSpecialUrl( 'Userlogin', "$returnto&type=signup", $proto ),
655 'active' => $title->isSpecial( 'Userlogin' ) && $is_signup,
656 'class' => $wgSecureLogin ? 'link-https' : ''
659 if( $this->showIPinHeader() ) {
660 $href = &$this->userpageUrlDetails['href'];
661 $personal_urls['anonuserpage'] = array(
662 'text' => $this->username,
663 'href' => $href,
664 'class' => $this->userpageUrlDetails['exists'] ? false : 'new',
665 'active' => ( $pageurl == $href )
667 $usertalkUrlDetails = $this->makeTalkUrlDetails( $this->userpage );
668 $href = &$usertalkUrlDetails['href'];
669 $personal_urls['anontalk'] = array(
670 'text' => $this->msg( 'anontalk' )->text(),
671 'href' => $href,
672 'class' => $usertalkUrlDetails['exists'] ? false : 'new',
673 'active' => ( $pageurl == $href )
677 if ( $this->getUser()->isAllowed( 'createaccount' ) && !$useCombinedLoginLink ) {
678 $personal_urls['createaccount'] = $createaccount_url;
681 $personal_urls[$login_id] = $login_url;
684 wfRunHooks( 'PersonalUrls', array( &$personal_urls, &$title ) );
685 wfProfileOut( __METHOD__ );
686 return $personal_urls;
690 * TODO document
691 * @param $title Title
692 * @param $message String message key
693 * @param $selected Bool
694 * @param $query String
695 * @param $checkEdit Bool
696 * @return array
698 function tabAction( $title, $message, $selected, $query = '', $checkEdit = false ) {
699 $classes = array();
700 if( $selected ) {
701 $classes[] = 'selected';
703 if( $checkEdit && !$title->isKnown() ) {
704 $classes[] = 'new';
705 $query = 'action=edit&redlink=1';
708 // wfMessageFallback will nicely accept $message as an array of fallbacks
709 // or just a single key
710 $msg = wfMessageFallback( $message )->setContext( $this->getContext() );
711 if ( is_array( $message ) ) {
712 // for hook compatibility just keep the last message name
713 $message = end( $message );
715 if ( $msg->exists() ) {
716 $text = $msg->text();
717 } else {
718 global $wgContLang;
719 $text = $wgContLang->getFormattedNsText(
720 MWNamespace::getSubject( $title->getNamespace() ) );
723 $result = array();
724 if( !wfRunHooks( 'SkinTemplateTabAction', array( &$this,
725 $title, $message, $selected, $checkEdit,
726 &$classes, &$query, &$text, &$result ) ) ) {
727 return $result;
730 return array(
731 'class' => implode( ' ', $classes ),
732 'text' => $text,
733 'href' => $title->getLocalUrl( $query ),
734 'primary' => true );
737 function makeTalkUrlDetails( $name, $urlaction = '' ) {
738 $title = Title::newFromText( $name );
739 if( !is_object( $title ) ) {
740 throw new MWException( __METHOD__ . " given invalid pagename $name" );
742 $title = $title->getTalkPage();
743 self::checkTitle( $title, $name );
744 return array(
745 'href' => $title->getLocalURL( $urlaction ),
746 'exists' => $title->getArticleID() != 0,
750 function makeArticleUrlDetails( $name, $urlaction = '' ) {
751 $title = Title::newFromText( $name );
752 $title= $title->getSubjectPage();
753 self::checkTitle( $title, $name );
754 return array(
755 'href' => $title->getLocalURL( $urlaction ),
756 'exists' => $title->getArticleID() != 0,
761 * a structured array of links usually used for the tabs in a skin
763 * There are 4 standard sections
764 * namespaces: Used for namespace tabs like special, page, and talk namespaces
765 * views: Used for primary page views like read, edit, history
766 * actions: Used for most extra page actions like deletion, protection, etc...
767 * variants: Used to list the language variants for the page
769 * Each section's value is a key/value array of links for that section.
770 * The links themseves have these common keys:
771 * - class: The css classes to apply to the tab
772 * - text: The text to display on the tab
773 * - href: The href for the tab to point to
774 * - rel: An optional rel= for the tab's link
775 * - redundant: If true the tab will be dropped in skins using content_actions
776 * this is useful for tabs like "Read" which only have meaning in skins that
777 * take special meaning from the grouped structure of content_navigation
779 * Views also have an extra key which can be used:
780 * - primary: If this is not true skins like vector may try to hide the tab
781 * when the user has limited space in their browser window
783 * content_navigation using code also expects these ids to be present on the
784 * links, however these are usually automatically generated by SkinTemplate
785 * itself and are not necessary when using a hook. The only things these may
786 * matter to are people modifying content_navigation after it's initial creation:
787 * - id: A "preferred" id, most skins are best off outputting this preferred id for best compatibility
788 * - tooltiponly: This is set to true for some tabs in cases where the system
789 * believes that the accesskey should not be added to the tab.
791 * @return array
793 protected function buildContentNavigationUrls() {
794 global $wgDisableLangConversion;
796 wfProfileIn( __METHOD__ );
798 // Display tabs for the relevant title rather than always the title itself
799 $title = $this->getRelevantTitle();
800 $onPage = $title->equals( $this->getTitle() );
802 $out = $this->getOutput();
803 $request = $this->getRequest();
804 $user = $this->getUser();
806 $content_navigation = array(
807 'namespaces' => array(),
808 'views' => array(),
809 'actions' => array(),
810 'variants' => array()
813 // parameters
814 $action = $request->getVal( 'action', 'view' );
816 $userCanRead = $title->quickUserCan( 'read', $user );
818 $preventActiveTabs = false;
819 wfRunHooks( 'SkinTemplatePreventOtherActiveTabs', array( &$this, &$preventActiveTabs ) );
821 // Checks if page is some kind of content
822 if( $title->canExist() ) {
823 // Gets page objects for the related namespaces
824 $subjectPage = $title->getSubjectPage();
825 $talkPage = $title->getTalkPage();
827 // Determines if this is a talk page
828 $isTalk = $title->isTalkPage();
830 // Generates XML IDs from namespace names
831 $subjectId = $title->getNamespaceKey( '' );
833 if ( $subjectId == 'main' ) {
834 $talkId = 'talk';
835 } else {
836 $talkId = "{$subjectId}_talk";
839 $skname = $this->skinname;
841 // Adds namespace links
842 $subjectMsg = array( "nstab-$subjectId" );
843 if ( $subjectPage->isMainPage() ) {
844 array_unshift( $subjectMsg, 'mainpage-nstab' );
846 $content_navigation['namespaces'][$subjectId] = $this->tabAction(
847 $subjectPage, $subjectMsg, !$isTalk && !$preventActiveTabs, '', $userCanRead
849 $content_navigation['namespaces'][$subjectId]['context'] = 'subject';
850 $content_navigation['namespaces'][$talkId] = $this->tabAction(
851 $talkPage, array( "nstab-$talkId", 'talk' ), $isTalk && !$preventActiveTabs, '', $userCanRead
853 $content_navigation['namespaces'][$talkId]['context'] = 'talk';
855 if ( $userCanRead ) {
856 // Adds view view link
857 if ( $title->exists() ) {
858 $content_navigation['views']['view'] = $this->tabAction(
859 $isTalk ? $talkPage : $subjectPage,
860 array( "$skname-view-view", 'view' ),
861 ( $onPage && ( $action == 'view' || $action == 'purge' ) ), '', true
863 // signal to hide this from simple content_actions
864 $content_navigation['views']['view']['redundant'] = true;
867 wfProfileIn( __METHOD__ . '-edit' );
869 // Checks if user can edit the current page if it exists or create it otherwise
870 if ( $title->quickUserCan( 'edit', $user ) && ( $title->exists() || $title->quickUserCan( 'create', $user ) ) ) {
871 // Builds CSS class for talk page links
872 $isTalkClass = $isTalk ? ' istalk' : '';
873 // Whether the user is editing the page
874 $isEditing = $onPage && ( $action == 'edit' || $action == 'submit' );
875 // Whether to show the "Add a new section" tab
876 // Checks if this is a current rev of talk page and is not forced to be hidden
877 $showNewSection = !$out->forceHideNewSectionLink()
878 && ( ( $isTalk && $this->isRevisionCurrent() ) || $out->showNewSectionLink() );
879 $section = $request->getVal( 'section' );
881 $msgKey = $title->exists() || ( $title->getNamespace() == NS_MEDIAWIKI && $title->getDefaultMessageText() !== false ) ?
882 'edit' : 'create';
883 $content_navigation['views']['edit'] = array(
884 'class' => ( $isEditing && ( $section !== 'new' || !$showNewSection ) ? 'selected' : '' ) . $isTalkClass,
885 'text' => wfMessageFallback( "$skname-view-$msgKey", $msgKey )->setContext( $this->getContext() )->text(),
886 'href' => $title->getLocalURL( $this->editUrlOptions() ),
887 'primary' => true, // don't collapse this in vector
890 // section link
891 if ( $showNewSection ) {
892 // Adds new section link
893 //$content_navigation['actions']['addsection']
894 $content_navigation['views']['addsection'] = array(
895 'class' => ( $isEditing && $section == 'new' ) ? 'selected' : false,
896 'text' => wfMessageFallback( "$skname-action-addsection", 'addsection' )->setContext( $this->getContext() )->text(),
897 'href' => $title->getLocalURL( 'action=edit&section=new' )
900 // Checks if the page has some kind of viewable content
901 } elseif ( $title->hasSourceText() ) {
902 // Adds view source view link
903 $content_navigation['views']['viewsource'] = array(
904 'class' => ( $onPage && $action == 'edit' ) ? 'selected' : false,
905 'text' => wfMessageFallback( "$skname-action-viewsource", 'viewsource' )->setContext( $this->getContext() )->text(),
906 'href' => $title->getLocalURL( $this->editUrlOptions() ),
907 'primary' => true, // don't collapse this in vector
910 wfProfileOut( __METHOD__ . '-edit' );
912 wfProfileIn( __METHOD__ . '-live' );
913 // Checks if the page exists
914 if ( $title->exists() ) {
915 // Adds history view link
916 $content_navigation['views']['history'] = array(
917 'class' => ( $onPage && $action == 'history' ) ? 'selected' : false,
918 'text' => wfMessageFallback( "$skname-view-history", 'history_short' )->setContext( $this->getContext() )->text(),
919 'href' => $title->getLocalURL( 'action=history' ),
920 'rel' => 'archives',
923 if ( $title->quickUserCan( 'delete', $user ) ) {
924 $content_navigation['actions']['delete'] = array(
925 'class' => ( $onPage && $action == 'delete' ) ? 'selected' : false,
926 'text' => wfMessageFallback( "$skname-action-delete", 'delete' )->setContext( $this->getContext() )->text(),
927 'href' => $title->getLocalURL( 'action=delete' )
931 if ( $title->quickUserCan( 'move', $user ) ) {
932 $moveTitle = SpecialPage::getTitleFor( 'Movepage', $title->getPrefixedDBkey() );
933 $content_navigation['actions']['move'] = array(
934 'class' => $this->getTitle()->isSpecial( 'Movepage' ) ? 'selected' : false,
935 'text' => wfMessageFallback( "$skname-action-move", 'move' )->setContext( $this->getContext() )->text(),
936 'href' => $moveTitle->getLocalURL()
939 } else {
940 // article doesn't exist or is deleted
941 if ( $user->isAllowed( 'deletedhistory' ) ) {
942 $n = $title->isDeleted();
943 if ( $n ) {
944 $undelTitle = SpecialPage::getTitleFor( 'Undelete' );
945 // If the user can't undelete but can view deleted history show them a "View .. deleted" tab instead
946 $msgKey = $user->isAllowed( 'undelete' ) ? 'undelete' : 'viewdeleted';
947 $content_navigation['actions']['undelete'] = array(
948 'class' => $this->getTitle()->isSpecial( 'Undelete' ) ? 'selected' : false,
949 'text' => wfMessageFallback( "$skname-action-$msgKey", "{$msgKey}_short" )
950 ->setContext( $this->getContext() )->numParams( $n )->text(),
951 'href' => $undelTitle->getLocalURL( array( 'target' => $title->getPrefixedDBkey() ) )
957 if ( $title->getNamespace() !== NS_MEDIAWIKI && $title->quickUserCan( 'protect', $user ) ) {
958 $mode = $title->isProtected() ? 'unprotect' : 'protect';
959 $content_navigation['actions'][$mode] = array(
960 'class' => ( $onPage && $action == $mode ) ? 'selected' : false,
961 'text' => wfMessageFallback( "$skname-action-$mode", $mode )->setContext( $this->getContext() )->text(),
962 'href' => $title->getLocalURL( "action=$mode" )
966 wfProfileOut( __METHOD__ . '-live' );
968 // Checks if the user is logged in
969 if ( $this->loggedin ) {
971 * The following actions use messages which, if made particular to
972 * the any specific skins, would break the Ajax code which makes this
973 * action happen entirely inline. Skin::makeGlobalVariablesScript
974 * defines a set of messages in a javascript object - and these
975 * messages are assumed to be global for all skins. Without making
976 * a change to that procedure these messages will have to remain as
977 * the global versions.
979 $mode = $user->isWatched( $title ) ? 'unwatch' : 'watch';
980 $token = WatchAction::getWatchToken( $title, $user, $mode );
981 $content_navigation['actions'][$mode] = array(
982 'class' => $onPage && ( $action == 'watch' || $action == 'unwatch' ) ? 'selected' : false,
983 // uses 'watch' or 'unwatch' message
984 'text' => $this->msg( $mode )->text(),
985 'href' => $title->getLocalURL( array( 'action' => $mode, 'token' => $token ) )
990 wfRunHooks( 'SkinTemplateNavigation', array( &$this, &$content_navigation ) );
992 if ( $userCanRead && !$wgDisableLangConversion ) {
993 $pageLang = $title->getPageLanguage();
994 // Gets list of language variants
995 $variants = $pageLang->getVariants();
996 // Checks that language conversion is enabled and variants exist
997 // And if it is not in the special namespace
998 if ( count( $variants ) > 1 ) {
999 // Gets preferred variant (note that user preference is
1000 // only possible for wiki content language variant)
1001 $preferred = $pageLang->getPreferredVariant();
1002 // Loops over each variant
1003 foreach( $variants as $code ) {
1004 // Gets variant name from language code
1005 $varname = $pageLang->getVariantname( $code );
1006 // Checks if the variant is marked as disabled
1007 if( $varname == 'disable' ) {
1008 // Skips this variant
1009 continue;
1011 // Appends variant link
1012 $content_navigation['variants'][] = array(
1013 'class' => ( $code == $preferred ) ? 'selected' : false,
1014 'text' => $varname,
1015 'href' => $title->getLocalURL( array( 'variant' => $code ) ),
1016 'lang' => $code,
1017 'hreflang' => $code
1022 } else {
1023 // If it's not content, it's got to be a special page
1024 $content_navigation['namespaces']['special'] = array(
1025 'class' => 'selected',
1026 'text' => $this->msg( 'nstab-special' )->text(),
1027 'href' => $request->getRequestURL(), // @see: bug 2457, bug 2510
1028 'context' => 'subject'
1031 wfRunHooks( 'SkinTemplateNavigation::SpecialPage',
1032 array( &$this, &$content_navigation ) );
1035 // Equiv to SkinTemplateContentActions
1036 wfRunHooks( 'SkinTemplateNavigation::Universal', array( &$this, &$content_navigation ) );
1038 // Setup xml ids and tooltip info
1039 foreach ( $content_navigation as $section => &$links ) {
1040 foreach ( $links as $key => &$link ) {
1041 $xmlID = $key;
1042 if ( isset( $link['context'] ) && $link['context'] == 'subject' ) {
1043 $xmlID = 'ca-nstab-' . $xmlID;
1044 } elseif ( isset( $link['context'] ) && $link['context'] == 'talk' ) {
1045 $xmlID = 'ca-talk';
1046 } elseif ( $section == 'variants' ) {
1047 $xmlID = 'ca-varlang-' . $xmlID;
1048 } else {
1049 $xmlID = 'ca-' . $xmlID;
1051 $link['id'] = $xmlID;
1055 # We don't want to give the watch tab an accesskey if the
1056 # page is being edited, because that conflicts with the
1057 # accesskey on the watch checkbox. We also don't want to
1058 # give the edit tab an accesskey, because that's fairly su-
1059 # perfluous and conflicts with an accesskey (Ctrl-E) often
1060 # used for editing in Safari.
1061 if ( in_array( $action, array( 'edit', 'submit' ) ) ) {
1062 if ( isset( $content_navigation['views']['edit'] ) ) {
1063 $content_navigation['views']['edit']['tooltiponly'] = true;
1065 if ( isset( $content_navigation['actions']['watch'] ) ) {
1066 $content_navigation['actions']['watch']['tooltiponly'] = true;
1068 if ( isset( $content_navigation['actions']['unwatch'] ) ) {
1069 $content_navigation['actions']['unwatch']['tooltiponly'] = true;
1073 wfProfileOut( __METHOD__ );
1075 return $content_navigation;
1079 * an array of edit links by default used for the tabs
1080 * @return array
1081 * @private
1083 function buildContentActionUrls( $content_navigation ) {
1085 wfProfileIn( __METHOD__ );
1087 // content_actions has been replaced with content_navigation for backwards
1088 // compatibility and also for skins that just want simple tabs content_actions
1089 // is now built by flattening the content_navigation arrays into one
1091 $content_actions = array();
1093 foreach ( $content_navigation as $links ) {
1095 foreach ( $links as $key => $value ) {
1097 if ( isset( $value['redundant'] ) && $value['redundant'] ) {
1098 // Redundant tabs are dropped from content_actions
1099 continue;
1102 // content_actions used to have ids built using the "ca-$key" pattern
1103 // so the xmlID based id is much closer to the actual $key that we want
1104 // for that reason we'll just strip out the ca- if present and use
1105 // the latter potion of the "id" as the $key
1106 if ( isset( $value['id'] ) && substr( $value['id'], 0, 3 ) == 'ca-' ) {
1107 $key = substr( $value['id'], 3 );
1110 if ( isset( $content_actions[$key] ) ) {
1111 wfDebug( __METHOD__ . ": Found a duplicate key for $key while flattening content_navigation into content_actions." );
1112 continue;
1115 $content_actions[$key] = $value;
1121 wfProfileOut( __METHOD__ );
1123 return $content_actions;
1127 * build array of common navigation links
1128 * @return array
1129 * @private
1131 protected function buildNavUrls() {
1132 global $wgUploadNavigationUrl;
1134 wfProfileIn( __METHOD__ );
1136 $out = $this->getOutput();
1137 $request = $this->getRequest();
1139 $nav_urls = array();
1140 $nav_urls['mainpage'] = array( 'href' => self::makeMainPageUrl() );
1141 if( $wgUploadNavigationUrl ) {
1142 $nav_urls['upload'] = array( 'href' => $wgUploadNavigationUrl );
1143 } elseif( UploadBase::isEnabled() && UploadBase::isAllowed( $this->getUser() ) === true ) {
1144 $nav_urls['upload'] = array( 'href' => self::makeSpecialUrl( 'Upload' ) );
1145 } else {
1146 $nav_urls['upload'] = false;
1148 $nav_urls['specialpages'] = array( 'href' => self::makeSpecialUrl( 'Specialpages' ) );
1150 $nav_urls['print'] = false;
1151 $nav_urls['permalink'] = false;
1152 $nav_urls['info'] = false;
1153 $nav_urls['whatlinkshere'] = false;
1154 $nav_urls['recentchangeslinked'] = false;
1155 $nav_urls['contributions'] = false;
1156 $nav_urls['log'] = false;
1157 $nav_urls['blockip'] = false;
1158 $nav_urls['emailuser'] = false;
1160 // A print stylesheet is attached to all pages, but nobody ever
1161 // figures that out. :) Add a link...
1162 if ( $out->isArticle() ) {
1163 if ( !$out->isPrintable() ) {
1164 $nav_urls['print'] = array(
1165 'text' => $this->msg( 'printableversion' )->text(),
1166 'href' => $this->getTitle()->getLocalURL(
1167 $request->appendQueryValue( 'printable', 'yes', true ) )
1171 // Also add a "permalink" while we're at it
1172 $revid = $this->getRevisionId();
1173 if ( $revid ) {
1174 $nav_urls['permalink'] = array(
1175 'text' => $this->msg( 'permalink' )->text(),
1176 'href' => $this->getTitle()->getLocalURL( "oldid=$revid" )
1180 $nav_urls['info'] = array(
1181 'text' => $this->msg( 'pageinfo-toolboxlink' )->text(),
1182 'href' => $out->getTitle()->getLocalURL( "action=info" )
1185 // Use the copy of revision ID in case this undocumented, shady hook tries to mess with internals
1186 wfRunHooks( 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink',
1187 array( &$this, &$nav_urls, &$revid, &$revid ) );
1190 if ( $out->isArticleRelated() ) {
1191 $nav_urls['whatlinkshere'] = array(
1192 'href' => SpecialPage::getTitleFor( 'Whatlinkshere', $this->thispage )->getLocalUrl()
1194 if ( $this->getTitle()->getArticleID() ) {
1195 $nav_urls['recentchangeslinked'] = array(
1196 'href' => SpecialPage::getTitleFor( 'Recentchangeslinked', $this->thispage )->getLocalUrl()
1201 $user = $this->getRelevantUser();
1202 if ( $user ) {
1203 $rootUser = $user->getName();
1205 $nav_urls['contributions'] = array(
1206 'href' => self::makeSpecialUrlSubpage( 'Contributions', $rootUser )
1209 $nav_urls['log'] = array(
1210 'href' => self::makeSpecialUrlSubpage( 'Log', $rootUser )
1213 if ( $this->getUser()->isAllowed( 'block' ) ) {
1214 $nav_urls['blockip'] = array(
1215 'href' => self::makeSpecialUrlSubpage( 'Block', $rootUser )
1219 if ( $this->showEmailUser( $user ) ) {
1220 $nav_urls['emailuser'] = array(
1221 'href' => self::makeSpecialUrlSubpage( 'Emailuser', $rootUser )
1226 wfProfileOut( __METHOD__ );
1227 return $nav_urls;
1231 * Generate strings used for xml 'id' names
1232 * @return string
1233 * @private
1235 function getNameSpaceKey() {
1236 return $this->getTitle()->getNamespaceKey();
1239 public function commonPrintStylesheet() {
1240 return false;
1245 * Generic wrapper for template functions, with interface
1246 * compatible with what we use of PHPTAL 0.7.
1247 * @ingroup Skins
1249 abstract class QuickTemplate {
1251 * Constructor
1253 function __construct() {
1254 $this->data = array();
1255 $this->translator = new MediaWiki_I18N();
1259 * Sets the value $value to $name
1260 * @param $name
1261 * @param $value
1263 public function set( $name, $value ) {
1264 $this->data[$name] = $value;
1268 * @param $name
1269 * @param $value
1271 public function setRef( $name, &$value ) {
1272 $this->data[$name] =& $value;
1276 * @param $t
1278 public function setTranslator( &$t ) {
1279 $this->translator = &$t;
1283 * Main function, used by classes that subclass QuickTemplate
1284 * to show the actual HTML output
1286 abstract public function execute();
1289 * @private
1291 function text( $str ) {
1292 echo htmlspecialchars( $this->data[$str] );
1296 * @private
1298 function jstext( $str ) {
1299 echo Xml::escapeJsString( $this->data[$str] );
1303 * @private
1305 function html( $str ) {
1306 echo $this->data[$str];
1310 * @private
1312 function msg( $str ) {
1313 echo htmlspecialchars( $this->translator->translate( $str ) );
1317 * @private
1319 function msgHtml( $str ) {
1320 echo $this->translator->translate( $str );
1324 * An ugly, ugly hack.
1325 * @private
1327 function msgWiki( $str ) {
1328 global $wgOut;
1330 $text = $this->translator->translate( $str );
1331 echo $wgOut->parse( $text );
1335 * @private
1336 * @return bool
1338 function haveData( $str ) {
1339 return isset( $this->data[$str] );
1343 * @private
1345 * @return bool
1347 function haveMsg( $str ) {
1348 $msg = $this->translator->translate( $str );
1349 return ( $msg != '-' ) && ( $msg != '' ); # ????
1353 * Get the Skin object related to this object
1355 * @return Skin object
1357 public function getSkin() {
1358 return $this->data['skin'];
1363 * New base template for a skin's template extended from QuickTemplate
1364 * this class features helper methods that provide common ways of interacting
1365 * with the data stored in the QuickTemplate
1367 abstract class BaseTemplate extends QuickTemplate {
1370 * Get a Message object with its context set
1372 * @param $name string message name
1373 * @return Message
1375 public function getMsg( $name ) {
1376 return $this->getSkin()->msg( $name );
1379 function msg( $str ) {
1380 echo $this->getMsg( $str )->escaped();
1383 function msgHtml( $str ) {
1384 echo $this->getMsg( $str )->text();
1387 function msgWiki( $str ) {
1388 echo $this->getMsg( $str )->parseAsBlock();
1392 * Create an array of common toolbox items from the data in the quicktemplate
1393 * stored by SkinTemplate.
1394 * The resulting array is built acording to a format intended to be passed
1395 * through makeListItem to generate the html.
1396 * @return array
1398 function getToolbox() {
1399 wfProfileIn( __METHOD__ );
1401 $toolbox = array();
1402 if ( isset( $this->data['nav_urls']['whatlinkshere'] ) && $this->data['nav_urls']['whatlinkshere'] ) {
1403 $toolbox['whatlinkshere'] = $this->data['nav_urls']['whatlinkshere'];
1404 $toolbox['whatlinkshere']['id'] = 't-whatlinkshere';
1406 if ( isset( $this->data['nav_urls']['recentchangeslinked'] ) && $this->data['nav_urls']['recentchangeslinked'] ) {
1407 $toolbox['recentchangeslinked'] = $this->data['nav_urls']['recentchangeslinked'];
1408 $toolbox['recentchangeslinked']['msg'] = 'recentchangeslinked-toolbox';
1409 $toolbox['recentchangeslinked']['id'] = 't-recentchangeslinked';
1411 if ( isset( $this->data['feeds'] ) && $this->data['feeds'] ) {
1412 $toolbox['feeds']['id'] = 'feedlinks';
1413 $toolbox['feeds']['links'] = array();
1414 foreach ( $this->data['feeds'] as $key => $feed ) {
1415 $toolbox['feeds']['links'][$key] = $feed;
1416 $toolbox['feeds']['links'][$key]['id'] = "feed-$key";
1417 $toolbox['feeds']['links'][$key]['rel'] = 'alternate';
1418 $toolbox['feeds']['links'][$key]['type'] = "application/{$key}+xml";
1419 $toolbox['feeds']['links'][$key]['class'] = 'feedlink';
1422 foreach ( array( 'contributions', 'log', 'blockip', 'emailuser', 'upload', 'specialpages' ) as $special ) {
1423 if ( isset( $this->data['nav_urls'][$special] ) && $this->data['nav_urls'][$special] ) {
1424 $toolbox[$special] = $this->data['nav_urls'][$special];
1425 $toolbox[$special]['id'] = "t-$special";
1428 if ( isset( $this->data['nav_urls']['print'] ) && $this->data['nav_urls']['print'] ) {
1429 $toolbox['print'] = $this->data['nav_urls']['print'];
1430 $toolbox['print']['id'] = 't-print';
1431 $toolbox['print']['rel'] = 'alternate';
1432 $toolbox['print']['msg'] = 'printableversion';
1434 if ( isset( $this->data['nav_urls']['permalink'] ) && $this->data['nav_urls']['permalink'] ) {
1435 $toolbox['permalink'] = $this->data['nav_urls']['permalink'];
1436 if ( $toolbox['permalink']['href'] === '' ) {
1437 unset( $toolbox['permalink']['href'] );
1438 $toolbox['ispermalink']['tooltiponly'] = true;
1439 $toolbox['ispermalink']['id'] = 't-ispermalink';
1440 $toolbox['ispermalink']['msg'] = 'permalink';
1441 } else {
1442 $toolbox['permalink']['id'] = 't-permalink';
1445 if ( isset( $this->data['nav_urls']['info'] ) && $this->data['nav_urls']['info'] ) {
1446 $toolbox['info'] = $this->data['nav_urls']['info'];
1447 $toolbox['info']['id'] = 't-info';
1450 wfRunHooks( 'BaseTemplateToolbox', array( &$this, &$toolbox ) );
1451 wfProfileOut( __METHOD__ );
1452 return $toolbox;
1456 * Create an array of personal tools items from the data in the quicktemplate
1457 * stored by SkinTemplate.
1458 * The resulting array is built acording to a format intended to be passed
1459 * through makeListItem to generate the html.
1460 * This is in reality the same list as already stored in personal_urls
1461 * however it is reformatted so that you can just pass the individual items
1462 * to makeListItem instead of hardcoding the element creation boilerplate.
1463 * @return array
1465 function getPersonalTools() {
1466 $personal_tools = array();
1467 foreach ( $this->data['personal_urls'] as $key => $plink ) {
1468 # The class on a personal_urls item is meant to go on the <a> instead
1469 # of the <li> so we have to use a single item "links" array instead
1470 # of using most of the personal_url's keys directly.
1471 $ptool = array(
1472 'links' => array(
1473 array( 'single-id' => "pt-$key" ),
1475 'id' => "pt-$key",
1477 if ( isset( $plink['active'] ) ) {
1478 $ptool['active'] = $plink['active'];
1480 foreach ( array( 'href', 'class', 'text' ) as $k ) {
1481 if ( isset( $plink[$k] ) )
1482 $ptool['links'][0][$k] = $plink[$k];
1484 $personal_tools[$key] = $ptool;
1486 return $personal_tools;
1489 function getSidebar( $options = array() ) {
1490 // Force the rendering of the following portals
1491 $sidebar = $this->data['sidebar'];
1492 if ( !isset( $sidebar['SEARCH'] ) ) {
1493 $sidebar['SEARCH'] = true;
1495 if ( !isset( $sidebar['TOOLBOX'] ) ) {
1496 $sidebar['TOOLBOX'] = true;
1498 if ( !isset( $sidebar['LANGUAGES'] ) ) {
1499 $sidebar['LANGUAGES'] = true;
1502 if ( !isset( $options['search'] ) || $options['search'] !== true ) {
1503 unset( $sidebar['SEARCH'] );
1505 if ( isset( $options['toolbox'] ) && $options['toolbox'] === false ) {
1506 unset( $sidebar['TOOLBOX'] );
1508 if ( isset( $options['languages'] ) && $options['languages'] === false ) {
1509 unset( $sidebar['LANGUAGES'] );
1512 $boxes = array();
1513 foreach ( $sidebar as $boxName => $content ) {
1514 if ( $content === false ) {
1515 continue;
1517 switch ( $boxName ) {
1518 case 'SEARCH':
1519 // Search is a special case, skins should custom implement this
1520 $boxes[$boxName] = array(
1521 'id' => 'p-search',
1522 'header' => $this->getMsg( 'search' )->text(),
1523 'generated' => false,
1524 'content' => true,
1526 break;
1527 case 'TOOLBOX':
1528 $msgObj = $this->getMsg( 'toolbox' );
1529 $boxes[$boxName] = array(
1530 'id' => 'p-tb',
1531 'header' => $msgObj->exists() ? $msgObj->text() : 'toolbox',
1532 'generated' => false,
1533 'content' => $this->getToolbox(),
1535 break;
1536 case 'LANGUAGES':
1537 if ( $this->data['language_urls'] ) {
1538 $msgObj = $this->getMsg( 'otherlanguages' );
1539 $boxes[$boxName] = array(
1540 'id' => 'p-lang',
1541 'header' => $msgObj->exists() ? $msgObj->text() : 'otherlanguages',
1542 'generated' => false,
1543 'content' => $this->data['language_urls'],
1546 break;
1547 default:
1548 $msgObj = $this->getMsg( $boxName );
1549 $boxes[$boxName] = array(
1550 'id' => "p-$boxName",
1551 'header' => $msgObj->exists() ? $msgObj->text() : $boxName,
1552 'generated' => true,
1553 'content' => $content,
1555 break;
1559 // HACK: Compatibility with extensions still using SkinTemplateToolboxEnd
1560 $hookContents = null;
1561 if ( isset( $boxes['TOOLBOX'] ) ) {
1562 ob_start();
1563 // We pass an extra 'true' at the end so extensions using BaseTemplateToolbox
1564 // can abort and avoid outputting double toolbox links
1565 wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this, true ) );
1566 $hookContents = ob_get_contents();
1567 ob_end_clean();
1568 if ( !trim( $hookContents ) ) {
1569 $hookContents = null;
1572 // END hack
1574 if ( isset( $options['htmlOnly'] ) && $options['htmlOnly'] === true ) {
1575 foreach ( $boxes as $boxName => $box ) {
1576 if ( is_array( $box['content'] ) ) {
1577 $content = '<ul>';
1578 foreach ( $box['content'] as $key => $val ) {
1579 $content .= "\n " . $this->makeListItem( $key, $val );
1581 // HACK, shove the toolbox end onto the toolbox if we're rendering itself
1582 if ( $hookContents ) {
1583 $content .= "\n $hookContents";
1585 // END hack
1586 $content .= "\n</ul>\n";
1587 $boxes[$boxName]['content'] = $content;
1590 } else {
1591 if ( $hookContents ) {
1592 $boxes['TOOLBOXEND'] = array(
1593 'id' => 'p-toolboxend',
1594 'header' => $boxes['TOOLBOX']['header'],
1595 'generated' => false,
1596 'content' => "<ul>{$hookContents}</ul>",
1598 // HACK: Make sure that TOOLBOXEND is sorted next to TOOLBOX
1599 $boxes2 = array();
1600 foreach ( $boxes as $key => $box ) {
1601 if ( $key === 'TOOLBOXEND' ) {
1602 continue;
1604 $boxes2[$key] = $box;
1605 if ( $key === 'TOOLBOX' ) {
1606 $boxes2['TOOLBOXEND'] = $boxes['TOOLBOXEND'];
1609 $boxes = $boxes2;
1610 // END hack
1614 return $boxes;
1618 * Makes a link, usually used by makeListItem to generate a link for an item
1619 * in a list used in navigation lists, portlets, portals, sidebars, etc...
1621 * @param $key string usually a key from the list you are generating this
1622 * link from.
1623 * @param $item array contains some of a specific set of keys.
1625 * The text of the link will be generated either from the contents of the
1626 * "text" key in the $item array, if a "msg" key is present a message by
1627 * that name will be used, and if neither of those are set the $key will be
1628 * used as a message name.
1630 * If a "href" key is not present makeLink will just output htmlescaped text.
1631 * The "href", "id", "class", "rel", and "type" keys are used as attributes
1632 * for the link if present.
1634 * If an "id" or "single-id" (if you don't want the actual id to be output
1635 * on the link) is present it will be used to generate a tooltip and
1636 * accesskey for the link.
1638 * If you don't want an accesskey, set $item['tooltiponly'] = true;
1640 * @param $options array can be used to affect the output of a link.
1641 * Possible options are:
1642 * - 'text-wrapper' key to specify a list of elements to wrap the text of
1643 * a link in. This should be an array of arrays containing a 'tag' and
1644 * optionally an 'attributes' key. If you only have one element you don't
1645 * need to wrap it in another array. eg: To use <a><span>...</span></a>
1646 * in all links use array( 'text-wrapper' => array( 'tag' => 'span' ) )
1647 * for your options.
1648 * - 'link-class' key can be used to specify additional classes to apply
1649 * to all links.
1650 * - 'link-fallback' can be used to specify a tag to use instead of "<a>"
1651 * if there is no link. eg: If you specify 'link-fallback' => 'span' than
1652 * any non-link will output a "<span>" instead of just text.
1654 * @return string
1656 function makeLink( $key, $item, $options = array() ) {
1657 if ( isset( $item['text'] ) ) {
1658 $text = $item['text'];
1659 } else {
1660 $text = $this->translator->translate( isset( $item['msg'] ) ? $item['msg'] : $key );
1663 $html = htmlspecialchars( $text );
1665 if ( isset( $options['text-wrapper'] ) ) {
1666 $wrapper = $options['text-wrapper'];
1667 if ( isset( $wrapper['tag'] ) ) {
1668 $wrapper = array( $wrapper );
1670 while ( count( $wrapper ) > 0 ) {
1671 $element = array_pop( $wrapper );
1672 $html = Html::rawElement( $element['tag'], isset( $element['attributes'] ) ? $element['attributes'] : null, $html );
1676 if ( isset( $item['href'] ) || isset( $options['link-fallback'] ) ) {
1677 $attrs = $item;
1678 foreach ( array( 'single-id', 'text', 'msg', 'tooltiponly' ) as $k ) {
1679 unset( $attrs[$k] );
1682 if ( isset( $item['id'] ) && !isset( $item['single-id'] ) ) {
1683 $item['single-id'] = $item['id'];
1685 if ( isset( $item['single-id'] ) ) {
1686 if ( isset( $item['tooltiponly'] ) && $item['tooltiponly'] ) {
1687 $title = Linker::titleAttrib( $item['single-id'] );
1688 if ( $title !== false ) {
1689 $attrs['title'] = $title;
1691 } else {
1692 $tip = Linker::tooltipAndAccesskeyAttribs( $item['single-id'] );
1693 if ( isset( $tip['title'] ) && $tip['title'] !== false ) {
1694 $attrs['title'] = $tip['title'];
1696 if ( isset( $tip['accesskey'] ) && $tip['accesskey'] !== false ) {
1697 $attrs['accesskey'] = $tip['accesskey'];
1701 if ( isset( $options['link-class'] ) ) {
1702 if ( isset( $attrs['class'] ) ) {
1703 $attrs['class'] .= " {$options['link-class']}";
1704 } else {
1705 $attrs['class'] = $options['link-class'];
1708 $html = Html::rawElement( isset( $attrs['href'] ) ? 'a' : $options['link-fallback'], $attrs, $html );
1711 return $html;
1715 * Generates a list item for a navigation, portlet, portal, sidebar... list
1717 * @param $key string, usually a key from the list you are generating this link from.
1718 * @param $item array, of list item data containing some of a specific set of keys.
1719 * The "id" and "class" keys will be used as attributes for the list item,
1720 * if "active" contains a value of true a "active" class will also be appended to class.
1722 * @param $options array
1724 * If you want something other than a "<li>" you can pass a tag name such as
1725 * "tag" => "span" in the $options array to change the tag used.
1726 * link/content data for the list item may come in one of two forms
1727 * A "links" key may be used, in which case it should contain an array with
1728 * a list of links to include inside the list item, see makeLink for the
1729 * format of individual links array items.
1731 * Otherwise the relevant keys from the list item $item array will be passed
1732 * to makeLink instead. Note however that "id" and "class" are used by the
1733 * list item directly so they will not be passed to makeLink
1734 * (however the link will still support a tooltip and accesskey from it)
1735 * If you need an id or class on a single link you should include a "links"
1736 * array with just one link item inside of it.
1737 * $options is also passed on to makeLink calls
1739 * @return string
1741 function makeListItem( $key, $item, $options = array() ) {
1742 if ( isset( $item['links'] ) ) {
1743 $html = '';
1744 foreach ( $item['links'] as $linkKey => $link ) {
1745 $html .= $this->makeLink( $linkKey, $link, $options );
1747 } else {
1748 $link = $item;
1749 // These keys are used by makeListItem and shouldn't be passed on to the link
1750 foreach ( array( 'id', 'class', 'active', 'tag' ) as $k ) {
1751 unset( $link[$k] );
1753 if ( isset( $item['id'] ) ) {
1754 // The id goes on the <li> not on the <a> for single links
1755 // but makeSidebarLink still needs to know what id to use when
1756 // generating tooltips and accesskeys.
1757 $link['single-id'] = $item['id'];
1759 $html = $this->makeLink( $key, $link, $options );
1762 $attrs = array();
1763 foreach ( array( 'id', 'class' ) as $attr ) {
1764 if ( isset( $item[$attr] ) ) {
1765 $attrs[$attr] = $item[$attr];
1768 if ( isset( $item['active'] ) && $item['active'] ) {
1769 if ( !isset( $attrs['class'] ) ) {
1770 $attrs['class'] = '';
1772 $attrs['class'] .= ' active';
1773 $attrs['class'] = trim( $attrs['class'] );
1775 return Html::rawElement( isset( $options['tag'] ) ? $options['tag'] : 'li', $attrs, $html );
1778 function makeSearchInput( $attrs = array() ) {
1779 $realAttrs = array(
1780 'type' => 'search',
1781 'name' => 'search',
1782 'value' => isset( $this->data['search'] ) ? $this->data['search'] : '',
1784 $realAttrs = array_merge( $realAttrs, Linker::tooltipAndAccesskeyAttribs( 'search' ), $attrs );
1785 return Html::element( 'input', $realAttrs );
1788 function makeSearchButton( $mode, $attrs = array() ) {
1789 switch( $mode ) {
1790 case 'go':
1791 case 'fulltext':
1792 $realAttrs = array(
1793 'type' => 'submit',
1794 'name' => $mode,
1795 'value' => $this->translator->translate(
1796 $mode == 'go' ? 'searcharticle' : 'searchbutton' ),
1798 $realAttrs = array_merge(
1799 $realAttrs,
1800 Linker::tooltipAndAccesskeyAttribs( "search-$mode" ),
1801 $attrs
1803 return Html::element( 'input', $realAttrs );
1804 case 'image':
1805 $buttonAttrs = array(
1806 'type' => 'submit',
1807 'name' => 'button',
1809 $buttonAttrs = array_merge(
1810 $buttonAttrs,
1811 Linker::tooltipAndAccesskeyAttribs( 'search-fulltext' ),
1812 $attrs
1814 unset( $buttonAttrs['src'] );
1815 unset( $buttonAttrs['alt'] );
1816 unset( $buttonAttrs['width'] );
1817 unset( $buttonAttrs['height'] );
1818 $imgAttrs = array(
1819 'src' => $attrs['src'],
1820 'alt' => isset( $attrs['alt'] )
1821 ? $attrs['alt']
1822 : $this->translator->translate( 'searchbutton' ),
1823 'width' => isset( $attrs['width'] ) ? $attrs['width'] : null,
1824 'height' => isset( $attrs['height'] ) ? $attrs['height'] : null,
1826 return Html::rawElement( 'button', $buttonAttrs, Html::element( 'img', $imgAttrs ) );
1827 default:
1828 throw new MWException( 'Unknown mode passed to BaseTemplate::makeSearchButton' );
1833 * Returns an array of footerlinks trimmed down to only those footer links that
1834 * are valid.
1835 * If you pass "flat" as an option then the returned array will be a flat array
1836 * of footer icons instead of a key/value array of footerlinks arrays broken
1837 * up into categories.
1838 * @return array|mixed
1840 function getFooterLinks( $option = null ) {
1841 $footerlinks = $this->data['footerlinks'];
1843 // Reduce footer links down to only those which are being used
1844 $validFooterLinks = array();
1845 foreach( $footerlinks as $category => $links ) {
1846 $validFooterLinks[$category] = array();
1847 foreach( $links as $link ) {
1848 if( isset( $this->data[$link] ) && $this->data[$link] ) {
1849 $validFooterLinks[$category][] = $link;
1852 if ( count( $validFooterLinks[$category] ) <= 0 ) {
1853 unset( $validFooterLinks[$category] );
1857 if ( $option == 'flat' ) {
1858 // fold footerlinks into a single array using a bit of trickery
1859 $validFooterLinks = call_user_func_array(
1860 'array_merge',
1861 array_values( $validFooterLinks )
1865 return $validFooterLinks;
1869 * Returns an array of footer icons filtered down by options relevant to how
1870 * the skin wishes to display them.
1871 * If you pass "icononly" as the option all footer icons which do not have an
1872 * image icon set will be filtered out.
1873 * If you pass "nocopyright" then MediaWiki's copyright icon will not be included
1874 * in the list of footer icons. This is mostly useful for skins which only
1875 * display the text from footericons instead of the images and don't want a
1876 * duplicate copyright statement because footerlinks already rendered one.
1877 * @return
1879 function getFooterIcons( $option = null ) {
1880 // Generate additional footer icons
1881 $footericons = $this->data['footericons'];
1883 if ( $option == 'icononly' ) {
1884 // Unset any icons which don't have an image
1885 foreach ( $footericons as &$footerIconsBlock ) {
1886 foreach ( $footerIconsBlock as $footerIconKey => $footerIcon ) {
1887 if ( !is_string( $footerIcon ) && !isset( $footerIcon['src'] ) ) {
1888 unset( $footerIconsBlock[$footerIconKey] );
1892 // Redo removal of any empty blocks
1893 foreach ( $footericons as $footerIconsKey => &$footerIconsBlock ) {
1894 if ( count( $footerIconsBlock ) <= 0 ) {
1895 unset( $footericons[$footerIconsKey] );
1898 } elseif ( $option == 'nocopyright' ) {
1899 unset( $footericons['copyright']['copyright'] );
1900 if ( count( $footericons['copyright'] ) <= 0 ) {
1901 unset( $footericons['copyright'] );
1905 return $footericons;
1909 * Output the basic end-page trail including bottomscripts, reporttime, and
1910 * debug stuff. This should be called right before outputting the closing
1911 * body and html tags.
1913 function printTrail() { ?>
1914 <?php $this->html( 'bottomscripts' ); /* JS call to runBodyOnloadHook */ ?>
1915 <?php $this->html( 'reporttime' ) ?>
1916 <?php echo MWDebug::getDebugHTML( $this->getSkin()->getContext() );