* (bug 27721) Make JavaScript variables wgSeparatorTransformTable and wgDigitTransfor...
[lhc/web/wiklou.git] / includes / SkinTemplate.php
1 <?php
2 /**
3 * Base class for template-based skins
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 if ( !defined( 'MEDIAWIKI' ) ) {
24 die( 1 );
25 }
26
27 /**
28 * Wrapper object for MediaWiki's localization functions,
29 * to be passed to the template engine.
30 *
31 * @private
32 * @ingroup Skins
33 */
34 class MediaWiki_I18N {
35 var $_context = array();
36
37 function set( $varName, $value ) {
38 $this->_context[$varName] = $value;
39 }
40
41 function translate( $value ) {
42 wfProfileIn( __METHOD__ );
43
44 // Hack for i18n:attributes in PHPTAL 1.0.0 dev version as of 2004-10-23
45 $value = preg_replace( '/^string:/', '', $value );
46
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 );
56 }
57 wfProfileOut( __METHOD__ );
58 return $value;
59 }
60 }
61
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/
67 *
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.
71 *
72 * @ingroup Skins
73 */
74 class SkinTemplate extends Skin {
75 /**#@+
76 * @private
77 */
78
79 /**
80 * Name of our skin, it probably needs to be all lower case. Child classes
81 * should override the default.
82 */
83 var $skinname = 'monobook';
84
85 /**
86 * Stylesheets set to use. Subdirectory in skins/ where various stylesheets
87 * are located. Child classes should override the default.
88 */
89 var $stylename = 'monobook';
90
91 /**
92 * For QuickTemplate, the name of the subclass which will actually fill the
93 * template. Child classes should override the default.
94 */
95 var $template = 'QuickTemplate';
96
97 /**
98 * Whether this skin use OutputPage::headElement() to generate the <head>
99 * tag
100 */
101 var $useHeadElement = false;
102
103 /**#@-*/
104
105 /**
106 * Add specific styles for this skin
107 *
108 * @param $out OutputPage
109 */
110 function setupSkinUserCss( OutputPage $out ) {
111 $out->addModuleStyles( array( 'mediawiki.legacy.shared', 'mediawiki.legacy.commonPrint' ) );
112 }
113
114 /**
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.
118 *
119 * @param $classname String
120 * @param $repository string: subdirectory where we keep template files
121 * @param $cache_dir string
122 * @return QuickTemplate
123 * @private
124 */
125 function setupTemplate( $classname, $repository = false, $cache_dir = false ) {
126 return new $classname();
127 }
128
129 /**
130 * initialize various variables and generate the template
131 *
132 * @param $out OutputPage
133 */
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 $wgUseSiteJs, $wgDebugComments;
143 global $wgArticlePath, $wgScriptPath, $wgServer;
144
145 wfProfileIn( __METHOD__ );
146 Profiler::instance()->setTemplated( true );
147
148 $oldContext = null;
149 if ( $out !== null ) {
150 // @todo Add wfDeprecated in 1.20
151 $oldContext = $this->getContext();
152 $this->setContext( $out->getContext() );
153 }
154
155 $out = $this->getOutput();
156 $request = $this->getRequest();
157 $user = $this->getUser();
158
159 wfProfileIn( __METHOD__ . '-init' );
160 $this->initPage( $out );
161
162 $tpl = $this->setupTemplate( $this->template, 'skins' );
163 wfProfileOut( __METHOD__ . '-init' );
164
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'] );
174 }
175 $this->thisquery = wfArrayToCGI( $query );
176 $this->loggedin = $user->isLoggedIn();
177 $this->username = $user->getName();
178 $this->userdisplayname = $user->getDisplayName();
179
180 if ( $user->isLoggedIn() || $this->showIPinHeader() ) {
181 $this->userpageUrlDetails = self::makeUrlDetails( $this->userpage );
182 } else {
183 # This won't be used in the standard skins, but we define it to preserve the interface
184 # To save time, we check for existence
185 $this->userpageUrlDetails = self::makeKnownUrlDetails( $this->userpage );
186 }
187
188 $this->titletxt = $this->getTitle()->getPrefixedText();
189 wfProfileOut( __METHOD__ . '-stuff' );
190
191 wfProfileIn( __METHOD__ . '-stuff-head' );
192 if ( !$this->useHeadElement ) {
193 $tpl->set( 'pagecss', false );
194 $tpl->set( 'usercss', false );
195
196 $this->userjs = $this->userjsprev = false;
197 # @todo FIXME: This is the only use of OutputPage::isUserJsAllowed() anywhere; can we
198 # get rid of it? For that matter, why is any of this here at all?
199 $this->setupUserJs( $out->isUserJsAllowed() );
200 $tpl->setRef( 'userjs', $this->userjs );
201 $tpl->setRef( 'userjsprev', $this->userjsprev );
202
203 if( $wgUseSiteJs ) {
204 $jsCache = $this->loggedin ? '&smaxage=0' : '';
205 $tpl->set( 'jsvarurl',
206 self::makeUrl( '-',
207 "action=raw$jsCache&gen=js&useskin=" .
208 urlencode( $this->getSkinName() ) ) );
209 } else {
210 $tpl->set( 'jsvarurl', false );
211 }
212
213 $tpl->setRef( 'xhtmldefaultnamespace', $wgXhtmlDefaultNamespace );
214 $tpl->set( 'xhtmlnamespaces', $wgXhtmlNamespaces );
215 $tpl->set( 'html5version', $wgHtml5Version );
216 $tpl->set( 'headlinks', $out->getHeadLinks() );
217 $tpl->set( 'csslinks', $out->buildCssLinks() );
218 $tpl->set( 'pageclass', $this->getPageClasses( $this->getTitle() ) );
219 $tpl->set( 'skinnameclass', ( 'skin-' . Sanitizer::escapeClass( $this->getSkinName() ) ) );
220 }
221 wfProfileOut( __METHOD__ . '-stuff-head' );
222
223 wfProfileIn( __METHOD__ . '-stuff2' );
224 $tpl->set( 'title', $out->getPageTitle() );
225 $tpl->set( 'pagetitle', $out->getHTMLTitle() );
226 $tpl->set( 'displaytitle', $out->mPageLinkTitle );
227
228 $tpl->set( 'titleprefixeddbkey', $this->getTitle()->getPrefixedDBKey() );
229 $tpl->set( 'titletext', $this->getTitle()->getText() );
230 $tpl->set( 'articleid', $this->getTitle()->getArticleId() );
231
232 $tpl->set( 'isarticle', $out->isArticle() );
233
234 $tpl->setRef( 'thispage', $this->thispage );
235 $subpagestr = $this->subPageSubtitle();
236 $tpl->set(
237 'subtitle', !empty( $subpagestr ) ?
238 '<span class="subpages">' . $subpagestr . '</span>' . $out->getSubtitle() :
239 $out->getSubtitle()
240 );
241 $undelete = $this->getUndeleteLink();
242 $tpl->set(
243 'undelete', !empty( $undelete ) ?
244 '<span class="subpages">' . $undelete . '</span>' :
245 ''
246 );
247
248 $tpl->set( 'catlinks', $this->getCategories() );
249 if( $out->isSyndicated() ) {
250 $feeds = array();
251 foreach( $out->getSyndicationLinks() as $format => $link ) {
252 $feeds[$format] = array(
253 'text' => $this->msg( "feed-$format" )->text(),
254 'href' => $link
255 );
256 }
257 $tpl->setRef( 'feeds', $feeds );
258 } else {
259 $tpl->set( 'feeds', false );
260 }
261
262 $tpl->setRef( 'mimetype', $wgMimeType );
263 $tpl->setRef( 'jsmimetype', $wgJsMimeType );
264 $tpl->set( 'charset', 'UTF-8' );
265 $tpl->setRef( 'wgScript', $wgScript );
266 $tpl->setRef( 'skinname', $this->skinname );
267 $tpl->set( 'skinclass', get_class( $this ) );
268 $tpl->setRef( 'stylename', $this->stylename );
269 $tpl->set( 'printable', $out->isPrintable() );
270 $tpl->set( 'handheld', $request->getBool( 'handheld' ) );
271 $tpl->setRef( 'loggedin', $this->loggedin );
272 $tpl->set( 'notspecialpage', !$this->getTitle()->isSpecialPage() );
273 /* XXX currently unused, might get useful later
274 $tpl->set( 'editable', ( !$this->getTitle()->isSpecialPage() ) );
275 $tpl->set( 'exists', $this->getTitle()->getArticleID() != 0 );
276 $tpl->set( 'watch', $this->getTitle()->userIsWatching() ? 'unwatch' : 'watch' );
277 $tpl->set( 'protect', count( $this->getTitle()->isProtected() ) ? 'unprotect' : 'protect' );
278 $tpl->set( 'helppage', $this->msg( 'helppage' )->text() );
279 */
280 $tpl->set( 'searchaction', $this->escapeSearchLink() );
281 $tpl->set( 'searchtitle', SpecialPage::getTitleFor( 'Search' )->getPrefixedDBKey() );
282 $tpl->set( 'search', trim( $request->getVal( 'search' ) ) );
283 $tpl->setRef( 'stylepath', $wgStylePath );
284 $tpl->setRef( 'articlepath', $wgArticlePath );
285 $tpl->setRef( 'scriptpath', $wgScriptPath );
286 $tpl->setRef( 'serverurl', $wgServer );
287 $tpl->setRef( 'logopath', $wgLogo );
288 $tpl->setRef( 'sitename', $wgSitename );
289
290 $contentlang = $wgContLang->getCode();
291 $contentdir = $wgContLang->getDir();
292 $userlang = $this->getLanguage()->getCode();
293 $userdir = $this->getLanguage()->getDir();
294
295 $tpl->set( 'lang', $userlang );
296 $tpl->set( 'dir', $userdir );
297 $tpl->set( 'rtl', $this->getLanguage()->isRTL() );
298
299 $tpl->set( 'capitalizeallnouns', $this->getLanguage()->capitalizeAllNouns() ? ' capitalize-all-nouns' : '' );
300 $tpl->set( 'showjumplinks', $user->getOption( 'showjumplinks' ) );
301 $tpl->set( 'username', $user->isAnon() ? null : $this->username );
302 $tpl->set( 'userdisplayname', $user->isAnon() ? null : $this->userdisplayname );
303 $tpl->setRef( 'userpage', $this->userpage );
304 $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href'] );
305 $tpl->set( 'userlang', $userlang );
306
307 // Users can have their language set differently than the
308 // content of the wiki. For these users, tell the web browser
309 // that interface elements are in a different language.
310 $tpl->set( 'userlangattributes', '' );
311 $tpl->set( 'specialpageattributes', '' ); # obsolete
312
313 if ( $userlang !== $contentlang || $userdir !== $contentdir ) {
314 $attrs = " lang='$userlang' dir='$userdir'";
315 $tpl->set( 'userlangattributes', $attrs );
316 }
317
318 wfProfileOut( __METHOD__ . '-stuff2' );
319
320 wfProfileIn( __METHOD__ . '-stuff3' );
321 $tpl->set( 'newtalk', $this->getNewtalks() );
322 $tpl->setRef( 'skin', $this );
323 $tpl->set( 'logo', $this->logoText() );
324
325 $tpl->set( 'copyright', false );
326 $tpl->set( 'viewcount', false );
327 $tpl->set( 'lastmod', false );
328 $tpl->set( 'credits', false );
329 $tpl->set( 'numberofwatchingusers', false );
330 if ( $out->isArticle() && $this->getTitle()->exists() ) {
331 if ( $this->isRevisionCurrent() ) {
332 $page = WikiPage::factory( $this->getTitle() );
333 if ( !$wgDisableCounters ) {
334 $viewcount = $page->getCount();
335 if ( $viewcount ) {
336 $tpl->set( 'viewcount', $this->msg( 'viewcount' )->numParams( $viewcount )->parse() );
337 }
338 }
339
340 if( $wgPageShowWatchingUsers ) {
341 $dbr = wfGetDB( DB_SLAVE );
342 $num = $dbr->selectField( 'watchlist', 'COUNT(*)',
343 array( 'wl_title' => $this->getTitle()->getDBkey(), 'wl_namespace' => $this->getTitle()->getNamespace() ),
344 __METHOD__
345 );
346 if( $num > 0 ) {
347 $tpl->set( 'numberofwatchingusers',
348 $this->msg( 'number_of_watching_users_pageview' )->numParams( $num )->parse()
349 );
350 }
351 }
352
353 if ( $wgMaxCredits != 0 ) {
354 $tpl->set( 'credits', Action::factory( 'credits', $page, $this->getContext() )->getCredits( $wgMaxCredits, $wgShowCreditsIfMax ) );
355 } else {
356 $tpl->set( 'lastmod', $this->lastModified( $page ) );
357 }
358 }
359 $tpl->set( 'copyright', $this->getCopyright() );
360 }
361 wfProfileOut( __METHOD__ . '-stuff3' );
362
363 wfProfileIn( __METHOD__ . '-stuff4' );
364 $tpl->set( 'copyrightico', $this->getCopyrightIcon() );
365 $tpl->set( 'poweredbyico', $this->getPoweredBy() );
366 $tpl->set( 'disclaimer', $this->disclaimerLink() );
367 $tpl->set( 'privacy', $this->privacyLink() );
368 $tpl->set( 'about', $this->aboutLink() );
369
370 $tpl->set( 'footerlinks', array(
371 'info' => array(
372 'lastmod',
373 'viewcount',
374 'numberofwatchingusers',
375 'credits',
376 'copyright',
377 ),
378 'places' => array(
379 'privacy',
380 'about',
381 'disclaimer',
382 ),
383 ) );
384
385 global $wgFooterIcons;
386 $tpl->set( 'footericons', $wgFooterIcons );
387 foreach ( $tpl->data['footericons'] as $footerIconsKey => &$footerIconsBlock ) {
388 if ( count( $footerIconsBlock ) > 0 ) {
389 foreach ( $footerIconsBlock as &$footerIcon ) {
390 if ( isset( $footerIcon['src'] ) ) {
391 if ( !isset( $footerIcon['width'] ) ) {
392 $footerIcon['width'] = 88;
393 }
394 if ( !isset( $footerIcon['height'] ) ) {
395 $footerIcon['height'] = 31;
396 }
397 }
398 }
399 } else {
400 unset( $tpl->data['footericons'][$footerIconsKey] );
401 }
402 }
403
404 if ( $wgDebugComments ) {
405 $tpl->setRef( 'debug', $out->mDebugtext );
406 } else {
407 $tpl->set( 'debug', '' );
408 }
409
410 $tpl->set( 'reporttime', wfReportTime() );
411 $tpl->set( 'sitenotice', $this->getSiteNotice() );
412 $tpl->set( 'bottomscripts', $this->bottomScripts() );
413 $tpl->set( 'printfooter', $this->printSource() );
414
415 # Add a <div class="mw-content-ltr/rtl"> around the body text
416 # not for special pages or file pages AND only when viewing AND if the page exists
417 # (or is in MW namespace, because that has default content)
418 if( !in_array( $this->getTitle()->getNamespace(), array( NS_SPECIAL, NS_FILE ) ) &&
419 in_array( $request->getVal( 'action', 'view' ), array( 'view', 'historysubmit' ) ) &&
420 ( $this->getTitle()->exists() || $this->getTitle()->getNamespace() == NS_MEDIAWIKI ) ) {
421 $pageLang = $this->getTitle()->getPageLanguage();
422 $realBodyAttribs = array( 'lang' => $pageLang->getCode(), 'dir' => $pageLang->getDir(),
423 'class' => 'mw-content-'.$pageLang->getDir() );
424 $out->mBodytext = Html::rawElement( 'div', $realBodyAttribs, $out->mBodytext );
425 }
426
427 $tpl->setRef( 'bodytext', $out->mBodytext );
428
429 # Language links
430 $language_urls = array();
431
432 if ( !$wgHideInterlanguageLinks ) {
433 foreach( $out->getLanguageLinks() as $l ) {
434 $tmp = explode( ':', $l, 2 );
435 $class = 'interwiki-' . $tmp[0];
436 unset( $tmp );
437 $nt = Title::newFromText( $l );
438 if ( $nt ) {
439 $language_urls[] = array(
440 'href' => $nt->getFullURL(),
441 'text' => ( $wgContLang->getLanguageName( $nt->getInterwiki() ) != '' ?
442 $wgContLang->getLanguageName( $nt->getInterwiki() ) : $l ),
443 'title' => $nt->getText(),
444 'class' => $class
445 );
446 }
447 }
448 }
449 if( count( $language_urls ) ) {
450 $tpl->setRef( 'language_urls', $language_urls );
451 } else {
452 $tpl->set( 'language_urls', false );
453 }
454 wfProfileOut( __METHOD__ . '-stuff4' );
455
456 wfProfileIn( __METHOD__ . '-stuff5' );
457 # Personal toolbar
458 $tpl->set( 'personal_urls', $this->buildPersonalUrls() );
459 $content_navigation = $this->buildContentNavigationUrls();
460 $content_actions = $this->buildContentActionUrls( $content_navigation );
461 $tpl->setRef( 'content_navigation', $content_navigation );
462 $tpl->setRef( 'content_actions', $content_actions );
463
464 $tpl->set( 'sidebar', $this->buildSidebar() );
465 $tpl->set( 'nav_urls', $this->buildNavUrls() );
466
467 // Set the head scripts near the end, in case the above actions resulted in added scripts
468 if ( $this->useHeadElement ) {
469 $tpl->set( 'headelement', $out->headElement( $this ) );
470 } else {
471 $tpl->set( 'headscripts', $out->getScript() );
472 }
473
474 $tpl->set( 'debughtml', $this->generateDebugHTML() );
475
476 // original version by hansm
477 if( !wfRunHooks( 'SkinTemplateOutputPageBeforeExec', array( &$this, &$tpl ) ) ) {
478 wfDebug( __METHOD__ . ": Hook SkinTemplateOutputPageBeforeExec broke outputPage execution!\n" );
479 }
480
481 // Set the bodytext to another key so that skins can just output it on it's own
482 // and output printfooter and debughtml separately
483 $tpl->set( 'bodycontent', $tpl->data['bodytext'] );
484
485 // Append printfooter and debughtml onto bodytext so that skins that were already
486 // using bodytext before they were split out don't suddenly start not outputting information
487 $tpl->data['bodytext'] .= Html::rawElement( 'div', array( 'class' => 'printfooter' ), "\n{$tpl->data['printfooter']}" ) . "\n";
488 $tpl->data['bodytext'] .= $tpl->data['debughtml'];
489
490 // allow extensions adding stuff after the page content.
491 // See Skin::afterContentHook() for further documentation.
492 $tpl->set( 'dataAfterContent', $this->afterContentHook() );
493 wfProfileOut( __METHOD__ . '-stuff5' );
494
495 // execute template
496 wfProfileIn( __METHOD__ . '-execute' );
497 $res = $tpl->execute();
498 wfProfileOut( __METHOD__ . '-execute' );
499
500 // result may be an error
501 $this->printOrError( $res );
502
503 if ( $oldContext ) {
504 $this->setContext( $oldContext );
505 }
506 wfProfileOut( __METHOD__ );
507 }
508
509 /**
510 * Output the string, or print error message if it's
511 * an error object of the appropriate type.
512 * For the base class, assume strings all around.
513 *
514 * @param $str Mixed
515 * @private
516 */
517 function printOrError( $str ) {
518 echo $str;
519 }
520
521 /**
522 * Output a boolean indiciating if buildPersonalUrls should output separate
523 * login and create account links or output a combined link
524 * By default we simply return a global config setting that affects most skins
525 * This is setup as a method so that like with $wgLogo and getLogo() a skin
526 * can override this setting and always output one or the other if it has
527 * a reason it can't output one of the two modes.
528 */
529 function useCombinedLoginLink() {
530 global $wgUseCombinedLoginLink;
531 return $wgUseCombinedLoginLink;
532 }
533
534 /**
535 * build array of urls for personal toolbar
536 * @return array
537 */
538 protected function buildPersonalUrls() {
539 $title = $this->getTitle();
540 $request = $this->getRequest();
541 $pageurl = $title->getLocalURL();
542 wfProfileIn( __METHOD__ );
543
544 /* set up the default links for the personal toolbar */
545 $personal_urls = array();
546
547 $page = $request->getVal( 'returnto', $this->thispage );
548 $query = $request->getVal( 'returntoquery', $this->thisquery );
549 $a = array( 'returnto' => $page );
550 if( $query != '' ) {
551 $a['returntoquery'] = $query;
552 }
553 $returnto = wfArrayToCGI( $a );
554 if( $this->loggedin ) {
555 $personal_urls['userpage'] = array(
556 'text' => $this->userdisplayname,
557 'href' => &$this->userpageUrlDetails['href'],
558 'class' => $this->userpageUrlDetails['exists'] ? false : 'new',
559 'active' => ( $this->userpageUrlDetails['href'] == $pageurl )
560 );
561 $usertalkUrlDetails = $this->makeTalkUrlDetails( $this->userpage );
562 $personal_urls['mytalk'] = array(
563 'text' => $this->msg( 'mytalk' )->text(),
564 'href' => &$usertalkUrlDetails['href'],
565 'class' => $usertalkUrlDetails['exists'] ? false : 'new',
566 'active' => ( $usertalkUrlDetails['href'] == $pageurl )
567 );
568 $href = self::makeSpecialUrl( 'Preferences' );
569 $personal_urls['preferences'] = array(
570 'text' => $this->msg( 'mypreferences' )->text(),
571 'href' => $href,
572 'active' => ( $href == $pageurl )
573 );
574 $href = self::makeSpecialUrl( 'Watchlist' );
575 $personal_urls['watchlist'] = array(
576 'text' => $this->msg( 'mywatchlist' )->text(),
577 'href' => $href,
578 'active' => ( $href == $pageurl )
579 );
580
581 # We need to do an explicit check for Special:Contributions, as we
582 # have to match both the title, and the target (which could come
583 # from request values or be specified in "sub page" form. The plot
584 # thickens, because $wgTitle is altered for special pages, so doesn't
585 # contain the original alias-with-subpage.
586 $origTitle = Title::newFromText( $request->getText( 'title' ) );
587 if( $origTitle instanceof Title && $origTitle->isSpecialPage() ) {
588 list( $spName, $spPar ) = SpecialPageFactory::resolveAlias( $origTitle->getText() );
589 $active = $spName == 'Contributions'
590 && ( ( $spPar && $spPar == $this->username )
591 || $request->getText( 'target' ) == $this->username );
592 } else {
593 $active = false;
594 }
595
596 $href = self::makeSpecialUrlSubpage( 'Contributions', $this->username );
597 $personal_urls['mycontris'] = array(
598 'text' => $this->msg( 'mycontris' )->text(),
599 'href' => $href,
600 'active' => $active
601 );
602 $personal_urls['logout'] = array(
603 'text' => $this->msg( 'userlogout' )->text(),
604 'href' => self::makeSpecialUrl( 'Userlogout',
605 // userlogout link must always contain an & character, otherwise we might not be able
606 // to detect a buggy precaching proxy (bug 17790)
607 $title->isSpecial( 'Preferences' ) ? 'noreturnto' : $returnto
608 ),
609 'active' => false
610 );
611 } else {
612 $useCombinedLoginLink = $this->useCombinedLoginLink();
613 $loginlink = $this->getUser()->isAllowed( 'createaccount' ) && $useCombinedLoginLink
614 ? 'nav-login-createaccount'
615 : 'login';
616 $is_signup = $request->getText('type') == "signup";
617
618 # anonlogin & login are the same
619 $login_url = array(
620 'text' => $this->msg( $loginlink )->text(),
621 'href' => self::makeSpecialUrl( 'Userlogin', $returnto ),
622 'active' => $title->isSpecial( 'Userlogin' ) && ( $loginlink == "nav-login-createaccount" || !$is_signup )
623 );
624 if ( $this->getUser()->isAllowed( 'createaccount' ) && !$useCombinedLoginLink ) {
625 $createaccount_url = array(
626 'text' => $this->msg( 'createaccount' )->text(),
627 'href' => self::makeSpecialUrl( 'Userlogin', "$returnto&type=signup" ),
628 'active' => $title->isSpecial( 'Userlogin' ) && $is_signup
629 );
630 }
631 global $wgServer, $wgSecureLogin;
632 if( substr( $wgServer, 0, 5 ) === 'http:' && $wgSecureLogin ) {
633 $title = SpecialPage::getTitleFor( 'Userlogin' );
634 $https_url = preg_replace( '/^http:/', 'https:', $title->getFullURL() );
635 $login_url['href'] = $https_url;
636 # @todo FIXME: Class depends on skin
637 $login_url['class'] = 'link-https';
638 if ( isset($createaccount_url) ) {
639 $https_url = preg_replace( '/^http:/', 'https:',
640 $title->getFullURL("type=signup") );
641 $createaccount_url['href'] = $https_url;
642 # @todo FIXME: Class depends on skin
643 $createaccount_url['class'] = 'link-https';
644 }
645 }
646
647
648 if( $this->showIPinHeader() ) {
649 $href = &$this->userpageUrlDetails['href'];
650 $personal_urls['anonuserpage'] = array(
651 'text' => $this->userdisplayname,
652 'href' => $href,
653 'class' => $this->userpageUrlDetails['exists'] ? false : 'new',
654 'active' => ( $pageurl == $href )
655 );
656 $usertalkUrlDetails = $this->makeTalkUrlDetails( $this->userpage );
657 $href = &$usertalkUrlDetails['href'];
658 $personal_urls['anontalk'] = array(
659 'text' => $this->msg( 'anontalk' )->text(),
660 'href' => $href,
661 'class' => $usertalkUrlDetails['exists'] ? false : 'new',
662 'active' => ( $pageurl == $href )
663 );
664 $personal_urls['anonlogin'] = $login_url;
665 } else {
666 $personal_urls['login'] = $login_url;
667 }
668 if ( isset($createaccount_url) ) {
669 $personal_urls['createaccount'] = $createaccount_url;
670 }
671 }
672
673 wfRunHooks( 'PersonalUrls', array( &$personal_urls, &$title ) );
674 wfProfileOut( __METHOD__ );
675 return $personal_urls;
676 }
677
678 /**
679 * TODO document
680 * @param $title Title
681 * @param $message String message key
682 * @param $selected Bool
683 * @param $query String
684 * @param $checkEdit Bool
685 * @return array
686 */
687 function tabAction( $title, $message, $selected, $query = '', $checkEdit = false ) {
688 $classes = array();
689 if( $selected ) {
690 $classes[] = 'selected';
691 }
692 if( $checkEdit && !$title->isKnown() ) {
693 $classes[] = 'new';
694 $query = 'action=edit&redlink=1';
695 }
696
697 // wfMessageFallback will nicely accept $message as an array of fallbacks
698 // or just a single key
699 $msg = wfMessageFallback( $message )->setContext( $this->getContext() );
700 if ( is_array($message) ) {
701 // for hook compatibility just keep the last message name
702 $message = end($message);
703 }
704 if ( $msg->exists() ) {
705 $text = $msg->text();
706 } else {
707 global $wgContLang;
708 $text = $wgContLang->getFormattedNsText(
709 MWNamespace::getSubject( $title->getNamespace() ) );
710 }
711
712 $result = array();
713 if( !wfRunHooks( 'SkinTemplateTabAction', array( &$this,
714 $title, $message, $selected, $checkEdit,
715 &$classes, &$query, &$text, &$result ) ) ) {
716 return $result;
717 }
718
719 return array(
720 'class' => implode( ' ', $classes ),
721 'text' => $text,
722 'href' => $title->getLocalUrl( $query ),
723 'primary' => true );
724 }
725
726 function makeTalkUrlDetails( $name, $urlaction = '' ) {
727 $title = Title::newFromText( $name );
728 if( !is_object( $title ) ) {
729 throw new MWException( __METHOD__ . " given invalid pagename $name" );
730 }
731 $title = $title->getTalkPage();
732 self::checkTitle( $title, $name );
733 return array(
734 'href' => $title->getLocalURL( $urlaction ),
735 'exists' => $title->getArticleID() != 0,
736 );
737 }
738
739 function makeArticleUrlDetails( $name, $urlaction = '' ) {
740 $title = Title::newFromText( $name );
741 $title= $title->getSubjectPage();
742 self::checkTitle( $title, $name );
743 return array(
744 'href' => $title->getLocalURL( $urlaction ),
745 'exists' => $title->getArticleID() != 0,
746 );
747 }
748
749 /**
750 * a structured array of links usually used for the tabs in a skin
751 *
752 * There are 4 standard sections
753 * namespaces: Used for namespace tabs like special, page, and talk namespaces
754 * views: Used for primary page views like read, edit, history
755 * actions: Used for most extra page actions like deletion, protection, etc...
756 * variants: Used to list the language variants for the page
757 *
758 * Each section's value is a key/value array of links for that section.
759 * The links themseves have these common keys:
760 * - class: The css classes to apply to the tab
761 * - text: The text to display on the tab
762 * - href: The href for the tab to point to
763 * - rel: An optional rel= for the tab's link
764 * - redundant: If true the tab will be dropped in skins using content_actions
765 * this is useful for tabs like "Read" which only have meaning in skins that
766 * take special meaning from the grouped structure of content_navigation
767 *
768 * Views also have an extra key which can be used:
769 * - primary: If this is not true skins like vector may try to hide the tab
770 * when the user has limited space in their browser window
771 *
772 * content_navigation using code also expects these ids to be present on the
773 * links, however these are usually automatically generated by SkinTemplate
774 * itself and are not necessary when using a hook. The only things these may
775 * matter to are people modifying content_navigation after it's initial creation:
776 * - id: A "preferred" id, most skins are best off outputting this preferred id for best compatibility
777 * - tooltiponly: This is set to true for some tabs in cases where the system
778 * believes that the accesskey should not be added to the tab.
779 *
780 * @return array
781 */
782 protected function buildContentNavigationUrls() {
783 global $wgDisableLangConversion;
784
785 wfProfileIn( __METHOD__ );
786
787 $title = $this->getRelevantTitle(); // Display tabs for the relevant title rather than always the title itself
788 $onPage = $title->equals($this->getTitle());
789
790 $out = $this->getOutput();
791 $request = $this->getRequest();
792 $user = $this->getUser();
793
794 $content_navigation = array(
795 'namespaces' => array(),
796 'views' => array(),
797 'actions' => array(),
798 'variants' => array()
799 );
800
801 // parameters
802 $action = $request->getVal( 'action', 'view' );
803
804 $userCanRead = $title->quickUserCan( 'read', $user );
805
806 $preventActiveTabs = false;
807 wfRunHooks( 'SkinTemplatePreventOtherActiveTabs', array( &$this, &$preventActiveTabs ) );
808
809 // Checks if page is some kind of content
810 if( $title->canExist() ) {
811 // Gets page objects for the related namespaces
812 $subjectPage = $title->getSubjectPage();
813 $talkPage = $title->getTalkPage();
814
815 // Determines if this is a talk page
816 $isTalk = $title->isTalkPage();
817
818 // Generates XML IDs from namespace names
819 $subjectId = $title->getNamespaceKey( '' );
820
821 if ( $subjectId == 'main' ) {
822 $talkId = 'talk';
823 } else {
824 $talkId = "{$subjectId}_talk";
825 }
826
827 $skname = $this->skinname;
828
829 // Adds namespace links
830 $subjectMsg = array( "nstab-$subjectId" );
831 if ( $subjectPage->isMainPage() ) {
832 array_unshift($subjectMsg, 'mainpage-nstab');
833 }
834 $content_navigation['namespaces'][$subjectId] = $this->tabAction(
835 $subjectPage, $subjectMsg, !$isTalk && !$preventActiveTabs, '', $userCanRead
836 );
837 $content_navigation['namespaces'][$subjectId]['context'] = 'subject';
838 $content_navigation['namespaces'][$talkId] = $this->tabAction(
839 $talkPage, array( "nstab-$talkId", 'talk' ), $isTalk && !$preventActiveTabs, '', $userCanRead
840 );
841 $content_navigation['namespaces'][$talkId]['context'] = 'talk';
842
843 if ( $userCanRead ) {
844 // Adds view view link
845 if ( $title->exists() ) {
846 $content_navigation['views']['view'] = $this->tabAction(
847 $isTalk ? $talkPage : $subjectPage,
848 array( "$skname-view-view", 'view' ),
849 ( $onPage && ($action == 'view' || $action == 'purge' ) ), '', true
850 );
851 $content_navigation['views']['view']['redundant'] = true; // signal to hide this from simple content_actions
852 }
853
854 wfProfileIn( __METHOD__ . '-edit' );
855
856 // Checks if user can edit the current page if it exists or create it otherwise
857 if ( $title->quickUserCan( 'edit', $user ) && ( $title->exists() || $title->quickUserCan( 'create', $user ) ) ) {
858 // Builds CSS class for talk page links
859 $isTalkClass = $isTalk ? ' istalk' : '';
860 // Whether the user is editing the page
861 $isEditing = $onPage && ( $action == 'edit' || $action == 'submit' );
862 // Whether to show the "Add a new section" tab
863 // Checks if this is a current rev of talk page and is not forced to be hidden
864 $showNewSection = !$out->forceHideNewSectionLink()
865 && ( ( $isTalk && $this->isRevisionCurrent() ) || $out->showNewSectionLink() );
866 $section = $request->getVal( 'section' );
867
868 $msgKey = $title->exists() || ( $title->getNamespace() == NS_MEDIAWIKI && $title->getDefaultMessageText() !== false ) ?
869 "edit" : "create";
870 $content_navigation['views']['edit'] = array(
871 'class' => ( $isEditing && ( $section !== 'new' || !$showNewSection ) ? 'selected' : '' ) . $isTalkClass,
872 'text' => wfMessageFallback( "$skname-view-$msgKey", $msgKey )->setContext( $this->getContext() )->text(),
873 'href' => $title->getLocalURL( $this->editUrlOptions() ),
874 'primary' => true, // don't collapse this in vector
875 );
876
877 // section link
878 if ( $showNewSection ) {
879 // Adds new section link
880 //$content_navigation['actions']['addsection']
881 $content_navigation['views']['addsection'] = array(
882 'class' => ( $isEditing && $section == 'new' ) ? 'selected' : false,
883 'text' => wfMessageFallback( "$skname-action-addsection", 'addsection' )->setContext( $this->getContext() )->text(),
884 'href' => $title->getLocalURL( 'action=edit&section=new' )
885 );
886 }
887 // Checks if the page has some kind of viewable content
888 } elseif ( $title->hasSourceText() ) {
889 // Adds view source view link
890 $content_navigation['views']['viewsource'] = array(
891 'class' => ( $onPage && $action == 'edit' ) ? 'selected' : false,
892 'text' => wfMessageFallback( "$skname-action-viewsource", 'viewsource' )->setContext( $this->getContext() )->text(),
893 'href' => $title->getLocalURL( $this->editUrlOptions() ),
894 'primary' => true, // don't collapse this in vector
895 );
896 }
897 wfProfileOut( __METHOD__ . '-edit' );
898
899 wfProfileIn( __METHOD__ . '-live' );
900 // Checks if the page exists
901 if ( $title->exists() ) {
902 // Adds history view link
903 $content_navigation['views']['history'] = array(
904 'class' => ( $onPage && $action == 'history' ) ? 'selected' : false,
905 'text' => wfMessageFallback( "$skname-view-history", 'history_short' )->setContext( $this->getContext() )->text(),
906 'href' => $title->getLocalURL( 'action=history' ),
907 'rel' => 'archives',
908 );
909
910 if ( $title->quickUserCan( 'delete', $user ) ) {
911 $content_navigation['actions']['delete'] = array(
912 'class' => ( $onPage && $action == 'delete' ) ? 'selected' : false,
913 'text' => wfMessageFallback( "$skname-action-delete", 'delete' )->setContext( $this->getContext() )->text(),
914 'href' => $title->getLocalURL( 'action=delete' )
915 );
916 }
917
918 if ( $title->quickUserCan( 'move', $user ) ) {
919 $moveTitle = SpecialPage::getTitleFor( 'Movepage', $title->getPrefixedDBkey() );
920 $content_navigation['actions']['move'] = array(
921 'class' => $this->getTitle()->isSpecial( 'Movepage' ) ? 'selected' : false,
922 'text' => wfMessageFallback( "$skname-action-move", 'move' )->setContext( $this->getContext() )->text(),
923 'href' => $moveTitle->getLocalURL()
924 );
925 }
926 } else {
927 // article doesn't exist or is deleted
928 if ( $user->isAllowed( 'deletedhistory' ) ) {
929 $n = $title->isDeleted();
930 if( $n ) {
931 $undelTitle = SpecialPage::getTitleFor( 'Undelete' );
932 // If the user can't undelete but can view deleted history show them a "View .. deleted" tab instead
933 $msgKey = $user->isAllowed( 'undelete' ) ? 'undelete' : 'viewdeleted';
934 $content_navigation['actions']['undelete'] = array(
935 'class' => $this->getTitle()->isSpecial( 'Undelete' ) ? 'selected' : false,
936 'text' => wfMessageFallback( "$skname-action-$msgKey", "{$msgKey}_short" )
937 ->setContext( $this->getContext() )->numParams( $n )->text(),
938 'href' => $undelTitle->getLocalURL( array( 'target' => $title->getPrefixedDBkey() ) )
939 );
940 }
941 }
942 }
943
944 if ( $title->getNamespace() !== NS_MEDIAWIKI && $title->quickUserCan( 'protect', $user ) ) {
945 $mode = $title->isProtected() ? 'unprotect' : 'protect';
946 $content_navigation['actions'][$mode] = array(
947 'class' => ( $onPage && $action == $mode ) ? 'selected' : false,
948 'text' => wfMessageFallback( "$skname-action-$mode", $mode )->setContext( $this->getContext() )->text(),
949 'href' => $title->getLocalURL( "action=$mode" )
950 );
951 }
952
953 wfProfileOut( __METHOD__ . '-live' );
954
955 // Checks if the user is logged in
956 if ( $this->loggedin ) {
957 /**
958 * The following actions use messages which, if made particular to
959 * the any specific skins, would break the Ajax code which makes this
960 * action happen entirely inline. Skin::makeGlobalVariablesScript
961 * defines a set of messages in a javascript object - and these
962 * messages are assumed to be global for all skins. Without making
963 * a change to that procedure these messages will have to remain as
964 * the global versions.
965 */
966 $mode = $title->userIsWatching() ? 'unwatch' : 'watch';
967 $token = WatchAction::getWatchToken( $title, $user, $mode );
968 $content_navigation['actions'][$mode] = array(
969 'class' => $onPage && ( $action == 'watch' || $action == 'unwatch' ) ? 'selected' : false,
970 'text' => $this->msg( $mode )->text(), // uses 'watch' or 'unwatch' message
971 'href' => $title->getLocalURL( array( 'action' => $mode, 'token' => $token ) )
972 );
973 }
974 }
975
976 wfRunHooks( 'SkinTemplateNavigation', array( &$this, &$content_navigation ) );
977
978 if ( $userCanRead && !$wgDisableLangConversion ) {
979 $pageLang = $title->getPageLanguage();
980 // Gets list of language variants
981 $variants = $pageLang->getVariants();
982 // Checks that language conversion is enabled and variants exist
983 // And if it is not in the special namespace
984 if( count( $variants ) > 1 ) {
985 // Gets preferred variant (note that user preference is
986 // only possible for wiki content language variant)
987 $preferred = $pageLang->getPreferredVariant();
988 // Loops over each variant
989 foreach( $variants as $code ) {
990 // Gets variant name from language code
991 $varname = $pageLang->getVariantname( $code );
992 // Checks if the variant is marked as disabled
993 if( $varname == 'disable' ) {
994 // Skips this variant
995 continue;
996 }
997 // Appends variant link
998 $content_navigation['variants'][] = array(
999 'class' => ( $code == $preferred ) ? 'selected' : false,
1000 'text' => $varname,
1001 'href' => $title->getLocalURL( '', $code )
1002 );
1003 }
1004 }
1005 }
1006 } else {
1007 // If it's not content, it's got to be a special page
1008 $content_navigation['namespaces']['special'] = array(
1009 'class' => 'selected',
1010 'text' => $this->msg( 'nstab-special' )->text(),
1011 'href' => $request->getRequestURL(), // @bug 2457, 2510
1012 'context' => 'subject'
1013 );
1014
1015 wfRunHooks( 'SkinTemplateNavigation::SpecialPage',
1016 array( &$this, &$content_navigation ) );
1017 }
1018
1019 // Equiv to SkinTemplateContentActions
1020 wfRunHooks( 'SkinTemplateNavigation::Universal', array( &$this, &$content_navigation ) );
1021
1022 // Setup xml ids and tooltip info
1023 foreach ( $content_navigation as $section => &$links ) {
1024 foreach ( $links as $key => &$link ) {
1025 $xmlID = $key;
1026 if ( isset( $link['context'] ) && $link['context'] == 'subject' ) {
1027 $xmlID = 'ca-nstab-' . $xmlID;
1028 } elseif ( isset( $link['context'] ) && $link['context'] == 'talk' ) {
1029 $xmlID = 'ca-talk';
1030 } elseif ( $section == "variants" ) {
1031 $xmlID = 'ca-varlang-' . $xmlID;
1032 } else {
1033 $xmlID = 'ca-' . $xmlID;
1034 }
1035 $link['id'] = $xmlID;
1036 }
1037 }
1038
1039 # We don't want to give the watch tab an accesskey if the
1040 # page is being edited, because that conflicts with the
1041 # accesskey on the watch checkbox. We also don't want to
1042 # give the edit tab an accesskey, because that's fairly su-
1043 # perfluous and conflicts with an accesskey (Ctrl-E) often
1044 # used for editing in Safari.
1045 if( in_array( $action, array( 'edit', 'submit' ) ) ) {
1046 if ( isset($content_navigation['views']['edit']) ) {
1047 $content_navigation['views']['edit']['tooltiponly'] = true;
1048 }
1049 if ( isset($content_navigation['actions']['watch']) ) {
1050 $content_navigation['actions']['watch']['tooltiponly'] = true;
1051 }
1052 if ( isset($content_navigation['actions']['unwatch']) ) {
1053 $content_navigation['actions']['unwatch']['tooltiponly'] = true;
1054 }
1055 }
1056
1057 wfProfileOut( __METHOD__ );
1058
1059 return $content_navigation;
1060 }
1061
1062 /**
1063 * an array of edit links by default used for the tabs
1064 * @return array
1065 * @private
1066 */
1067 function buildContentActionUrls( $content_navigation ) {
1068
1069 wfProfileIn( __METHOD__ );
1070
1071 // content_actions has been replaced with content_navigation for backwards
1072 // compatibility and also for skins that just want simple tabs content_actions
1073 // is now built by flattening the content_navigation arrays into one
1074
1075 $content_actions = array();
1076
1077 foreach ( $content_navigation as $links ) {
1078
1079 foreach ( $links as $key => $value ) {
1080
1081 if ( isset($value["redundant"]) && $value["redundant"] ) {
1082 // Redundant tabs are dropped from content_actions
1083 continue;
1084 }
1085
1086 // content_actions used to have ids built using the "ca-$key" pattern
1087 // so the xmlID based id is much closer to the actual $key that we want
1088 // for that reason we'll just strip out the ca- if present and use
1089 // the latter potion of the "id" as the $key
1090 if ( isset($value["id"]) && substr($value["id"], 0, 3) == "ca-" ) {
1091 $key = substr($value["id"], 3);
1092 }
1093
1094 if ( isset($content_actions[$key]) ) {
1095 wfDebug( __METHOD__ . ": Found a duplicate key for $key while flattening content_navigation into content_actions." );
1096 continue;
1097 }
1098
1099 $content_actions[$key] = $value;
1100
1101 }
1102
1103 }
1104
1105 wfProfileOut( __METHOD__ );
1106
1107 return $content_actions;
1108 }
1109
1110 /**
1111 * build array of common navigation links
1112 * @return array
1113 * @private
1114 */
1115 protected function buildNavUrls() {
1116 global $wgUploadNavigationUrl;
1117
1118 wfProfileIn( __METHOD__ );
1119
1120 $out = $this->getOutput();
1121 $request = $this->getRequest();
1122
1123 $nav_urls = array();
1124 $nav_urls['mainpage'] = array( 'href' => self::makeMainPageUrl() );
1125 if( $wgUploadNavigationUrl ) {
1126 $nav_urls['upload'] = array( 'href' => $wgUploadNavigationUrl );
1127 } elseif( UploadBase::isEnabled() && UploadBase::isAllowed( $this->getUser() ) === true ) {
1128 $nav_urls['upload'] = array( 'href' => self::makeSpecialUrl( 'Upload' ) );
1129 } else {
1130 $nav_urls['upload'] = false;
1131 }
1132 $nav_urls['specialpages'] = array( 'href' => self::makeSpecialUrl( 'Specialpages' ) );
1133
1134 $nav_urls['print'] = false;
1135 $nav_urls['permalink'] = false;
1136 $nav_urls['whatlinkshere'] = false;
1137 $nav_urls['recentchangeslinked'] = false;
1138 $nav_urls['contributions'] = false;
1139 $nav_urls['log'] = false;
1140 $nav_urls['blockip'] = false;
1141 $nav_urls['emailuser'] = false;
1142
1143 // A print stylesheet is attached to all pages, but nobody ever
1144 // figures that out. :) Add a link...
1145 if( $out->isArticle() ) {
1146 if ( !$out->isPrintable() ) {
1147 $nav_urls['print'] = array(
1148 'text' => $this->msg( 'printableversion' )->text(),
1149 'href' => $this->getTitle()->getLocalURL(
1150 $request->appendQueryValue( 'printable', 'yes', true ) )
1151 );
1152 }
1153
1154 // Also add a "permalink" while we're at it
1155 $revid = $this->getRevisionId();
1156 if ( $revid ) {
1157 $nav_urls['permalink'] = array(
1158 'text' => $this->msg( 'permalink' )->text(),
1159 'href' => $out->getTitle()->getLocalURL( "oldid=$revid" )
1160 );
1161 }
1162
1163 // Use the copy of revision ID in case this undocumented, shady hook tries to mess with internals
1164 wfRunHooks( 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink',
1165 array( &$this, &$nav_urls, &$revid, &$revid ) );
1166 }
1167
1168 if ( $out->isArticleRelated() ) {
1169 $nav_urls['whatlinkshere'] = array(
1170 'href' => SpecialPage::getTitleFor( 'Whatlinkshere', $this->thispage )->getLocalUrl()
1171 );
1172 if ( $this->getTitle()->getArticleId() ) {
1173 $nav_urls['recentchangeslinked'] = array(
1174 'href' => SpecialPage::getTitleFor( 'Recentchangeslinked', $this->thispage )->getLocalUrl()
1175 );
1176 }
1177 }
1178
1179 $user = $this->getRelevantUser();
1180 if ( $user ) {
1181 $rootUser = $user->getName();
1182
1183 $nav_urls['contributions'] = array(
1184 'href' => self::makeSpecialUrlSubpage( 'Contributions', $rootUser )
1185 );
1186
1187 if ( $user->isLoggedIn() ) {
1188 $logPage = SpecialPage::getTitleFor( 'Log' );
1189 $nav_urls['log'] = array(
1190 'href' => $logPage->getLocalUrl( array( 'user' => $rootUser ) )
1191 );
1192 }
1193
1194 if ( $this->getUser()->isAllowed( 'block' ) ) {
1195 $nav_urls['blockip'] = array(
1196 'href' => self::makeSpecialUrlSubpage( 'Block', $rootUser )
1197 );
1198 }
1199
1200 if ( $this->showEmailUser( $user ) ) {
1201 $nav_urls['emailuser'] = array(
1202 'href' => self::makeSpecialUrlSubpage( 'Emailuser', $rootUser )
1203 );
1204 }
1205 }
1206
1207 wfProfileOut( __METHOD__ );
1208 return $nav_urls;
1209 }
1210
1211 /**
1212 * Generate strings used for xml 'id' names
1213 * @return string
1214 * @private
1215 */
1216 function getNameSpaceKey() {
1217 return $this->getTitle()->getNamespaceKey();
1218 }
1219
1220 /**
1221 * @private
1222 * @todo FIXME: Why is this duplicated in/from OutputPage::getHeadScripts()??
1223 */
1224 function setupUserJs( $allowUserJs ) {
1225 global $wgJsMimeType;
1226 wfProfileIn( __METHOD__ );
1227
1228 if( $allowUserJs && $this->loggedin ) {
1229 if( $this->getTitle()->isJsSubpage() and $this->getOutput()->userCanPreview() ) {
1230 # XXX: additional security check/prompt?
1231 $this->userjsprev = '/*<![CDATA[*/ ' . $this->getRequest()->getText( 'wpTextbox1' ) . ' /*]]>*/';
1232 } else {
1233 $this->userjs = self::makeUrl( $this->userpage . '/' . $this->skinname . '.js', 'action=raw&ctype=' . $wgJsMimeType );
1234 }
1235 }
1236 wfProfileOut( __METHOD__ );
1237 }
1238
1239 public function commonPrintStylesheet() {
1240 return false;
1241 }
1242 }
1243
1244 /**
1245 * Generic wrapper for template functions, with interface
1246 * compatible with what we use of PHPTAL 0.7.
1247 * @ingroup Skins
1248 */
1249 abstract class QuickTemplate {
1250 /**
1251 * Constructor
1252 */
1253 public function QuickTemplate() {
1254 $this->data = array();
1255 $this->translator = new MediaWiki_I18N();
1256 }
1257
1258 /**
1259 * Sets the value $value to $name
1260 * @param $name
1261 * @param $value
1262 */
1263 public function set( $name, $value ) {
1264 $this->data[$name] = $value;
1265 }
1266
1267 /**
1268 * @param $name
1269 * @param $value
1270 */
1271 public function setRef( $name, &$value ) {
1272 $this->data[$name] =& $value;
1273 }
1274
1275 /**
1276 * @param $t
1277 */
1278 public function setTranslator( &$t ) {
1279 $this->translator = &$t;
1280 }
1281
1282 /**
1283 * Main function, used by classes that subclass QuickTemplate
1284 * to show the actual HTML output
1285 */
1286 abstract public function execute();
1287
1288 /**
1289 * @private
1290 */
1291 function text( $str ) {
1292 echo htmlspecialchars( $this->data[$str] );
1293 }
1294
1295 /**
1296 * @private
1297 */
1298 function jstext( $str ) {
1299 echo Xml::escapeJsString( $this->data[$str] );
1300 }
1301
1302 /**
1303 * @private
1304 */
1305 function html( $str ) {
1306 echo $this->data[$str];
1307 }
1308
1309 /**
1310 * @private
1311 */
1312 function msg( $str ) {
1313 echo htmlspecialchars( $this->translator->translate( $str ) );
1314 }
1315
1316 /**
1317 * @private
1318 */
1319 function msgHtml( $str ) {
1320 echo $this->translator->translate( $str );
1321 }
1322
1323 /**
1324 * An ugly, ugly hack.
1325 * @private
1326 */
1327 function msgWiki( $str ) {
1328 global $wgOut;
1329
1330 $text = $this->translator->translate( $str );
1331 echo $wgOut->parse( $text );
1332 }
1333
1334 /**
1335 * @private
1336 */
1337 function haveData( $str ) {
1338 return isset( $this->data[$str] );
1339 }
1340
1341 /**
1342 * @private
1343 *
1344 * @return bool
1345 */
1346 function haveMsg( $str ) {
1347 $msg = $this->translator->translate( $str );
1348 return ( $msg != '-' ) && ( $msg != '' ); # ????
1349 }
1350
1351 /**
1352 * Get the Skin object related to this object
1353 *
1354 * @return Skin object
1355 */
1356 public function getSkin() {
1357 return $this->data['skin'];
1358 }
1359 }
1360
1361 /**
1362 * New base template for a skin's template extended from QuickTemplate
1363 * this class features helper methods that provide common ways of interacting
1364 * with the data stored in the QuickTemplate
1365 */
1366 abstract class BaseTemplate extends QuickTemplate {
1367
1368 /**
1369 * Get a Message object with its context set
1370 *
1371 * @param $name Str message name
1372 * @return Message
1373 */
1374 public function getMsg( $name ) {
1375 return $this->getSkin()->msg( $name );
1376 }
1377
1378 function msg( $str ) {
1379 echo $this->getMsg( $str )->escaped();
1380 }
1381
1382 function msgHtml( $str ) {
1383 echo $this->getMsg( $str )->text();
1384 }
1385
1386 function msgWiki( $str ) {
1387 echo $this->getMsg( $str )->parseAsBlock();
1388 }
1389
1390 /**
1391 * Create an array of common toolbox items from the data in the quicktemplate
1392 * stored by SkinTemplate.
1393 * The resulting array is built acording to a format intended to be passed
1394 * through makeListItem to generate the html.
1395 */
1396 function getToolbox() {
1397 wfProfileIn( __METHOD__ );
1398
1399 $toolbox = array();
1400 if ( isset( $this->data['nav_urls']['whatlinkshere'] ) && $this->data['nav_urls']['whatlinkshere'] ) {
1401 $toolbox['whatlinkshere'] = $this->data['nav_urls']['whatlinkshere'];
1402 $toolbox['whatlinkshere']['id'] = 't-whatlinkshere';
1403 }
1404 if ( isset( $this->data['nav_urls']['recentchangeslinked'] ) && $this->data['nav_urls']['recentchangeslinked'] ) {
1405 $toolbox['recentchangeslinked'] = $this->data['nav_urls']['recentchangeslinked'];
1406 $toolbox['recentchangeslinked']['msg'] = 'recentchangeslinked-toolbox';
1407 $toolbox['recentchangeslinked']['id'] = 't-recentchangeslinked';
1408 }
1409 if ( isset( $this->data['feeds'] ) && $this->data['feeds'] ) {
1410 $toolbox['feeds']['id'] = 'feedlinks';
1411 $toolbox['feeds']['links'] = array();
1412 foreach ( $this->data['feeds'] as $key => $feed ) {
1413 $toolbox['feeds']['links'][$key] = $feed;
1414 $toolbox['feeds']['links'][$key]['id'] = "feed-$key";
1415 $toolbox['feeds']['links'][$key]['rel'] = 'alternate';
1416 $toolbox['feeds']['links'][$key]['type'] = "application/{$key}+xml";
1417 $toolbox['feeds']['links'][$key]['class'] = 'feedlink';
1418 }
1419 }
1420 foreach ( array( 'contributions', 'log', 'blockip', 'emailuser', 'upload', 'specialpages' ) as $special ) {
1421 if ( isset( $this->data['nav_urls'][$special] ) && $this->data['nav_urls'][$special] ) {
1422 $toolbox[$special] = $this->data['nav_urls'][$special];
1423 $toolbox[$special]['id'] = "t-$special";
1424 }
1425 }
1426 if ( isset( $this->data['nav_urls']['print'] ) && $this->data['nav_urls']['print'] ) {
1427 $toolbox['print'] = $this->data['nav_urls']['print'];
1428 $toolbox['print']['rel'] = 'alternate';
1429 $toolbox['print']['msg'] = 'printableversion';
1430 }
1431 if ( isset( $this->data['nav_urls']['permalink'] ) && $this->data['nav_urls']['permalink'] ) {
1432 $toolbox['permalink'] = $this->data['nav_urls']['permalink'];
1433 if( $toolbox['permalink']['href'] === '' ) {
1434 unset( $toolbox['permalink']['href'] );
1435 $toolbox['ispermalink']['tooltiponly'] = true;
1436 $toolbox['ispermalink']['id'] = 't-ispermalink';
1437 $toolbox['ispermalink']['msg'] = 'permalink';
1438 } else {
1439 $toolbox['permalink']['id'] = 't-permalink';
1440 }
1441 }
1442 wfRunHooks( 'BaseTemplateToolbox', array( &$this, &$toolbox ) );
1443 wfProfileOut( __METHOD__ );
1444 return $toolbox;
1445 }
1446
1447 /**
1448 * Create an array of personal tools items from the data in the quicktemplate
1449 * stored by SkinTemplate.
1450 * The resulting array is built acording to a format intended to be passed
1451 * through makeListItem to generate the html.
1452 * This is in reality the same list as already stored in personal_urls
1453 * however it is reformatted so that you can just pass the individual items
1454 * to makeListItem instead of hardcoding the element creation boilerplate.
1455 * @return array
1456 */
1457 function getPersonalTools() {
1458 $personal_tools = array();
1459 foreach( $this->data['personal_urls'] as $key => $ptool ) {
1460 # The class on a personal_urls item is meant to go on the <a> instead
1461 # of the <li> so we have to use a single item "links" array instead
1462 # of using most of the personal_url's keys directly
1463 $personal_tools[$key] = array();
1464 $personal_tools[$key]["links"][] = array();
1465 $personal_tools[$key]["links"][0]["single-id"] = $personal_tools[$key]["id"] = "pt-$key";
1466 if ( isset($ptool["active"]) ) {
1467 $personal_tools[$key]["active"] = $ptool["active"];
1468 }
1469 foreach ( array("href", "class", "text") as $k ) {
1470 if ( isset($ptool[$k]) )
1471 $personal_tools[$key]["links"][0][$k] = $ptool[$k];
1472 }
1473 }
1474 return $personal_tools;
1475 }
1476
1477 function getSidebar( $options = array() ) {
1478 // Force the rendering of the following portals
1479 $sidebar = $this->data['sidebar'];
1480 if ( !isset( $sidebar['SEARCH'] ) ) {
1481 $sidebar['SEARCH'] = true;
1482 }
1483 if ( !isset( $sidebar['TOOLBOX'] ) ) {
1484 $sidebar['TOOLBOX'] = true;
1485 }
1486 if ( !isset( $sidebar['LANGUAGES'] ) ) {
1487 $sidebar['LANGUAGES'] = true;
1488 }
1489
1490 if ( !isset( $options['search'] ) || $options['search'] !== true ) {
1491 unset( $sidebar['SEARCH'] );
1492 }
1493 if ( isset( $options['toolbox'] ) && $options['toolbox'] === false ) {
1494 unset( $sidebar['TOOLBOX'] );
1495 }
1496 if ( isset( $options['languages'] ) && $options['languages'] === false ) {
1497 unset( $sidebar['LANGUAGES'] );
1498 }
1499
1500 $boxes = array();
1501 foreach ( $sidebar as $boxName => $content ) {
1502 if ( $content === false ) {
1503 continue;
1504 }
1505 switch ( $boxName ) {
1506 case 'SEARCH':
1507 // Search is a special case, skins should custom implement this
1508 $boxes[$boxName] = array(
1509 'id' => "p-search",
1510 'header' => $this->getMsg( 'search' )->text(),
1511 'generated' => false,
1512 'content' => true,
1513 );
1514 break;
1515 case 'TOOLBOX':
1516 $msgObj = $this->getMsg( 'toolbox' );
1517 $boxes[$boxName] = array(
1518 'id' => "p-tb",
1519 'header' => $msgObj->exists() ? $msgObj->text() : 'toolbox',
1520 'generated' => false,
1521 'content' => $this->getToolbox(),
1522 );
1523 break;
1524 case 'LANGUAGES':
1525 if ( $this->data['language_urls'] ) {
1526 $msgObj = $this->getMsg( 'otherlanguages' );
1527 $boxes[$boxName] = array(
1528 'id' => "p-lang",
1529 'header' => $msgObj->exists() ? $msgObj->text() : 'otherlanguages',
1530 'generated' => false,
1531 'content' => $this->data['language_urls'],
1532 );
1533 }
1534 break;
1535 default:
1536 $msgObj = $this->getMsg( $boxName );
1537 $boxes[$boxName] = array(
1538 'id' => "p-$boxName",
1539 'header' => $msgObj->exists() ? $msgObj->text() : $boxName,
1540 'generated' => true,
1541 'content' => $content,
1542 );
1543 break;
1544 }
1545 }
1546
1547 // HACK: Compatibility with extensions still using SkinTemplateToolboxEnd
1548 $hookContents = null;
1549 if ( isset( $boxes['TOOLBOX'] ) ) {
1550 ob_start();
1551 // We pass an extra 'true' at the end so extensions using BaseTemplateToolbox
1552 // can abort and avoid outputting double toolbox links
1553 wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this, true ) );
1554 $hookContents = ob_get_contents();
1555 ob_end_clean();
1556 if ( !trim( $hookContents ) ) {
1557 $hookContents = null;
1558 }
1559 }
1560 // END hack
1561
1562 if ( isset( $options['htmlOnly'] ) && $options['htmlOnly'] === true ) {
1563 foreach ( $boxes as $boxName => $box ) {
1564 if ( is_array( $box['content'] ) ) {
1565 $content = "<ul>";
1566 foreach ( $box['content'] as $key => $val ) {
1567 $content .= "\n " . $this->makeListItem( $key, $val );
1568 }
1569 // HACK, shove the toolbox end onto the toolbox if we're rendering itself
1570 if ( $hookContents ) {
1571 $content .= "\n $hookContents";
1572 }
1573 // END hack
1574 $content .= "\n</ul>\n";
1575 $boxes[$boxName]['content'] = $content;
1576 }
1577 }
1578 } else {
1579 if ( $hookContents ) {
1580 $boxes['TOOLBOXEND'] = array(
1581 'id' => "p-toolboxend",
1582 'header' => $boxes['TOOLBOX']['header'],
1583 'generated' => false,
1584 'content' => "<ul>{$hookContents}</ul>",
1585 );
1586 // HACK: Make sure that TOOLBOXEND is sorted next to TOOLBOX
1587 $boxes2 = array();
1588 foreach ( $boxes as $key => $box ) {
1589 if ( $key === 'TOOLBOXEND' ) {
1590 continue;
1591 }
1592 $boxes2[$key] = $box;
1593 if ( $key === 'TOOLBOX' ) {
1594 $boxes2['TOOLBOXEND'] = $boxes['TOOLBOXEND'];
1595 }
1596 }
1597 $boxes = $boxes2;
1598 // END hack
1599 }
1600 }
1601
1602 return $boxes;
1603 }
1604
1605 /**
1606 * Makes a link, usually used by makeListItem to generate a link for an item
1607 * in a list used in navigation lists, portlets, portals, sidebars, etc...
1608 *
1609 * $key is a string, usually a key from the list you are generating this link from
1610 * $item is an array containing some of a specific set of keys.
1611 * The text of the link will be generated either from the contents of the "text"
1612 * key in the $item array, if a "msg" key is present a message by that name will
1613 * be used, and if neither of those are set the $key will be used as a message name.
1614 * If a "href" key is not present makeLink will just output htmlescaped text.
1615 * The href, id, class, rel, and type keys are used as attributes for the link if present.
1616 * If an "id" or "single-id" (if you don't want the actual id to be output on the link)
1617 * is present it will be used to generate a tooltip and accesskey for the link.
1618 * If you don't want an accesskey, set $item['tooltiponly'] = true;
1619 * $options can be used to affect the output of a link:
1620 * You can use a text-wrapper key to specify a list of elements to wrap the
1621 * text of a link in. This should be an array of arrays containing a 'tag' and
1622 * optionally an 'attributes' key. If you only have one element you don't need
1623 * to wrap it in another array. eg: To use <a><span>...</span></a> in all links
1624 * use array( 'text-wrapper' => array( 'tag' => 'span' ) ) for your options.
1625 * A link-class key can be used to specify additional classes to apply to all links.
1626 * A link-fallback can be used to specify a tag to use instead of <a> if there is
1627 * no link. eg: If you specify 'link-fallback' => 'span' than any non-link will
1628 * output a <span> instead of just text.
1629 */
1630 function makeLink( $key, $item, $options = array() ) {
1631 if ( isset( $item['text'] ) ) {
1632 $text = $item['text'];
1633 } else {
1634 $text = $this->translator->translate( isset( $item['msg'] ) ? $item['msg'] : $key );
1635 }
1636
1637 $html = htmlspecialchars( $text );
1638
1639 if ( isset( $options['text-wrapper'] ) ) {
1640 $wrapper = $options['text-wrapper'];
1641 if ( isset( $wrapper['tag'] ) ) {
1642 $wrapper = array( $wrapper );
1643 }
1644 while ( count( $wrapper ) > 0 ) {
1645 $element = array_pop( $wrapper );
1646 $html = Html::rawElement( $element['tag'], isset( $element['attributes'] ) ? $element['attributes'] : null, $html );
1647 }
1648 }
1649
1650 if ( isset( $item['href'] ) || isset( $options['link-fallback'] ) ) {
1651 $attrs = $item;
1652 foreach ( array( 'single-id', 'text', 'msg', 'tooltiponly' ) as $k ) {
1653 unset( $attrs[$k] );
1654 }
1655
1656 if ( isset( $item['id'] ) && !isset( $item['single-id'] ) ) {
1657 $item['single-id'] = $item['id'];
1658 }
1659 if ( isset( $item['single-id'] ) ) {
1660 if ( isset( $item['tooltiponly'] ) && $item['tooltiponly'] ) {
1661 $title = Linker::titleAttrib( $item['single-id'] );
1662 if ( $title !== false ) {
1663 $attrs['title'] = $title;
1664 }
1665 } else {
1666 $tip = Linker::tooltipAndAccesskeyAttribs( $item['single-id'] );
1667 if ( isset( $tip['title'] ) && $tip['title'] !== false ) {
1668 $attrs['title'] = $tip['title'];
1669 }
1670 if ( isset( $tip['accesskey'] ) && $tip['accesskey'] !== false ) {
1671 $attrs['accesskey'] = $tip['accesskey'];
1672 }
1673 }
1674 }
1675 if ( isset( $options['link-class'] ) ) {
1676 if ( isset( $attrs['class'] ) ) {
1677 $attrs['class'] .= " {$options['link-class']}";
1678 } else {
1679 $attrs['class'] = $options['link-class'];
1680 }
1681 }
1682 $html = Html::rawElement( isset( $attrs['href'] ) ? 'a' : $options['link-fallback'], $attrs, $html );
1683 }
1684
1685 return $html;
1686 }
1687
1688 /**
1689 * Generates a list item for a navigation, portlet, portal, sidebar... etc list
1690 * $key is a string, usually a key from the list you are generating this link from
1691 * $item is an array of list item data containing some of a specific set of keys.
1692 * The "id" and "class" keys will be used as attributes for the list item,
1693 * if "active" contains a value of true a "active" class will also be appended to class.
1694 * If you want something other than a <li> you can pass a tag name such as
1695 * "tag" => "span" in the $options array to change the tag used.
1696 * link/content data for the list item may come in one of two forms
1697 * A "links" key may be used, in which case it should contain an array with
1698 * a list of links to include inside the list item, see makeLink for the format
1699 * of individual links array items.
1700 * Otherwise the relevant keys from the list item $item array will be passed
1701 * to makeLink instead. Note however that "id" and "class" are used by the
1702 * list item directly so they will not be passed to makeLink
1703 * (however the link will still support a tooltip and accesskey from it)
1704 * If you need an id or class on a single link you should include a "links"
1705 * array with just one link item inside of it.
1706 * $options is also passed on to makeLink calls
1707 */
1708 function makeListItem( $key, $item, $options = array() ) {
1709 if ( isset( $item['links'] ) ) {
1710 $html = '';
1711 foreach ( $item['links'] as $linkKey => $link ) {
1712 $html .= $this->makeLink( $linkKey, $link, $options );
1713 }
1714 } else {
1715 $link = $item;
1716 // These keys are used by makeListItem and shouldn't be passed on to the link
1717 foreach ( array( 'id', 'class', 'active', 'tag' ) as $k ) {
1718 unset( $link[$k] );
1719 }
1720 if ( isset( $item['id'] ) ) {
1721 // The id goes on the <li> not on the <a> for single links
1722 // but makeSidebarLink still needs to know what id to use when
1723 // generating tooltips and accesskeys.
1724 $link['single-id'] = $item['id'];
1725 }
1726 $html = $this->makeLink( $key, $link, $options );
1727 }
1728
1729 $attrs = array();
1730 foreach ( array( 'id', 'class' ) as $attr ) {
1731 if ( isset( $item[$attr] ) ) {
1732 $attrs[$attr] = $item[$attr];
1733 }
1734 }
1735 if ( isset( $item['active'] ) && $item['active'] ) {
1736 if ( !isset( $attrs['class'] ) ) {
1737 $attrs['class'] = '';
1738 }
1739 $attrs['class'] .= ' active';
1740 $attrs['class'] = trim( $attrs['class'] );
1741 }
1742 return Html::rawElement( isset( $options['tag'] ) ? $options['tag'] : 'li', $attrs, $html );
1743 }
1744
1745 function makeSearchInput( $attrs = array() ) {
1746 $realAttrs = array(
1747 'type' => 'search',
1748 'name' => 'search',
1749 'value' => isset( $this->data['search'] ) ? $this->data['search'] : '',
1750 );
1751 $realAttrs = array_merge( $realAttrs, Linker::tooltipAndAccesskeyAttribs( 'search' ), $attrs );
1752 return Html::element( 'input', $realAttrs );
1753 }
1754
1755 function makeSearchButton( $mode, $attrs = array() ) {
1756 switch( $mode ) {
1757 case 'go':
1758 case 'fulltext':
1759 $realAttrs = array(
1760 'type' => 'submit',
1761 'name' => $mode,
1762 'value' => $this->translator->translate(
1763 $mode == 'go' ? 'searcharticle' : 'searchbutton' ),
1764 );
1765 $realAttrs = array_merge(
1766 $realAttrs,
1767 Linker::tooltipAndAccesskeyAttribs( "search-$mode" ),
1768 $attrs
1769 );
1770 return Html::element( 'input', $realAttrs );
1771 case 'image':
1772 $buttonAttrs = array(
1773 'type' => 'submit',
1774 'name' => 'button',
1775 );
1776 $buttonAttrs = array_merge(
1777 $buttonAttrs,
1778 Linker::tooltipAndAccesskeyAttribs( 'search-fulltext' ),
1779 $attrs
1780 );
1781 unset( $buttonAttrs['src'] );
1782 unset( $buttonAttrs['alt'] );
1783 $imgAttrs = array(
1784 'src' => $attrs['src'],
1785 'alt' => isset( $attrs['alt'] )
1786 ? $attrs['alt']
1787 : $this->translator->translate( 'searchbutton' ),
1788 );
1789 return Html::rawElement( 'button', $buttonAttrs, Html::element( 'img', $imgAttrs ) );
1790 default:
1791 throw new MWException( 'Unknown mode passed to BaseTemplate::makeSearchButton' );
1792 }
1793 }
1794
1795 /**
1796 * Returns an array of footerlinks trimmed down to only those footer links that
1797 * are valid.
1798 * If you pass "flat" as an option then the returned array will be a flat array
1799 * of footer icons instead of a key/value array of footerlinks arrays broken
1800 * up into categories.
1801 */
1802 function getFooterLinks( $option = null ) {
1803 $footerlinks = $this->data['footerlinks'];
1804
1805 // Reduce footer links down to only those which are being used
1806 $validFooterLinks = array();
1807 foreach( $footerlinks as $category => $links ) {
1808 $validFooterLinks[$category] = array();
1809 foreach( $links as $link ) {
1810 if( isset( $this->data[$link] ) && $this->data[$link] ) {
1811 $validFooterLinks[$category][] = $link;
1812 }
1813 }
1814 if ( count( $validFooterLinks[$category] ) <= 0 ) {
1815 unset( $validFooterLinks[$category] );
1816 }
1817 }
1818
1819 if ( $option == 'flat' ) {
1820 // fold footerlinks into a single array using a bit of trickery
1821 $validFooterLinks = call_user_func_array(
1822 'array_merge',
1823 array_values( $validFooterLinks )
1824 );
1825 }
1826
1827 return $validFooterLinks;
1828 }
1829
1830 /**
1831 * Returns an array of footer icons filtered down by options relevant to how
1832 * the skin wishes to display them.
1833 * If you pass "icononly" as the option all footer icons which do not have an
1834 * image icon set will be filtered out.
1835 * If you pass "nocopyright" then MediaWiki's copyright icon will not be included
1836 * in the list of footer icons. This is mostly useful for skins which only
1837 * display the text from footericons instead of the images and don't want a
1838 * duplicate copyright statement because footerlinks already rendered one.
1839 */
1840 function getFooterIcons( $option = null ) {
1841 // Generate additional footer icons
1842 $footericons = $this->data['footericons'];
1843
1844 if ( $option == 'icononly' ) {
1845 // Unset any icons which don't have an image
1846 foreach ( $footericons as &$footerIconsBlock ) {
1847 foreach ( $footerIconsBlock as $footerIconKey => $footerIcon ) {
1848 if ( !is_string( $footerIcon ) && !isset( $footerIcon['src'] ) ) {
1849 unset( $footerIconsBlock[$footerIconKey] );
1850 }
1851 }
1852 }
1853 // Redo removal of any empty blocks
1854 foreach ( $footericons as $footerIconsKey => &$footerIconsBlock ) {
1855 if ( count( $footerIconsBlock ) <= 0 ) {
1856 unset( $footericons[$footerIconsKey] );
1857 }
1858 }
1859 } elseif ( $option == 'nocopyright' ) {
1860 unset( $footericons['copyright']['copyright'] );
1861 if ( count( $footericons['copyright'] ) <= 0 ) {
1862 unset( $footericons['copyright'] );
1863 }
1864 }
1865
1866 return $footericons;
1867 }
1868
1869 /**
1870 * Output the basic end-page trail including bottomscripts, reporttime, and
1871 * debug stuff. This should be called right before outputting the closing
1872 * body and html tags.
1873 */
1874 function printTrail() { ?>
1875 <?php $this->html('bottomscripts'); /* JS call to runBodyOnloadHook */ ?>
1876 <?php $this->html('reporttime') ?>
1877 <?php if ( $this->data['debug'] ): ?>
1878 <!-- Debug output:
1879 <?php $this->text( 'debug' ); ?>
1880
1881 -->
1882 <?php endif;
1883 }
1884
1885 }
1886