(bug 30192) Thumbnails of archived images don't get deleted. Patch by Russ and Sam...
[mediawiki.git] / includes / SkinTemplate.php
blobe3435c4b6bc74d71ff8e2952d7b1aec8a3aed8c8
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 if ( !defined( 'MEDIAWIKI' ) ) {
24 die( 1 );
27 /**
28 * Wrapper object for MediaWiki's localization functions,
29 * to be passed to the template engine.
31 * @private
32 * @ingroup Skins
34 class MediaWiki_I18N {
35 var $_context = array();
37 function set( $varName, $value ) {
38 $this->_context[$varName] = $value;
41 function translate( $value ) {
42 wfProfileIn( __METHOD__ );
44 // Hack for i18n:attributes in PHPTAL 1.0.0 dev version as of 2004-10-23
45 $value = preg_replace( '/^string:/', '', $value );
47 $value = wfMsg( $value );
48 // interpolate variables
49 $m = array();
50 while( preg_match( '/\$([0-9]*?)/sm', $value, $m ) ) {
51 list( $src, $var ) = $m;
52 wfSuppressWarnings();
53 $varValue = $this->_context[$var];
54 wfRestoreWarnings();
55 $value = str_replace( $src, $varValue, $value );
57 wfProfileOut( __METHOD__ );
58 return $value;
62 /**
63 * Template-filler skin base class
64 * Formerly generic PHPTal (http://phptal.sourceforge.net/) skin
65 * Based on Brion's smarty skin
66 * @copyright Copyright © Gabriel Wicke -- http://www.aulinx.de/
68 * @todo Needs some serious refactoring into functions that correspond
69 * to the computations individual esi snippets need. Most importantly no body
70 * parsing for most of those of course.
72 * @ingroup Skins
74 class SkinTemplate extends Skin {
75 /**#@+
76 * @private
79 /**
80 * Name of our skin, it probably needs to be all lower case. Child classes
81 * should override the default.
83 var $skinname = 'monobook';
85 /**
86 * Stylesheets set to use. Subdirectory in skins/ where various stylesheets
87 * are located. Child classes should override the default.
89 var $stylename = 'monobook';
91 /**
92 * For QuickTemplate, the name of the subclass which will actually fill the
93 * template. Child classes should override the default.
95 var $template = 'QuickTemplate';
97 /**
98 * Whether this skin use OutputPage::headElement() to generate the <head>
99 * tag
101 var $useHeadElement = false;
103 /**#@-*/
106 * Add specific styles for this skin
108 * @param $out OutputPage
110 function setupSkinUserCss( OutputPage $out ) {
111 $out->addModuleStyles( array( 'mediawiki.legacy.shared', 'mediawiki.legacy.commonPrint' ) );
115 * Create the template engine object; we feed it a bunch of data
116 * and eventually it spits out some HTML. Should have interface
117 * roughly equivalent to PHPTAL 0.7.
119 * @param $classname String
120 * @param $repository string: subdirectory where we keep template files
121 * @param $cache_dir string
122 * @return QuickTemplate
123 * @private
125 function setupTemplate( $classname, $repository = false, $cache_dir = false ) {
126 return new $classname();
130 * initialize various variables and generate the template
132 * @param $out OutputPage
134 function outputPage( OutputPage $out=null ) {
135 global $wgContLang;
136 global $wgScript, $wgStylePath;
137 global $wgMimeType, $wgJsMimeType;
138 global $wgXhtmlDefaultNamespace, $wgXhtmlNamespaces, $wgHtml5Version;
139 global $wgDisableCounters, $wgSitename, $wgLogo, $wgHideInterlanguageLinks;
140 global $wgMaxCredits, $wgShowCreditsIfMax;
141 global $wgPageShowWatchingUsers;
142 global $wgUseTrackbacks, $wgUseSiteJs, $wgDebugComments;
143 global $wgArticlePath, $wgScriptPath, $wgServer;
145 wfProfileIn( __METHOD__ );
146 Profiler::instance()->setTemplated( true );
148 $oldContext = null;
149 if ( $out !== null ) {
150 // @todo Add wfDeprecated in 1.20
151 $oldContext = $this->getContext();
152 $this->setContext( $out->getContext() );
155 $out = $this->getOutput();
156 $request = $this->getRequest();
157 $user = $this->getUser();
159 wfProfileIn( __METHOD__ . '-init' );
160 $this->initPage( $out );
162 $tpl = $this->setupTemplate( $this->template, 'skins' );
163 wfProfileOut( __METHOD__ . '-init' );
165 wfProfileIn( __METHOD__ . '-stuff' );
166 $this->thispage = $this->getTitle()->getPrefixedDBkey();
167 $this->userpage = $user->getUserPage()->getPrefixedText();
168 $query = array();
169 if ( !$request->wasPosted() ) {
170 $query = $request->getValues();
171 unset( $query['title'] );
172 unset( $query['returnto'] );
173 unset( $query['returntoquery'] );
175 $this->thisquery = wfArrayToCGI( $query );
176 $this->loggedin = $user->isLoggedIn();
177 $this->username = $user->getName();
179 if ( $user->isLoggedIn() || $this->showIPinHeader() ) {
180 $this->userpageUrlDetails = self::makeUrlDetails( $this->userpage );
181 } else {
182 # This won't be used in the standard skins, but we define it to preserve the interface
183 # To save time, we check for existence
184 $this->userpageUrlDetails = self::makeKnownUrlDetails( $this->userpage );
187 $this->titletxt = $this->getTitle()->getPrefixedText();
188 wfProfileOut( __METHOD__ . '-stuff' );
190 wfProfileIn( __METHOD__ . '-stuff-head' );
191 if ( !$this->useHeadElement ) {
192 $tpl->set( 'pagecss', false );
193 $tpl->set( 'usercss', false );
195 $this->userjs = $this->userjsprev = false;
196 # @todo FIXME: This is the only use of OutputPage::isUserJsAllowed() anywhere; can we
197 # get rid of it? For that matter, why is any of this here at all?
198 $this->setupUserJs( $out->isUserJsAllowed() );
199 $tpl->setRef( 'userjs', $this->userjs );
200 $tpl->setRef( 'userjsprev', $this->userjsprev );
202 if( $wgUseSiteJs ) {
203 $jsCache = $this->loggedin ? '&smaxage=0' : '';
204 $tpl->set( 'jsvarurl',
205 self::makeUrl( '-',
206 "action=raw$jsCache&gen=js&useskin=" .
207 urlencode( $this->getSkinName() ) ) );
208 } else {
209 $tpl->set( 'jsvarurl', false );
212 $tpl->setRef( 'xhtmldefaultnamespace', $wgXhtmlDefaultNamespace );
213 $tpl->set( 'xhtmlnamespaces', $wgXhtmlNamespaces );
214 $tpl->set( 'html5version', $wgHtml5Version );
215 $tpl->set( 'headlinks', $out->getHeadLinks() );
216 $tpl->set( 'csslinks', $out->buildCssLinks() );
218 if( $wgUseTrackbacks && $out->isArticleRelated() ) {
219 $tpl->set( 'trackbackhtml', $out->getTitle()->trackbackRDF() );
220 } else {
221 $tpl->set( 'trackbackhtml', null );
224 $tpl->set( 'pageclass', $this->getPageClasses( $this->getTitle() ) );
225 $tpl->set( 'skinnameclass', ( 'skin-' . Sanitizer::escapeClass( $this->getSkinName() ) ) );
227 wfProfileOut( __METHOD__ . '-stuff-head' );
229 wfProfileIn( __METHOD__ . '-stuff2' );
230 $tpl->set( 'title', $out->getPageTitle() );
231 $tpl->set( 'pagetitle', $out->getHTMLTitle() );
232 $tpl->set( 'displaytitle', $out->mPageLinkTitle );
234 $tpl->set( 'titleprefixeddbkey', $this->getTitle()->getPrefixedDBKey() );
235 $tpl->set( 'titletext', $this->getTitle()->getText() );
236 $tpl->set( 'articleid', $this->getTitle()->getArticleId() );
238 $tpl->set( 'isarticle', $out->isArticle() );
240 $tpl->setRef( 'thispage', $this->thispage );
241 $subpagestr = $this->subPageSubtitle();
242 $tpl->set(
243 'subtitle', !empty( $subpagestr ) ?
244 '<span class="subpages">' . $subpagestr . '</span>' . $out->getSubtitle() :
245 $out->getSubtitle()
247 $undelete = $this->getUndeleteLink();
248 $tpl->set(
249 'undelete', !empty( $undelete ) ?
250 '<span class="subpages">' . $undelete . '</span>' :
254 $tpl->set( 'catlinks', $this->getCategories() );
255 if( $out->isSyndicated() ) {
256 $feeds = array();
257 foreach( $out->getSyndicationLinks() as $format => $link ) {
258 $feeds[$format] = array(
259 'text' => wfMsg( "feed-$format" ),
260 'href' => $link
263 $tpl->setRef( 'feeds', $feeds );
264 } else {
265 $tpl->set( 'feeds', false );
268 $tpl->setRef( 'mimetype', $wgMimeType );
269 $tpl->setRef( 'jsmimetype', $wgJsMimeType );
270 $tpl->set( 'charset', 'UTF-8' );
271 $tpl->setRef( 'wgScript', $wgScript );
272 $tpl->setRef( 'skinname', $this->skinname );
273 $tpl->set( 'skinclass', get_class( $this ) );
274 $tpl->setRef( 'stylename', $this->stylename );
275 $tpl->set( 'printable', $out->isPrintable() );
276 $tpl->set( 'handheld', $request->getBool( 'handheld' ) );
277 $tpl->setRef( 'loggedin', $this->loggedin );
278 $tpl->set( 'notspecialpage', $this->getTitle()->getNamespace() != NS_SPECIAL );
279 /* XXX currently unused, might get useful later
280 $tpl->set( 'editable', ( $this->getTitle()->getNamespace() != NS_SPECIAL ) );
281 $tpl->set( 'exists', $this->getTitle()->getArticleID() != 0 );
282 $tpl->set( 'watch', $this->getTitle()->userIsWatching() ? 'unwatch' : 'watch' );
283 $tpl->set( 'protect', count( $this->getTitle()->isProtected() ) ? 'unprotect' : 'protect' );
284 $tpl->set( 'helppage', wfMsg( 'helppage' ) );
286 $tpl->set( 'searchaction', $this->escapeSearchLink() );
287 $tpl->set( 'searchtitle', SpecialPage::getTitleFor( 'Search' )->getPrefixedDBKey() );
288 $tpl->set( 'search', trim( $request->getVal( 'search' ) ) );
289 $tpl->setRef( 'stylepath', $wgStylePath );
290 $tpl->setRef( 'articlepath', $wgArticlePath );
291 $tpl->setRef( 'scriptpath', $wgScriptPath );
292 $tpl->setRef( 'serverurl', $wgServer );
293 $tpl->setRef( 'logopath', $wgLogo );
294 $tpl->setRef( 'sitename', $wgSitename );
296 $contentlang = $wgContLang->getCode();
297 $contentdir = $wgContLang->getDir();
298 $userlang = $this->getLang()->getCode();
299 $userdir = $this->getLang()->getDir();
301 $tpl->set( 'lang', $userlang );
302 $tpl->set( 'dir', $userdir );
303 $tpl->set( 'rtl', $this->getLang()->isRTL() );
305 $tpl->set( 'capitalizeallnouns', $this->getLang()->capitalizeAllNouns() ? ' capitalize-all-nouns' : '' );
306 $tpl->set( 'showjumplinks', $user->getOption( 'showjumplinks' ) );
307 $tpl->set( 'username', $user->isAnon() ? null : $this->username );
308 $tpl->setRef( 'userpage', $this->userpage );
309 $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href'] );
310 $tpl->set( 'userlang', $userlang );
312 // Users can have their language set differently than the
313 // content of the wiki. For these users, tell the web browser
314 // that interface elements are in a different language.
315 $tpl->set( 'userlangattributes', '' );
316 $tpl->set( 'specialpageattributes', '' ); # obsolete
318 if ( $userlang !== $contentlang || $userdir !== $contentdir ) {
319 $attrs = " lang='$userlang' dir='$userdir'";
320 $tpl->set( 'userlangattributes', $attrs );
323 wfProfileOut( __METHOD__ . '-stuff2' );
325 wfProfileIn( __METHOD__ . '-stuff3' );
326 $tpl->set( 'newtalk', $this->getNewtalks() );
327 $tpl->setRef( 'skin', $this );
328 $tpl->set( 'logo', $this->logoText() );
330 $tpl->set( 'copyright', false );
331 $tpl->set( 'viewcount', false );
332 $tpl->set( 'lastmod', false );
333 $tpl->set( 'credits', false );
334 $tpl->set( 'numberofwatchingusers', false );
335 if ( $out->isArticle() && $this->getTitle()->exists() ) {
336 if ( $this->isRevisionCurrent() ) {
337 $article = new Article( $this->getTitle(), 0 );
338 if ( !$wgDisableCounters ) {
339 $viewcount = $this->getLang()->formatNum( $article->getCount() );
340 if ( $viewcount ) {
341 $tpl->set( 'viewcount', wfMsgExt( 'viewcount', array( 'parseinline' ), $viewcount ) );
345 if( $wgPageShowWatchingUsers ) {
346 $dbr = wfGetDB( DB_SLAVE );
347 $num = $dbr->selectField( 'watchlist', 'COUNT(*)',
348 array( 'wl_title' => $this->getTitle()->getDBkey(), 'wl_namespace' => $this->getTitle()->getNamespace() ),
349 __METHOD__
351 if( $num > 0 ) {
352 $tpl->set( 'numberofwatchingusers',
353 wfMsgExt( 'number_of_watching_users_pageview', array( 'parseinline' ),
354 $this->getLang()->formatNum( $num ) )
359 if ( $wgMaxCredits != 0 ) {
360 $tpl->set( 'credits', Action::factory( 'credits', $article )->getCredits( $wgMaxCredits, $wgShowCreditsIfMax ) );
361 } else {
362 $tpl->set( 'lastmod', $this->lastModified( $article ) );
365 $tpl->set( 'copyright', $this->getCopyright() );
367 wfProfileOut( __METHOD__ . '-stuff3' );
369 wfProfileIn( __METHOD__ . '-stuff4' );
370 $tpl->set( 'copyrightico', $this->getCopyrightIcon() );
371 $tpl->set( 'poweredbyico', $this->getPoweredBy() );
372 $tpl->set( 'disclaimer', $this->disclaimerLink() );
373 $tpl->set( 'privacy', $this->privacyLink() );
374 $tpl->set( 'about', $this->aboutLink() );
376 $tpl->set( 'footerlinks', array(
377 'info' => array(
378 'lastmod',
379 'viewcount',
380 'numberofwatchingusers',
381 'credits',
382 'copyright',
384 'places' => array(
385 'privacy',
386 'about',
387 'disclaimer',
389 ) );
391 global $wgFooterIcons;
392 $tpl->set( 'footericons', $wgFooterIcons );
393 foreach ( $tpl->data['footericons'] as $footerIconsKey => &$footerIconsBlock ) {
394 if ( count( $footerIconsBlock ) > 0 ) {
395 foreach ( $footerIconsBlock as &$footerIcon ) {
396 if ( isset( $footerIcon['src'] ) ) {
397 if ( !isset( $footerIcon['width'] ) ) {
398 $footerIcon['width'] = 88;
400 if ( !isset( $footerIcon['height'] ) ) {
401 $footerIcon['height'] = 31;
405 } else {
406 unset( $tpl->data['footericons'][$footerIconsKey] );
410 if ( $wgDebugComments ) {
411 $tpl->setRef( 'debug', $out->mDebugtext );
412 } else {
413 $tpl->set( 'debug', '' );
416 $tpl->set( 'reporttime', wfReportTime() );
417 $tpl->set( 'sitenotice', $this->getSiteNotice() );
418 $tpl->set( 'bottomscripts', $this->bottomScripts() );
419 $tpl->set( 'printfooter', $this->printSource() );
421 # Add a <div class="mw-content-ltr/rtl"> around the body text
422 # not for special pages or file pages AND only when viewing AND if the page exists
423 # (or is in MW namespace, because that has default content)
424 if( !in_array( $this->getTitle()->getNamespace(), array( NS_SPECIAL, NS_FILE ) ) &&
425 in_array( $request->getVal( 'action', 'view' ), array( 'view', 'historysubmit' ) ) &&
426 ( $this->getTitle()->exists() || $this->getTitle()->getNamespace() == NS_MEDIAWIKI ) ) {
427 $pageLang = $this->getTitle()->getPageLanguage();
428 $realBodyAttribs = array( 'lang' => $pageLang->getCode(), 'dir' => $pageLang->getDir(),
429 'class' => 'mw-content-'.$pageLang->getDir() );
430 $out->mBodytext = Html::rawElement( 'div', $realBodyAttribs, $out->mBodytext );
433 $tpl->setRef( 'bodytext', $out->mBodytext );
435 # Language links
436 $language_urls = array();
438 if ( !$wgHideInterlanguageLinks ) {
439 foreach( $out->getLanguageLinks() as $l ) {
440 $tmp = explode( ':', $l, 2 );
441 $class = 'interwiki-' . $tmp[0];
442 unset( $tmp );
443 $nt = Title::newFromText( $l );
444 if ( $nt ) {
445 $language_urls[] = array(
446 'href' => $nt->getFullURL(),
447 'text' => ( $wgContLang->getLanguageName( $nt->getInterwiki() ) != '' ?
448 $wgContLang->getLanguageName( $nt->getInterwiki() ) : $l ),
449 'title' => $nt->getText(),
450 'class' => $class
455 if( count( $language_urls ) ) {
456 $tpl->setRef( 'language_urls', $language_urls );
457 } else {
458 $tpl->set( 'language_urls', false );
460 wfProfileOut( __METHOD__ . '-stuff4' );
462 wfProfileIn( __METHOD__ . '-stuff5' );
463 # Personal toolbar
464 $tpl->set( 'personal_urls', $this->buildPersonalUrls() );
465 $content_navigation = $this->buildContentNavigationUrls();
466 $content_actions = $this->buildContentActionUrls( $content_navigation );
467 $tpl->setRef( 'content_navigation', $content_navigation );
468 $tpl->setRef( 'content_actions', $content_actions );
470 $tpl->set( 'sidebar', $this->buildSidebar() );
471 $tpl->set( 'nav_urls', $this->buildNavUrls() );
473 // Set the head scripts near the end, in case the above actions resulted in added scripts
474 if ( $this->useHeadElement ) {
475 $tpl->set( 'headelement', $out->headElement( $this ) );
476 } else {
477 $tpl->set( 'headscripts', $out->getScript() );
480 $tpl->set( 'debughtml', $this->generateDebugHTML() );
482 // original version by hansm
483 if( !wfRunHooks( 'SkinTemplateOutputPageBeforeExec', array( &$this, &$tpl ) ) ) {
484 wfDebug( __METHOD__ . ": Hook SkinTemplateOutputPageBeforeExec broke outputPage execution!\n" );
487 // Set the bodytext to another key so that skins can just output it on it's own
488 // and output printfooter and debughtml separately
489 $tpl->set( 'bodycontent', $tpl->data['bodytext'] );
491 // Append printfooter and debughtml onto bodytext so that skins that were already
492 // using bodytext before they were split out don't suddenly start not outputting information
493 $tpl->data['bodytext'] .= Html::element( 'div', array( 'class' => 'printfooter' ), "\n{$tpl->data['printfooter']}" ) . "\n";
494 $tpl->data['bodytext'] .= $tpl->data['debughtml'];
496 // allow extensions adding stuff after the page content.
497 // See Skin::afterContentHook() for further documentation.
498 $tpl->set( 'dataAfterContent', $this->afterContentHook() );
499 wfProfileOut( __METHOD__ . '-stuff5' );
501 // execute template
502 wfProfileIn( __METHOD__ . '-execute' );
503 $res = $tpl->execute();
504 wfProfileOut( __METHOD__ . '-execute' );
506 // result may be an error
507 $this->printOrError( $res );
509 if ( $oldContext ) {
510 $this->setContext( $oldContext );
512 wfProfileOut( __METHOD__ );
516 * Output the string, or print error message if it's
517 * an error object of the appropriate type.
518 * For the base class, assume strings all around.
520 * @param $str Mixed
521 * @private
523 function printOrError( $str ) {
524 echo $str;
528 * Output a boolean indiciating if buildPersonalUrls should output separate
529 * login and create account links or output a combined link
530 * By default we simply return a global config setting that affects most skins
531 * This is setup as a method so that like with $wgLogo and getLogo() a skin
532 * can override this setting and always output one or the other if it has
533 * a reason it can't output one of the two modes.
535 function useCombinedLoginLink() {
536 global $wgUseCombinedLoginLink;
537 return $wgUseCombinedLoginLink;
541 * build array of urls for personal toolbar
542 * @return array
544 protected function buildPersonalUrls() {
545 $title = $this->getTitle();
546 $request = $this->getRequest();
547 $pageurl = $title->getLocalURL();
548 wfProfileIn( __METHOD__ );
550 /* set up the default links for the personal toolbar */
551 $personal_urls = array();
553 $page = $request->getVal( 'returnto', $this->thispage );
554 $query = $request->getVal( 'returntoquery', $this->thisquery );
555 $a = array( 'returnto' => $page );
556 if( $query != '' ) {
557 $a['returntoquery'] = $query;
559 $returnto = wfArrayToCGI( $a );
560 if( $this->loggedin ) {
561 $personal_urls['userpage'] = array(
562 'text' => $this->username,
563 'href' => &$this->userpageUrlDetails['href'],
564 'class' => $this->userpageUrlDetails['exists'] ? false : 'new',
565 'active' => ( $this->userpageUrlDetails['href'] == $pageurl )
567 $usertalkUrlDetails = $this->makeTalkUrlDetails( $this->userpage );
568 $personal_urls['mytalk'] = array(
569 'text' => wfMsg( 'mytalk' ),
570 'href' => &$usertalkUrlDetails['href'],
571 'class' => $usertalkUrlDetails['exists'] ? false : 'new',
572 'active' => ( $usertalkUrlDetails['href'] == $pageurl )
574 $href = self::makeSpecialUrl( 'Preferences' );
575 $personal_urls['preferences'] = array(
576 'text' => wfMsg( 'mypreferences' ),
577 'href' => $href,
578 'active' => ( $href == $pageurl )
580 $href = self::makeSpecialUrl( 'Watchlist' );
581 $personal_urls['watchlist'] = array(
582 'text' => wfMsg( 'mywatchlist' ),
583 'href' => $href,
584 'active' => ( $href == $pageurl )
587 # We need to do an explicit check for Special:Contributions, as we
588 # have to match both the title, and the target (which could come
589 # from request values or be specified in "sub page" form. The plot
590 # thickens, because $wgTitle is altered for special pages, so doesn't
591 # contain the original alias-with-subpage.
592 $origTitle = Title::newFromText( $request->getText( 'title' ) );
593 if( $origTitle instanceof Title && $origTitle->getNamespace() == NS_SPECIAL ) {
594 list( $spName, $spPar ) = SpecialPageFactory::resolveAlias( $origTitle->getText() );
595 $active = $spName == 'Contributions'
596 && ( ( $spPar && $spPar == $this->username )
597 || $request->getText( 'target' ) == $this->username );
598 } else {
599 $active = false;
602 $href = self::makeSpecialUrlSubpage( 'Contributions', $this->username );
603 $personal_urls['mycontris'] = array(
604 'text' => wfMsg( 'mycontris' ),
605 'href' => $href,
606 'active' => $active
608 $personal_urls['logout'] = array(
609 'text' => wfMsg( 'userlogout' ),
610 'href' => self::makeSpecialUrl( 'Userlogout',
611 // userlogout link must always contain an & character, otherwise we might not be able
612 // to detect a buggy precaching proxy (bug 17790)
613 $title->isSpecial( 'Preferences' ) ? 'noreturnto' : $returnto
615 'active' => false
617 } else {
618 $useCombinedLoginLink = $this->useCombinedLoginLink();
619 $loginlink = $this->getUser()->isAllowed( 'createaccount' ) && $useCombinedLoginLink
620 ? 'nav-login-createaccount'
621 : 'login';
622 $is_signup = $request->getText('type') == "signup";
624 # anonlogin & login are the same
625 $login_url = array(
626 'text' => wfMsg( $loginlink ),
627 'href' => self::makeSpecialUrl( 'Userlogin', $returnto ),
628 'active' => $title->isSpecial( 'Userlogin' ) && ( $loginlink == "nav-login-createaccount" || !$is_signup )
630 if ( $this->getUser()->isAllowed( 'createaccount' ) && !$useCombinedLoginLink ) {
631 $createaccount_url = array(
632 'text' => wfMsg( 'createaccount' ),
633 'href' => self::makeSpecialUrl( 'Userlogin', "$returnto&type=signup" ),
634 'active' => $title->isSpecial( 'Userlogin' ) && $is_signup
637 global $wgServer, $wgSecureLogin;
638 if( substr( $wgServer, 0, 5 ) === 'http:' && $wgSecureLogin ) {
639 $title = SpecialPage::getTitleFor( 'Userlogin' );
640 $https_url = preg_replace( '/^http:/', 'https:', $title->getFullURL() );
641 $login_url['href'] = $https_url;
642 # @todo FIXME: Class depends on skin
643 $login_url['class'] = 'link-https';
644 if ( isset($createaccount_url) ) {
645 $https_url = preg_replace( '/^http:/', 'https:',
646 $title->getFullURL("type=signup") );
647 $createaccount_url['href'] = $https_url;
648 # @todo FIXME: Class depends on skin
649 $createaccount_url['class'] = 'link-https';
654 if( $this->showIPinHeader() ) {
655 $href = &$this->userpageUrlDetails['href'];
656 $personal_urls['anonuserpage'] = array(
657 'text' => $this->username,
658 'href' => $href,
659 'class' => $this->userpageUrlDetails['exists'] ? false : 'new',
660 'active' => ( $pageurl == $href )
662 $usertalkUrlDetails = $this->makeTalkUrlDetails( $this->userpage );
663 $href = &$usertalkUrlDetails['href'];
664 $personal_urls['anontalk'] = array(
665 'text' => wfMsg( 'anontalk' ),
666 'href' => $href,
667 'class' => $usertalkUrlDetails['exists'] ? false : 'new',
668 'active' => ( $pageurl == $href )
670 $personal_urls['anonlogin'] = $login_url;
671 } else {
672 $personal_urls['login'] = $login_url;
674 if ( isset($createaccount_url) ) {
675 $personal_urls['createaccount'] = $createaccount_url;
679 wfRunHooks( 'PersonalUrls', array( &$personal_urls, &$title ) );
680 wfProfileOut( __METHOD__ );
681 return $personal_urls;
685 * TODO document
686 * @param $title Title
687 * @param $message String message key
688 * @param $selected Bool
689 * @param $query String
690 * @param $checkEdit Bool
691 * @return array
693 function tabAction( $title, $message, $selected, $query = '', $checkEdit = false ) {
694 $classes = array();
695 if( $selected ) {
696 $classes[] = 'selected';
698 if( $checkEdit && !$title->isKnown() ) {
699 $classes[] = 'new';
700 $query = 'action=edit&redlink=1';
703 // wfMessageFallback will nicely accept $message as an array of fallbacks
704 // or just a single key
705 $msg = wfMessageFallback( $message );
706 if ( is_array($message) ) {
707 // for hook compatibility just keep the last message name
708 $message = end($message);
710 if ( $msg->exists() ) {
711 $text = $msg->text();
712 } else {
713 global $wgContLang;
714 $text = $wgContLang->getFormattedNsText(
715 MWNamespace::getSubject( $title->getNamespace() ) );
718 $result = array();
719 if( !wfRunHooks( 'SkinTemplateTabAction', array( &$this,
720 $title, $message, $selected, $checkEdit,
721 &$classes, &$query, &$text, &$result ) ) ) {
722 return $result;
725 return array(
726 'class' => implode( ' ', $classes ),
727 'text' => $text,
728 'href' => $title->getLocalUrl( $query ),
729 'primary' => true );
732 function makeTalkUrlDetails( $name, $urlaction = '' ) {
733 $title = Title::newFromText( $name );
734 if( !is_object( $title ) ) {
735 throw new MWException( __METHOD__ . " given invalid pagename $name" );
737 $title = $title->getTalkPage();
738 self::checkTitle( $title, $name );
739 return array(
740 'href' => $title->getLocalURL( $urlaction ),
741 'exists' => $title->getArticleID() != 0,
745 function makeArticleUrlDetails( $name, $urlaction = '' ) {
746 $title = Title::newFromText( $name );
747 $title= $title->getSubjectPage();
748 self::checkTitle( $title, $name );
749 return array(
750 'href' => $title->getLocalURL( $urlaction ),
751 'exists' => $title->getArticleID() != 0,
756 * a structured array of links usually used for the tabs in a skin
758 * There are 4 standard sections
759 * namespaces: Used for namespace tabs like special, page, and talk namespaces
760 * views: Used for primary page views like read, edit, history
761 * actions: Used for most extra page actions like deletion, protection, etc...
762 * variants: Used to list the language variants for the page
764 * Each section's value is a key/value array of links for that section.
765 * The links themseves have these common keys:
766 * - class: The css classes to apply to the tab
767 * - text: The text to display on the tab
768 * - href: The href for the tab to point to
769 * - rel: An optional rel= for the tab's link
770 * - redundant: If true the tab will be dropped in skins using content_actions
771 * this is useful for tabs like "Read" which only have meaning in skins that
772 * take special meaning from the grouped structure of content_navigation
774 * Views also have an extra key which can be used:
775 * - primary: If this is not true skins like vector may try to hide the tab
776 * when the user has limited space in their browser window
778 * content_navigation using code also expects these ids to be present on the
779 * links, however these are usually automatically generated by SkinTemplate
780 * itself and are not necessary when using a hook. The only things these may
781 * matter to are people modifying content_navigation after it's initial creation:
782 * - id: A "preferred" id, most skins are best off outputting this preferred id for best compatibility
783 * - tooltiponly: This is set to true for some tabs in cases where the system
784 * believes that the accesskey should not be added to the tab.
786 * @return array
788 protected function buildContentNavigationUrls() {
789 global $wgContLang;
790 global $wgDisableLangConversion;
792 wfProfileIn( __METHOD__ );
794 $title = $this->getRelevantTitle(); // Display tabs for the relevant title rather than always the title itself
795 $onPage = $title->equals($this->getTitle());
797 $out = $this->getOutput();
798 $request = $this->getRequest();
799 $user = $this->getUser();
801 $content_navigation = array(
802 'namespaces' => array(),
803 'views' => array(),
804 'actions' => array(),
805 'variants' => array()
808 // parameters
809 $action = $request->getVal( 'action', 'view' );
810 $section = $request->getVal( 'section' );
812 $userCanRead = $title->userCanRead();
813 $skname = $this->skinname;
815 $preventActiveTabs = false;
816 wfRunHooks( 'SkinTemplatePreventOtherActiveTabs', array( &$this, &$preventActiveTabs ) );
818 // Checks if page is some kind of content
819 if( $title->getNamespace() != NS_SPECIAL ) {
820 // Gets page objects for the related namespaces
821 $subjectPage = $title->getSubjectPage();
822 $talkPage = $title->getTalkPage();
824 // Determines if this is a talk page
825 $isTalk = $title->isTalkPage();
827 // Generates XML IDs from namespace names
828 $subjectId = $title->getNamespaceKey( '' );
830 if ( $subjectId == 'main' ) {
831 $talkId = 'talk';
832 } else {
833 $talkId = "{$subjectId}_talk";
836 // Adds namespace links
837 $subjectMsg = array( "nstab-$subjectId" );
838 if ( $subjectPage->isMainPage() ) {
839 array_unshift($subjectMsg, 'mainpage-nstab');
841 $content_navigation['namespaces'][$subjectId] = $this->tabAction(
842 $subjectPage, $subjectMsg, !$isTalk && !$preventActiveTabs, '', $userCanRead
844 $content_navigation['namespaces'][$subjectId]['context'] = 'subject';
845 $content_navigation['namespaces'][$talkId] = $this->tabAction(
846 $talkPage, array( "nstab-$talkId", 'talk' ), $isTalk && !$preventActiveTabs, '', $userCanRead
848 $content_navigation['namespaces'][$talkId]['context'] = 'talk';
850 // Adds view view link
851 if ( $title->exists() && $userCanRead ) {
852 $content_navigation['views']['view'] = $this->tabAction(
853 $isTalk ? $talkPage : $subjectPage,
854 array( "$skname-view-view", 'view' ),
855 ( $onPage && ($action == 'view' || $action == 'purge' ) ), '', true
857 $content_navigation['views']['view']['redundant'] = true; // signal to hide this from simple content_actions
860 wfProfileIn( __METHOD__ . '-edit' );
862 // Checks if user can...
863 if (
864 // read and edit the current page
865 $userCanRead && $title->quickUserCan( 'edit' ) &&
867 // if it exists
868 $title->exists() ||
869 // or they can create one here
870 $title->quickUserCan( 'create' )
873 // Builds CSS class for talk page links
874 $isTalkClass = $isTalk ? ' istalk' : '';
876 // Determines if we're in edit mode
877 $selected = (
878 $onPage &&
879 ( $action == 'edit' || $action == 'submit' ) &&
880 ( $section != 'new' )
882 $msgKey = $title->exists() || ( $title->getNamespace() == NS_MEDIAWIKI && $title->getDefaultMessageText() !== false ) ?
883 "edit" : "create";
884 $content_navigation['views']['edit'] = array(
885 'class' => ( $selected ? 'selected' : '' ) . $isTalkClass,
886 'text' => wfMessageFallback( "$skname-view-$msgKey", $msgKey )->text(),
887 'href' => $title->getLocalURL( $this->editUrlOptions() ),
888 'primary' => true, // don't collapse this in vector
890 // Checks if this is a current rev of talk page and we should show a new
891 // section link
892 if ( ( $isTalk && $this->isRevisionCurrent() ) || ( $out->showNewSectionLink() ) ) {
893 // Checks if we should ever show a new section link
894 if ( !$out->forceHideNewSectionLink() ) {
895 // Adds new section link
896 //$content_navigation['actions']['addsection']
897 $content_navigation['views']['addsection'] = array(
898 'class' => $section == 'new' ? 'selected' : false,
899 'text' => wfMessageFallback( "$skname-action-addsection", 'addsection' )->text(),
900 'href' => $title->getLocalURL( 'action=edit&section=new' )
904 // Checks if the page has some kind of viewable content
905 } elseif ( $title->hasSourceText() && $userCanRead ) {
906 // Adds view source view link
907 $content_navigation['views']['viewsource'] = array(
908 'class' => ( $onPage && $action == 'edit' ) ? 'selected' : false,
909 'text' => wfMessageFallback( "$skname-action-viewsource", 'viewsource' )->text(),
910 'href' => $title->getLocalURL( $this->editUrlOptions() ),
911 'primary' => true, // don't collapse this in vector
914 wfProfileOut( __METHOD__ . '-edit' );
916 wfProfileIn( __METHOD__ . '-live' );
918 // Checks if the page exists
919 if ( $title->exists() && $userCanRead ) {
920 // Adds history view link
921 $content_navigation['views']['history'] = array(
922 'class' => ( $onPage && $action == 'history' ) ? 'selected' : false,
923 'text' => wfMessageFallback( "$skname-view-history", 'history_short' )->text(),
924 'href' => $title->getLocalURL( 'action=history' ),
925 'rel' => 'archives',
928 if( $user->isAllowed( 'delete' ) ) {
929 $content_navigation['actions']['delete'] = array(
930 'class' => ( $onPage && $action == 'delete' ) ? 'selected' : false,
931 'text' => wfMessageFallback( "$skname-action-delete", 'delete' )->text(),
932 'href' => $title->getLocalURL( 'action=delete' )
935 if ( $title->quickUserCan( 'move' ) ) {
936 $moveTitle = SpecialPage::getTitleFor( 'Movepage', $title->getPrefixedDBkey() );
937 $content_navigation['actions']['move'] = array(
938 'class' => $this->getTitle()->isSpecial( 'Movepage' ) ? 'selected' : false,
939 'text' => wfMessageFallback( "$skname-action-move", 'move' )->text(),
940 'href' => $moveTitle->getLocalURL()
944 if ( $title->getNamespace() !== NS_MEDIAWIKI && $user->isAllowed( 'protect' ) ) {
945 $mode = !$title->isProtected() ? 'protect' : 'unprotect';
946 $content_navigation['actions'][$mode] = array(
947 'class' => ( $onPage && $action == $mode ) ? 'selected' : false,
948 'text' => wfMessageFallback( "$skname-action-$mode", $mode )->text(),
949 'href' => $title->getLocalURL( "action=$mode" )
952 } else {
953 // article doesn't exist or is deleted
954 if ( $user->isAllowed( 'deletedhistory' ) && !$user->isBlocked() ) {
955 $includeSuppressed = $user->isAllowed( 'suppressrevision' );
956 $n = $title->isDeleted( $includeSuppressed );
957 if( $n ) {
958 $undelTitle = SpecialPage::getTitleFor( 'Undelete' );
959 // If the user can't undelete but can view deleted history show them a "View .. deleted" tab instead
960 $msgKey = $user->isAllowed( 'undelete' ) ? 'undelete' : 'viewdeleted';
961 $content_navigation['actions']['undelete'] = array(
962 'class' => $this->getTitle()->isSpecial( 'Undelete' ) ? 'selected' : false,
963 'text' => wfMessageFallback( "$skname-action-$msgKey", "{$msgKey}_short" )
964 ->params( $this->getLang()->formatNum( $n ) )->text(),
965 'href' => $undelTitle->getLocalURL( array( 'target' => $title->getPrefixedDBkey() ) )
970 if ( $title->getNamespace() !== NS_MEDIAWIKI && $user->isAllowed( 'protect' ) ) {
971 $mode = !$title->getRestrictions( 'create' ) ? 'protect' : 'unprotect';
972 $content_navigation['actions'][$mode] = array(
973 'class' => ( $onPage && $action == $mode ) ? 'selected' : false,
974 'text' => wfMessageFallback( "$skname-action-$mode", $mode )->text(),
975 'href' => $title->getLocalURL( "action=$mode" )
979 wfProfileOut( __METHOD__ . '-live' );
981 // Checks if the user is logged in
982 if ( $this->loggedin ) {
984 * The following actions use messages which, if made particular to
985 * the any specific skins, would break the Ajax code which makes this
986 * action happen entirely inline. Skin::makeGlobalVariablesScript
987 * defines a set of messages in a javascript object - and these
988 * messages are assumed to be global for all skins. Without making
989 * a change to that procedure these messages will have to remain as
990 * the global versions.
992 $mode = $title->userIsWatching() ? 'unwatch' : 'watch';
993 $token = WatchAction::getWatchToken( $title, $user, $mode );
994 $content_navigation['actions'][$mode] = array(
995 'class' => $onPage && ( $action == 'watch' || $action == 'unwatch' ) ? 'selected' : false,
996 'text' => wfMsg( $mode ), // uses 'watch' or 'unwatch' message
997 'href' => $title->getLocalURL( array( 'action' => $mode, 'token' => $token ) )
1001 wfRunHooks( 'SkinTemplateNavigation', array( &$this, &$content_navigation ) );
1002 } else {
1003 // If it's not content, it's got to be a special page
1004 $content_navigation['namespaces']['special'] = array(
1005 'class' => 'selected',
1006 'text' => wfMsg( 'nstab-special' ),
1007 'href' => $request->getRequestURL(), // @bug 2457, 2510
1008 'context' => 'subject'
1011 wfRunHooks( 'SkinTemplateNavigation::SpecialPage',
1012 array( &$this, &$content_navigation ) );
1015 // Gets list of language variants
1016 $variants = $wgContLang->getVariants();
1017 // Checks that language conversion is enabled and variants exist
1018 if( !$wgDisableLangConversion && count( $variants ) > 1 ) {
1019 // Gets preferred variant
1020 $preferred = $wgContLang->getPreferredVariant();
1021 // Loops over each variant
1022 foreach( $variants as $code ) {
1023 // Gets variant name from language code
1024 $varname = $wgContLang->getVariantname( $code );
1025 // Checks if the variant is marked as disabled
1026 if( $varname == 'disable' ) {
1027 // Skips this variant
1028 continue;
1030 // Appends variant link
1031 $content_navigation['variants'][] = array(
1032 'class' => ( $code == $preferred ) ? 'selected' : false,
1033 'text' => $varname,
1034 'href' => $title->getLocalURL( '', $code )
1039 // Equiv to SkinTemplateContentActions
1040 wfRunHooks( 'SkinTemplateNavigation::Universal', array( &$this, &$content_navigation ) );
1042 // Setup xml ids and tooltip info
1043 foreach ( $content_navigation as $section => &$links ) {
1044 foreach ( $links as $key => &$link ) {
1045 $xmlID = $key;
1046 if ( isset( $link['context'] ) && $link['context'] == 'subject' ) {
1047 $xmlID = 'ca-nstab-' . $xmlID;
1048 } elseif ( isset( $link['context'] ) && $link['context'] == 'talk' ) {
1049 $xmlID = 'ca-talk';
1050 } elseif ( $section == "variants" ) {
1051 $xmlID = 'ca-varlang-' . $xmlID;
1052 } else {
1053 $xmlID = 'ca-' . $xmlID;
1055 $link['id'] = $xmlID;
1059 # We don't want to give the watch tab an accesskey if the
1060 # page is being edited, because that conflicts with the
1061 # accesskey on the watch checkbox. We also don't want to
1062 # give the edit tab an accesskey, because that's fairly su-
1063 # perfluous and conflicts with an accesskey (Ctrl-E) often
1064 # used for editing in Safari.
1065 if( in_array( $action, array( 'edit', 'submit' ) ) ) {
1066 if ( isset($content_navigation['views']['edit']) ) {
1067 $content_navigation['views']['edit']['tooltiponly'] = true;
1069 if ( isset($content_navigation['actions']['watch']) ) {
1070 $content_navigation['actions']['watch']['tooltiponly'] = true;
1072 if ( isset($content_navigation['actions']['unwatch']) ) {
1073 $content_navigation['actions']['unwatch']['tooltiponly'] = true;
1077 wfProfileOut( __METHOD__ );
1079 return $content_navigation;
1083 * an array of edit links by default used for the tabs
1084 * @return array
1085 * @private
1087 function buildContentActionUrls( $content_navigation ) {
1089 wfProfileIn( __METHOD__ );
1091 // content_actions has been replaced with content_navigation for backwards
1092 // compatibility and also for skins that just want simple tabs content_actions
1093 // is now built by flattening the content_navigation arrays into one
1095 $content_actions = array();
1097 foreach ( $content_navigation as $links ) {
1099 foreach ( $links as $key => $value ) {
1101 if ( isset($value["redundant"]) && $value["redundant"] ) {
1102 // Redundant tabs are dropped from content_actions
1103 continue;
1106 // content_actions used to have ids built using the "ca-$key" pattern
1107 // so the xmlID based id is much closer to the actual $key that we want
1108 // for that reason we'll just strip out the ca- if present and use
1109 // the latter potion of the "id" as the $key
1110 if ( isset($value["id"]) && substr($value["id"], 0, 3) == "ca-" ) {
1111 $key = substr($value["id"], 3);
1114 if ( isset($content_actions[$key]) ) {
1115 wfDebug( __METHOD__ . ": Found a duplicate key for $key while flattening content_navigation into content_actions." );
1116 continue;
1119 $content_actions[$key] = $value;
1125 wfProfileOut( __METHOD__ );
1127 return $content_actions;
1131 * build array of common navigation links
1132 * @return array
1133 * @private
1135 protected function buildNavUrls() {
1136 global $wgUseTrackbacks;
1137 global $wgUploadNavigationUrl;
1139 wfProfileIn( __METHOD__ );
1141 $out = $this->getOutput();
1142 $request = $this->getRequest();
1144 $nav_urls = array();
1145 $nav_urls['mainpage'] = array( 'href' => self::makeMainPageUrl() );
1146 if( $wgUploadNavigationUrl ) {
1147 $nav_urls['upload'] = array( 'href' => $wgUploadNavigationUrl );
1148 } elseif( UploadBase::isEnabled() && UploadBase::isAllowed( $this->getUser() ) === true ) {
1149 $nav_urls['upload'] = array( 'href' => self::makeSpecialUrl( 'Upload' ) );
1150 } else {
1151 $nav_urls['upload'] = false;
1153 $nav_urls['specialpages'] = array( 'href' => self::makeSpecialUrl( 'Specialpages' ) );
1155 // default permalink to being off, will override it as required below.
1156 $nav_urls['permalink'] = false;
1158 // A print stylesheet is attached to all pages, but nobody ever
1159 // figures that out. :) Add a link...
1160 if( $out->isArticle() ) {
1161 if ( !$out->isPrintable() ) {
1162 $nav_urls['print'] = array(
1163 'text' => wfMsg( 'printableversion' ),
1164 'href' => $this->getTitle()->getLocalURL(
1165 $request->appendQueryValue( 'printable', 'yes', true ) )
1169 // Also add a "permalink" while we're at it
1170 $revid = $this->getRevisionId();
1171 if ( $revid ) {
1172 $nav_urls['permalink'] = array(
1173 'text' => wfMsg( 'permalink' ),
1174 'href' => $out->getTitle()->getLocalURL( "oldid=$revid" )
1178 // Use the copy of revision ID in case this undocumented, shady hook tries to mess with internals
1179 wfRunHooks( 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink',
1180 array( &$this, &$nav_urls, &$revid, &$revid ) );
1183 if( $this->getTitle()->getNamespace() != NS_SPECIAL ) {
1184 $wlhTitle = SpecialPage::getTitleFor( 'Whatlinkshere', $this->thispage );
1185 $nav_urls['whatlinkshere'] = array(
1186 'href' => $wlhTitle->getLocalUrl()
1188 if( $this->getTitle()->getArticleId() ) {
1189 $rclTitle = SpecialPage::getTitleFor( 'Recentchangeslinked', $this->thispage );
1190 $nav_urls['recentchangeslinked'] = array(
1191 'href' => $rclTitle->getLocalUrl()
1193 } else {
1194 $nav_urls['recentchangeslinked'] = false;
1196 if( $wgUseTrackbacks )
1197 $nav_urls['trackbacklink'] = array(
1198 'href' => $out->getTitle()->trackbackURL()
1202 $user = $this->getRelevantUser();
1203 if ( $user ) {
1204 $id = $user->getID();
1205 $ip = $user->isAnon();
1206 $rootUser = $user->getName();
1207 } else {
1208 $id = 0;
1209 $ip = false;
1210 $rootUser = null;
1213 if( $id || $ip ) { # both anons and non-anons have contribs list
1214 $nav_urls['contributions'] = array(
1215 'href' => self::makeSpecialUrlSubpage( 'Contributions', $rootUser )
1218 if( $id ) {
1219 $logPage = SpecialPage::getTitleFor( 'Log' );
1220 $nav_urls['log'] = array(
1221 'href' => $logPage->getLocalUrl(
1222 array(
1223 'user' => $rootUser
1227 } else {
1228 $nav_urls['log'] = false;
1231 if ( $this->getUser()->isAllowed( 'block' ) ) {
1232 $nav_urls['blockip'] = array(
1233 'href' => self::makeSpecialUrlSubpage( 'Block', $rootUser )
1235 } else {
1236 $nav_urls['blockip'] = false;
1238 } else {
1239 $nav_urls['contributions'] = false;
1240 $nav_urls['log'] = false;
1241 $nav_urls['blockip'] = false;
1243 $nav_urls['emailuser'] = false;
1244 if( $this->showEmailUser( $id ) ) {
1245 $nav_urls['emailuser'] = array(
1246 'href' => self::makeSpecialUrlSubpage( 'Emailuser', $rootUser )
1249 wfProfileOut( __METHOD__ );
1250 return $nav_urls;
1254 * Generate strings used for xml 'id' names
1255 * @return string
1256 * @private
1258 function getNameSpaceKey() {
1259 return $this->getTitle()->getNamespaceKey();
1263 * @private
1264 * @todo FIXME: Why is this duplicated in/from OutputPage::getHeadScripts()??
1266 function setupUserJs( $allowUserJs ) {
1267 global $wgJsMimeType;
1268 wfProfileIn( __METHOD__ );
1270 if( $allowUserJs && $this->loggedin ) {
1271 if( $this->getTitle()->isJsSubpage() and $this->getOutput()->userCanPreview() ) {
1272 # XXX: additional security check/prompt?
1273 $this->userjsprev = '/*<![CDATA[*/ ' . $this->getRequest()->getText( 'wpTextbox1' ) . ' /*]]>*/';
1274 } else {
1275 $this->userjs = self::makeUrl( $this->userpage . '/' . $this->skinname . '.js', 'action=raw&ctype=' . $wgJsMimeType );
1278 wfProfileOut( __METHOD__ );
1281 public function commonPrintStylesheet() {
1282 return false;
1287 * Generic wrapper for template functions, with interface
1288 * compatible with what we use of PHPTAL 0.7.
1289 * @ingroup Skins
1291 abstract class QuickTemplate {
1293 * Constructor
1295 public function QuickTemplate() {
1296 $this->data = array();
1297 $this->translator = new MediaWiki_I18N();
1301 * Sets the value $value to $name
1302 * @param $name
1303 * @param $value
1305 public function set( $name, $value ) {
1306 $this->data[$name] = $value;
1310 * @param $name
1311 * @param $value
1313 public function setRef( $name, &$value ) {
1314 $this->data[$name] =& $value;
1318 * @param $t
1320 public function setTranslator( &$t ) {
1321 $this->translator = &$t;
1325 * Main function, used by classes that subclass QuickTemplate
1326 * to show the actual HTML output
1328 abstract public function execute();
1331 * @private
1333 function text( $str ) {
1334 echo htmlspecialchars( $this->data[$str] );
1338 * @private
1340 function jstext( $str ) {
1341 echo Xml::escapeJsString( $this->data[$str] );
1345 * @private
1347 function html( $str ) {
1348 echo $this->data[$str];
1352 * @private
1354 function msg( $str ) {
1355 echo htmlspecialchars( $this->translator->translate( $str ) );
1359 * @private
1361 function msgHtml( $str ) {
1362 echo $this->translator->translate( $str );
1366 * An ugly, ugly hack.
1367 * @private
1369 function msgWiki( $str ) {
1370 global $wgOut;
1372 $text = $this->translator->translate( $str );
1373 echo $wgOut->parse( $text );
1377 * @private
1379 function haveData( $str ) {
1380 return isset( $this->data[$str] );
1384 * @private
1386 * @return bool
1388 function haveMsg( $str ) {
1389 $msg = $this->translator->translate( $str );
1390 return ( $msg != '-' ) && ( $msg != '' ); # ????
1394 * Get the Skin object related to this object
1396 * @return Skin object
1398 public function getSkin() {
1399 return $this->data['skin'];
1404 * New base template for a skin's template extended from QuickTemplate
1405 * this class features helper methods that provide common ways of interacting
1406 * with the data stored in the QuickTemplate
1408 abstract class BaseTemplate extends QuickTemplate {
1411 * Create an array of common toolbox items from the data in the quicktemplate
1412 * stored by SkinTemplate.
1413 * The resulting array is built acording to a format intended to be passed
1414 * through makeListItem to generate the html.
1416 function getToolbox() {
1417 wfProfileIn( __METHOD__ );
1419 $toolbox = array();
1420 if ( $this->data['notspecialpage'] ) {
1421 $toolbox['whatlinkshere'] = $this->data['nav_urls']['whatlinkshere'];
1422 $toolbox['whatlinkshere']['id'] = 't-whatlinkshere';
1423 if ( $this->data['nav_urls']['recentchangeslinked'] ) {
1424 $toolbox['recentchangeslinked'] = $this->data['nav_urls']['recentchangeslinked'];
1425 $toolbox['recentchangeslinked']['msg'] = 'recentchangeslinked-toolbox';
1426 $toolbox['recentchangeslinked']['id'] = 't-recentchangeslinked';
1429 if( isset( $this->data['nav_urls']['trackbacklink'] ) && $this->data['nav_urls']['trackbacklink'] ) {
1430 $toolbox['trackbacklink'] = $this->data['nav_urls']['trackbacklink'];
1431 $toolbox['trackbacklink']['id'] = 't-trackbacklink';
1433 if ( $this->data['feeds'] ) {
1434 $toolbox['feeds']['id'] = 'feedlinks';
1435 $toolbox['feeds']['links'] = array();
1436 foreach ( $this->data['feeds'] as $key => $feed ) {
1437 $toolbox['feeds']['links'][$key] = $feed;
1438 $toolbox['feeds']['links'][$key]['id'] = "feed-$key";
1439 $toolbox['feeds']['links'][$key]['rel'] = 'alternate';
1440 $toolbox['feeds']['links'][$key]['type'] = "application/{$key}+xml";
1441 $toolbox['feeds']['links'][$key]['class'] = 'feedlink';
1444 foreach ( array( 'contributions', 'log', 'blockip', 'emailuser', 'upload', 'specialpages' ) as $special ) {
1445 if ( $this->data['nav_urls'][$special] ) {
1446 $toolbox[$special] = $this->data['nav_urls'][$special];
1447 $toolbox[$special]['id'] = "t-$special";
1450 if ( !empty( $this->data['nav_urls']['print']['href'] ) ) {
1451 $toolbox['print'] = $this->data['nav_urls']['print'];
1452 $toolbox['print']['rel'] = 'alternate';
1453 $toolbox['print']['msg'] = 'printableversion';
1455 if( $this->data['nav_urls']['permalink'] ) {
1456 $toolbox['permalink'] = $this->data['nav_urls']['permalink'];
1457 if( $toolbox['permalink']['href'] === '' ) {
1458 unset( $toolbox['permalink']['href'] );
1459 $toolbox['ispermalink']['tooltiponly'] = true;
1460 $toolbox['ispermalink']['id'] = 't-ispermalink';
1461 $toolbox['ispermalink']['msg'] = 'permalink';
1462 } else {
1463 $toolbox['permalink']['id'] = 't-permalink';
1466 wfRunHooks( 'BaseTemplateToolbox', array( &$this, &$toolbox ) );
1467 wfProfileOut( __METHOD__ );
1468 return $toolbox;
1472 * Create an array of personal tools items from the data in the quicktemplate
1473 * stored by SkinTemplate.
1474 * The resulting array is built acording to a format intended to be passed
1475 * through makeListItem to generate the html.
1476 * This is in reality the same list as already stored in personal_urls
1477 * however it is reformatted so that you can just pass the individual items
1478 * to makeListItem instead of hardcoding the element creation boilerplate.
1480 function getPersonalTools() {
1481 $personal_tools = array();
1482 foreach( $this->data['personal_urls'] as $key => $ptool ) {
1483 # The class on a personal_urls item is meant to go on the <a> instead
1484 # of the <li> so we have to use a single item "links" array instead
1485 # of using most of the personal_url's keys directly
1486 $personal_tools[$key] = array();
1487 $personal_tools[$key]["links"][] = array();
1488 $personal_tools[$key]["links"][0]["single-id"] = $personal_tools[$key]["id"] = "pt-$key";
1489 if ( isset($ptool["active"]) ) {
1490 $personal_tools[$key]["active"] = $ptool["active"];
1492 foreach ( array("href", "class", "text") as $k ) {
1493 if ( isset($ptool[$k]) )
1494 $personal_tools[$key]["links"][0][$k] = $ptool[$k];
1497 return $personal_tools;
1501 * Makes a link, usually used by makeListItem to generate a link for an item
1502 * in a list used in navigation lists, portlets, portals, sidebars, etc...
1504 * $key is a string, usually a key from the list you are generating this link from
1505 * $item is an array containing some of a specific set of keys.
1506 * The text of the link will be generated either from the contents of the "text"
1507 * key in the $item array, if a "msg" key is present a message by that name will
1508 * be used, and if neither of those are set the $key will be used as a message name.
1509 * If a "href" key is not present makeLink will just output htmlescaped text.
1510 * The href, id, class, rel, and type keys are used as attributes for the link if present.
1511 * If an "id" or "single-id" (if you don't want the actual id to be output on the link)
1512 * is present it will be used to generate a tooltip and accesskey for the link.
1513 * If you don't want an accesskey, set $item['tooltiponly'] = true;
1515 function makeLink( $key, $item ) {
1516 if ( isset( $item['text'] ) ) {
1517 $text = $item['text'];
1518 } else {
1519 $text = $this->translator->translate( isset( $item['msg'] ) ? $item['msg'] : $key );
1522 if ( !isset( $item['href'] ) ) {
1523 return htmlspecialchars( $text );
1526 $attrs = array();
1527 foreach ( array( 'href', 'id', 'class', 'rel', 'type', 'target') as $attr ) {
1528 if ( isset( $item[$attr] ) ) {
1529 $attrs[$attr] = $item[$attr];
1533 if ( isset( $item['id'] ) ) {
1534 $item['single-id'] = $item['id'];
1536 if ( isset( $item['single-id'] ) ) {
1537 if ( isset( $item['tooltiponly'] ) && $item['tooltiponly'] ) {
1538 $attrs['title'] = $this->getSkin()->titleAttrib( $item['single-id'] );
1539 if ( $attrs['title'] === false ) {
1540 unset( $attrs['title'] );
1542 } else {
1543 $attrs = array_merge(
1544 $attrs,
1545 Linker::tooltipAndAccesskeyAttribs( $item['single-id'] )
1550 return Html::element( 'a', $attrs, $text );
1554 * Generates a list item for a navigation, portlet, portal, sidebar... etc list
1555 * $key is a string, usually a key from the list you are generating this link from
1556 * $item is an array of list item data containing some of a specific set of keys.
1557 * The "id" and "class" keys will be used as attributes for the list item,
1558 * if "active" contains a value of true a "active" class will also be appended to class.
1559 * If you want something other than a <li> you can pass a tag name such as
1560 * "tag" => "span" in the $options array to change the tag used.
1561 * link/content data for the list item may come in one of two forms
1562 * A "links" key may be used, in which case it should contain an array with
1563 * a list of links to include inside the list item, see makeLink for the format
1564 * of individual links array items.
1565 * Otherwise the relevant keys from the list item $item array will be passed
1566 * to makeLink instead. Note however that "id" and "class" are used by the
1567 * list item directly so they will not be passed to makeLink
1568 * (however the link will still support a tooltip and accesskey from it)
1569 * If you need an id or class on a single link you should include a "links"
1570 * array with just one link item inside of it.
1572 function makeListItem( $key, $item, $options = array() ) {
1573 if ( isset( $item['links'] ) ) {
1574 $html = '';
1575 foreach ( $item['links'] as $linkKey => $link ) {
1576 $html .= $this->makeLink( $linkKey, $link );
1578 } else {
1579 $link = array();
1580 foreach ( array( 'text', 'msg', 'href', 'rel', 'type', 'tooltiponly', 'target' ) as $k ) {
1581 if ( isset( $item[$k] ) ) {
1582 $link[$k] = $item[$k];
1585 if ( isset( $item['id'] ) ) {
1586 // The id goes on the <li> not on the <a> for single links
1587 // but makeSidebarLink still needs to know what id to use when
1588 // generating tooltips and accesskeys.
1589 $link['single-id'] = $item['id'];
1591 $html = $this->makeLink( $key, $link );
1594 $attrs = array();
1595 foreach ( array( 'id', 'class' ) as $attr ) {
1596 if ( isset( $item[$attr] ) ) {
1597 $attrs[$attr] = $item[$attr];
1600 if ( isset( $item['active'] ) && $item['active'] ) {
1601 if ( !isset( $attrs['class'] ) ) {
1602 $attrs['class'] = '';
1604 $attrs['class'] .= ' active';
1605 $attrs['class'] = trim( $attrs['class'] );
1607 return Html::rawElement( isset( $options['tag'] ) ? $options['tag'] : 'li', $attrs, $html );
1610 function makeSearchInput( $attrs = array() ) {
1611 $realAttrs = array(
1612 'type' => 'search',
1613 'name' => 'search',
1614 'value' => isset( $this->data['search'] ) ? $this->data['search'] : '',
1616 $realAttrs = array_merge( $realAttrs, Linker::tooltipAndAccesskeyAttribs( 'search' ), $attrs );
1617 return Html::element( 'input', $realAttrs );
1620 function makeSearchButton( $mode, $attrs = array() ) {
1621 switch( $mode ) {
1622 case 'go':
1623 case 'fulltext':
1624 $realAttrs = array(
1625 'type' => 'submit',
1626 'name' => $mode,
1627 'value' => $this->translator->translate(
1628 $mode == 'go' ? 'searcharticle' : 'searchbutton' ),
1630 $realAttrs = array_merge(
1631 $realAttrs,
1632 Linker::tooltipAndAccesskeyAttribs( "search-$mode" ),
1633 $attrs
1635 return Html::element( 'input', $realAttrs );
1636 case 'image':
1637 $buttonAttrs = array(
1638 'type' => 'submit',
1639 'name' => 'button',
1641 $buttonAttrs = array_merge(
1642 $buttonAttrs,
1643 Linker::tooltipAndAccesskeyAttribs( 'search-fulltext' ),
1644 $attrs
1646 unset( $buttonAttrs['src'] );
1647 unset( $buttonAttrs['alt'] );
1648 $imgAttrs = array(
1649 'src' => $attrs['src'],
1650 'alt' => isset( $attrs['alt'] )
1651 ? $attrs['alt']
1652 : $this->translator->translate( 'searchbutton' ),
1654 return Html::rawElement( 'button', $buttonAttrs, Html::element( 'img', $imgAttrs ) );
1655 default:
1656 throw new MWException( 'Unknown mode passed to BaseTemplate::makeSearchButton' );
1661 * Returns an array of footerlinks trimmed down to only those footer links that
1662 * are valid.
1663 * If you pass "flat" as an option then the returned array will be a flat array
1664 * of footer icons instead of a key/value array of footerlinks arrays broken
1665 * up into categories.
1667 function getFooterLinks( $option = null ) {
1668 $footerlinks = $this->data['footerlinks'];
1670 // Reduce footer links down to only those which are being used
1671 $validFooterLinks = array();
1672 foreach( $footerlinks as $category => $links ) {
1673 $validFooterLinks[$category] = array();
1674 foreach( $links as $link ) {
1675 if( isset( $this->data[$link] ) && $this->data[$link] ) {
1676 $validFooterLinks[$category][] = $link;
1679 if ( count( $validFooterLinks[$category] ) <= 0 ) {
1680 unset( $validFooterLinks[$category] );
1684 if ( $option == 'flat' ) {
1685 // fold footerlinks into a single array using a bit of trickery
1686 $validFooterLinks = call_user_func_array(
1687 'array_merge',
1688 array_values( $validFooterLinks )
1692 return $validFooterLinks;
1696 * Returns an array of footer icons filtered down by options relevant to how
1697 * the skin wishes to display them.
1698 * If you pass "icononly" as the option all footer icons which do not have an
1699 * image icon set will be filtered out.
1700 * If you pass "nocopyright" then MediaWiki's copyright icon will not be included
1701 * in the list of footer icons. This is mostly useful for skins which only
1702 * display the text from footericons instead of the images and don't want a
1703 * duplicate copyright statement because footerlinks already rendered one.
1705 function getFooterIcons( $option = null ) {
1706 // Generate additional footer icons
1707 $footericons = $this->data['footericons'];
1709 if ( $option == 'icononly' ) {
1710 // Unset any icons which don't have an image
1711 foreach ( $footericons as &$footerIconsBlock ) {
1712 foreach ( $footerIconsBlock as $footerIconKey => $footerIcon ) {
1713 if ( !is_string( $footerIcon ) && !isset( $footerIcon['src'] ) ) {
1714 unset( $footerIconsBlock[$footerIconKey] );
1718 // Redo removal of any empty blocks
1719 foreach ( $footericons as $footerIconsKey => &$footerIconsBlock ) {
1720 if ( count( $footerIconsBlock ) <= 0 ) {
1721 unset( $footericons[$footerIconsKey] );
1724 } elseif ( $option == 'nocopyright' ) {
1725 unset( $footericons['copyright']['copyright'] );
1726 if ( count( $footericons['copyright'] ) <= 0 ) {
1727 unset( $footericons['copyright'] );
1731 return $footericons;
1735 * Output the basic end-page trail including bottomscripts, reporttime, and
1736 * debug stuff. This should be called right before outputting the closing
1737 * body and html tags.
1739 function printTrail() { ?>
1740 <?php $this->html('bottomscripts'); /* JS call to runBodyOnloadHook */ ?>
1741 <?php $this->html('reporttime') ?>
1742 <?php if ( $this->data['debug'] ): ?>
1743 <!-- Debug output:
1744 <?php $this->text( 'debug' ); ?>
1747 <?php endif;