Moved buildNavigationUrls back into Vector to make deployment more sane for now ...
[lhc/web/wiklou.git] / skins / Vector.php
1 <?php
2 /**
3 * Vector - Branch of MonoBook which has many usability improvements and
4 * somewhat cleaner code.
5 *
6 * @todo document
7 * @file
8 * @ingroup Skins
9 */
10
11 if( !defined( 'MEDIAWIKI' ) )
12 die( -1 );
13
14 /**
15 * SkinTemplate class for Vector skin
16 * @ingroup Skins
17 */
18 class SkinVector extends SkinTemplate {
19
20 /* Functions */
21
22 /**
23 * Initializes output page and sets up skin-specific parameters
24 * @param object $out Output page object to initialize
25 */
26 public function initPage( OutputPage $out ) {
27 parent::initPage( $out );
28 $this->skinname = 'vector';
29 $this->stylename = 'vector';
30 $this->template = 'VectorTemplate';
31 }
32
33 /**
34 * Defines CSS files to be included
35 * @param object $out Output page to add styles to
36 */
37 public function setupSkinUserCss( OutputPage $out ) {
38 global $wgContLang;
39 // Append to the default screen common & print styles...
40 if ( $wgContLang->isRTL() ) {
41 $out->addStyle( 'vector/main-rtl.css', 'screen' );
42 } else {
43 $out->addStyle( 'vector/main-ltr.css', 'screen' );
44 }
45 // Add common styles
46 parent::setupSkinUserCss( $out );
47 }
48
49 /**
50 * Builds a structured array of links used for tabs and menus
51 * @return array
52 * @private
53 */
54 function buildNavigationUrls() {
55 global $wgContLang, $wgLang, $wgOut, $wgUser, $wgRequest, $wgArticle;
56 global $wgDisableLangConversion;
57
58 wfProfileIn( __METHOD__ );
59
60 $links = array(
61 'namespaces' => array(),
62 'views' => array(),
63 'actions' => array(),
64 'variants' => array()
65 );
66
67 // Detects parameters
68 $action = $wgRequest->getVal( 'action', 'view' );
69 $section = $wgRequest->getVal( 'section' );
70
71 // Checks if page is some kind of content
72 if( $this->iscontent ) {
73
74 // Gets page objects for the related namespaces
75 $subjectPage = $this->mTitle->getSubjectPage();
76 $talkPage = $this->mTitle->getTalkPage();
77
78 // Determines if this is a talk page
79 $isTalk = $this->mTitle->isTalkPage();
80
81 // Generates XML IDs from namespace names
82 $subjectId = $this->mTitle->getNamespaceKey( '' );
83
84 if ( $subjectId == 'main' ) {
85 $talkId = 'talk';
86 } else {
87 $talkId = "{$subjectId}_talk";
88 }
89 $currentId = $isTalk ? $talkId : $subjectId;
90
91 // Adds namespace links
92 $links['namespaces'][$subjectId] = $this->tabAction(
93 $subjectPage, 'vector-namespace-' . $subjectId, !$isTalk, '', true
94 );
95 $links['namespaces'][$subjectId]['context'] = 'subject';
96 $links['namespaces'][$talkId] = $this->tabAction(
97 $talkPage, 'vector-namespace-talk', $isTalk, '', true
98 );
99 $links['namespaces'][$talkId]['context'] = 'talk';
100
101 // Adds view view link
102 if ( $this->mTitle->exists() ) {
103 $links['views']['view'] = $this->tabAction(
104 $isTalk ? $talkPage : $subjectPage,
105 'vector-view-view', ( $action == 'view' ), '', true
106 );
107 }
108
109 wfProfileIn( __METHOD__ . '-edit' );
110
111 // Checks if user can...
112 if (
113 // edit the current page
114 $this->mTitle->quickUserCan( 'edit' ) &&
115 (
116 // if it exists
117 $this->mTitle->exists() ||
118 // or they can create one here
119 $this->mTitle->quickUserCan( 'create' )
120 )
121 ) {
122 // Builds CSS class for talk page links
123 $isTalkClass = $isTalk ? ' istalk' : '';
124
125 // Determines if we're in edit mode
126 $selected = (
127 ( $action == 'edit' || $action == 'submit' ) &&
128 ( $section != 'new' )
129 );
130 $links['views']['edit'] = array(
131 'class' => ( $selected ? 'selected' : '' ) . $isTalkClass,
132 'text' => $this->mTitle->exists()
133 ? wfMsg( 'vector-view-edit' )
134 : wfMsg( 'vector-view-create' ),
135 'href' =>
136 $this->mTitle->getLocalUrl( $this->editUrlOptions() )
137 );
138 // Checks if this is a current rev of talk page and we should show a new
139 // section link
140 if ( ( $isTalk && $wgArticle->isCurrent() ) || ( $wgOut->showNewSectionLink() ) ) {
141 // Checks if we should ever show a new section link
142 if ( !$wgOut->forceHideNewSectionLink() ) {
143 // Adds new section link
144 $links['actions']['addsection'] = array(
145 'class' => $section == 'new' ? 'selected' : false,
146 'text' => wfMsg( 'vector-action-addsection' ),
147 'href' => $this->mTitle->getLocalUrl(
148 'action=edit&section=new'
149 )
150 );
151 }
152 }
153 // Checks if the page is known (some kind of viewable content)
154 } elseif ( $this->mTitle->isKnown() ) {
155 // Adds view source view link
156 $links['views']['viewsource'] = array(
157 'class' => ( $action == 'edit' ) ? 'selected' : false,
158 'text' => wfMsg( 'vector-view-viewsource' ),
159 'href' =>
160 $this->mTitle->getLocalUrl( $this->editUrlOptions() )
161 );
162 }
163 wfProfileOut( __METHOD__ . '-edit' );
164
165 wfProfileIn( __METHOD__ . '-live' );
166
167 // Checks if the page exists
168 if ( $this->mTitle->exists() ) {
169 // Adds history view link
170 $links['views']['history'] = array(
171 'class' => ($action == 'history') ? 'selected' : false,
172 'text' => wfMsg( 'vector-view-history' ),
173 'href' => $this->mTitle->getLocalUrl( 'action=history' ),
174 'rel' => 'archives',
175 );
176
177 if( $wgUser->isAllowed( 'delete' ) ) {
178 $links['actions']['delete'] = array(
179 'class' => ($action == 'delete') ? 'selected' : false,
180 'text' => wfMsg( 'vector-action-delete' ),
181 'href' => $this->mTitle->getLocalUrl( 'action=delete' )
182 );
183 }
184 if ( $this->mTitle->quickUserCan( 'move' ) ) {
185 $moveTitle = SpecialPage::getTitleFor(
186 'Movepage', $this->thispage
187 );
188 $links['actions']['move'] = array(
189 'class' => $this->mTitle->isSpecial( 'Movepage' ) ?
190 'selected' : false,
191 'text' => wfMsg( 'vector-action-move' ),
192 'href' => $moveTitle->getLocalUrl()
193 );
194 }
195
196 if (
197 $this->mTitle->getNamespace() !== NS_MEDIAWIKI &&
198 $wgUser->isAllowed( 'protect' )
199 ) {
200 if ( !$this->mTitle->isProtected() ){
201 $links['actions']['protect'] = array(
202 'class' => ($action == 'protect') ?
203 'selected' : false,
204 'text' => wfMsg( 'vector-action-protect' ),
205 'href' =>
206 $this->mTitle->getLocalUrl( 'action=protect' )
207 );
208
209 } else {
210 $links['actions']['unprotect'] = array(
211 'class' => ($action == 'unprotect') ?
212 'selected' : false,
213 'text' => wfMsg( 'vector-action-unprotect' ),
214 'href' =>
215 $this->mTitle->getLocalUrl( 'action=unprotect' )
216 );
217 }
218 }
219 } else {
220 // article doesn't exist or is deleted
221 if (
222 $wgUser->isAllowed( 'deletedhistory' ) &&
223 $wgUser->isAllowed( 'undelete' )
224 ) {
225 if( $n = $this->mTitle->isDeleted() ) {
226 $undelTitle = SpecialPage::getTitleFor( 'Undelete' );
227 $links['actions']['undelete'] = array(
228 'class' => false,
229 'text' => wfMsgExt(
230 'vector-action-undelete',
231 array( 'parsemag' ),
232 $wgLang->formatNum( $n )
233 ),
234 'href' => $undelTitle->getLocalUrl(
235 'target=' . urlencode( $this->thispage )
236 )
237 );
238 }
239 }
240
241 if (
242 $this->mTitle->getNamespace() !== NS_MEDIAWIKI &&
243 $wgUser->isAllowed( 'protect' )
244 ) {
245 if ( !$this->mTitle->getRestrictions( 'create' ) ) {
246 $links['actions']['protect'] = array(
247 'class' => ($action == 'protect') ?
248 'selected' : false,
249 'text' => wfMsg( 'vector-action-protect' ),
250 'href' =>
251 $this->mTitle->getLocalUrl( 'action=protect' )
252 );
253
254 } else {
255 $links['actions']['unprotect'] = array(
256 'class' => ($action == 'unprotect') ?
257 'selected' : false,
258 'text' => wfMsg( 'vector-action-unprotect' ),
259 'href' =>
260 $this->mTitle->getLocalUrl( 'action=unprotect' )
261 );
262 }
263 }
264 }
265 wfProfileOut( __METHOD__ . '-live' );
266
267 /**
268 * The following actions use messages which, if made particular to
269 * the Vector skin, would break the Ajax code which makes this
270 * action happen entirely inline. Skin::makeGlobalVariablesScript
271 * defines a set of messages in a javascript object - and these
272 * messages are assumed to be global for all skins. Without making
273 * a change to that procedure these messages will have to remain as
274 * the global versions.
275 */
276 // Checks if the user is logged in
277 if( $this->loggedin ) {
278 // Checks if the user is watching this page
279 if( !$this->mTitle->userIsWatching() ) {
280 // Adds watch action link
281 $links['actions']['watch'] = array(
282 'class' =>
283 ( $action == 'watch' or $action == 'unwatch' ) ?
284 'selected' : false,
285 'text' => wfMsg( 'watch' ),
286 'href' => $this->mTitle->getLocalUrl( 'action=watch' )
287 );
288 } else {
289 // Adds unwatch action link
290 $links['actions']['unwatch'] = array(
291 'class' =>
292 ($action == 'unwatch' or $action == 'watch') ?
293 'selected' : false,
294 'text' => wfMsg( 'unwatch' ),
295 'href' => $this->mTitle->getLocalUrl( 'action=unwatch' )
296 );
297 }
298 }
299
300 // This is instead of SkinTemplateTabs - which uses a flat array
301 wfRunHooks( 'SkinTemplateNavigation', array( &$this, &$links ) );
302
303 // If it's not content, it's got to be a special page
304 } else {
305 $links['namespaces']['special'] = array(
306 'class' => 'selected',
307 'text' => wfMsg( 'vector-namespace-special' ),
308 'href' => $wgRequest->getRequestURL()
309 );
310 }
311
312 // Gets list of language variants
313 $variants = $wgContLang->getVariants();
314 // Checks that language conversion is enabled and variants exist
315 if( !$wgDisableLangConversion && count( $variants ) > 1 ) {
316 // Gets preferred variant
317 $preferred = $wgContLang->getPreferredVariant();
318 // Loops over each variant
319 foreach( $variants as $code ) {
320 // Gets variant name from language code
321 $varname = $wgContLang->getVariantname( $code );
322 // Checks if the variant is marked as disabled
323 if( $varname == 'disable' ) {
324 // Skips this variant
325 continue;
326 }
327 // Appends variant link
328 $links['variants'][] = array(
329 'class' => ( $code == $preferred ) ? 'selected' : false,
330 'text' => $varname,
331 'href' => $this->mTitle->getLocalURL( '', $code )
332 );
333 }
334 }
335
336 wfProfileOut( __METHOD__ );
337
338 return $links;
339 }
340 }
341
342 /**
343 * QuickTemplate class for Vector skin
344 * @ingroup Skins
345 */
346 class VectorTemplate extends QuickTemplate {
347
348 /* Members */
349
350 /**
351 * @var Cached skin object
352 */
353 var $skin;
354
355 /* Functions */
356
357 /**
358 * Outputs the entire contents of the XHTML page
359 */
360 public function execute() {
361 global $wgRequest, $wgUseTwoButtonsSearchForm, $wgOut;
362
363 $this->skin = $this->data['skin'];
364 $action = $wgRequest->getText( 'action' );
365
366 // Suppress warnings to prevent notices about missing indexes in
367 // $this->data (is this really the best way to handle this?)
368 wfSuppressWarnings();
369
370 // Build additional attributes for navigation urls
371 $nav = $this->skin->buildNavigationUrls();
372 foreach ( $nav as $section => $links ) {
373 foreach ( $links as $key => $link ) {
374 $xmlID = $key;
375 if ( isset( $link['context'] ) && $link['context'] == 'subject' ) {
376 $xmlID = 'ca-nstab-' . $xmlID;
377 } else if ( isset( $link['context'] ) && $link['context'] == 'talk' ) {
378 $xmlID = 'ca-talk';
379 } else {
380 $xmlID = 'ca-' . $xmlID;
381 }
382 $nav[$section][$key]['attributes'] =
383 ' id="' . Sanitizer::escapeId( $xmlID ) . '"';
384 if ( $nav[$section][$key]['class'] ) {
385 $nav[$section][$key]['attributes'] .=
386 ' class="' . htmlspecialchars( $link['class'] ) . '"';
387 unset( $nav[$section][$key]['class'] );
388 }
389
390 // We don't want to give the watch tab an accesskey if the page is
391 // being edited, because that conflicts with the accesskey on the
392 // watch checkbox. We also don't want to give the edit tab an
393 // accesskey, because that's fairly superfluous and conflicts with
394 // an accesskey (Ctrl-E) often used for editing in Safari.
395 if (
396 in_array( $action, array( 'edit', 'submit' ) ) &&
397 in_array( $key, array( 'edit', 'watch', 'unwatch' ) )
398 ) {
399 $nav[$section][$key]['key'] =
400 $this->skin->tooltip( $xmlID );
401 } else {
402 $nav[$section][$key]['key'] =
403 $this->skin->tooltipAndAccesskey( $xmlID );
404 }
405 }
406 }
407 $this->data['namespace_urls'] = $nav['namespaces'];
408 $this->data['view_urls'] = $nav['views'];
409 $this->data['action_urls'] = $nav['actions'];
410 $this->data['variant_urls'] = $nav['variants'];
411
412 // Build additional attributes for personal_urls
413 foreach ( $this->data['personal_urls'] as $key => $item) {
414 $this->data['personal_urls'][$key]['attributes'] =
415 ' id="' . Sanitizer::escapeId( "pt-$key" ) . '"';
416 if ( $item['active'] ) {
417 $this->data['personal_urls'][$key]['attributes'] .=
418 ' class="active"';
419 }
420 $this->data['personal_urls'][$key]['key'] =
421 $this->skin->tooltipAndAccesskey('pt-'.$key);
422 }
423
424 // Generate additional footer links
425 $footerlinks = array(
426 'info' => array(
427 'lastmod',
428 'viewcount',
429 'numberofwatchingusers',
430 'credits',
431 'copyright',
432 'tagline',
433 ),
434 'places' => array(
435 'privacy',
436 'about',
437 'disclaimer',
438 ),
439 );
440
441 // Build list of valid footer links
442 $validFooterLinks = array();
443 foreach( $footerlinks as $category => $links ) {
444 $validFooterLinks[$category] = array();
445 foreach( $links as $link ) {
446 if( isset( $this->data[$link] ) && $this->data[$link] ) {
447 $validFooterLinks[$category][] = $link;
448 }
449 }
450 }
451
452 // Begin content output
453
454 echo $wgOut->headElement( $this->skin );
455 ?> <body<?php if($this->data['body_ondblclick']): ?> ondblclick="<?php $this->text('body_ondblclick') ?>"<?php endif; ?> <?php if($this->data['body_onload']): ?> onload="<?php $this->text('body_onload') ?>"<?php endif; ?> class="mediawiki <?php $this->text('dir') ?> <?php $this->text('pageclass') ?> <?php $this->text('skinnameclass') ?>">
456 <div id="page-base" class="noprint"></div>
457 <div id="head-base" class="noprint"></div>
458 <!-- content -->
459 <div id="content">
460 <a id="top"></a>
461 <div id="mw-js-message" style="display:none;"></div>
462 <!-- sitenotice -->
463 <?php if($this->data['sitenotice']) { ?><div id="siteNotice"><?php $this->html('sitenotice') ?></div><?php } ?>
464 <!-- /sitenotice -->
465 <!-- firstHeading -->
466 <h1 id="firstHeading" class="firstHeading"><?php $this->html('title') ?></h1>
467 <!-- /firstHeading -->
468 <!-- bodyContent -->
469 <div id="bodyContent">
470 <!-- tagline -->
471 <h3 id="siteSub"><?php $this->msg('tagline') ?></h3>
472 <!-- /tagline -->
473 <!-- subtitle -->
474 <div id="contentSub"><?php $this->html('subtitle') ?></div>
475 <!-- /subtitle -->
476 <?php if($this->data['undelete']): ?>
477 <!-- undelete -->
478 <div id="contentSub2"><?php $this->html('undelete') ?></div>
479 <!-- /undelete -->
480 <?php endif; ?>
481 <?php if($this->data['newtalk'] ): ?>
482 <!-- newtalk -->
483 <div class="usermessage"><?php $this->html('newtalk') ?></div>
484 <!-- /newtalk -->
485 <?php endif; ?>
486 <?php if($this->data['showjumplinks']): ?>
487 <!-- jumpto -->
488 <div id="jump-to-nav">
489 <?php $this->msg('jumpto') ?> <a href="#head"><?php $this->msg('jumptonavigation') ?></a>,
490 <a href="#search"><?php $this->msg('jumptosearch') ?></a>
491 </div>
492 <!-- /jumpto -->
493 <?php endif; ?>
494 <!-- bodytext -->
495 <?php $this->html('bodytext') ?>
496 <!-- /bodytext -->
497 <!-- catlinks -->
498 <?php if($this->data['catlinks']) { $this->html('catlinks'); } ?>
499 <!-- /catlinks -->
500 <!-- dataAfterContent -->
501 <?php if($this->data['dataAfterContent']) { $this->html('dataAfterContent'); } ?>
502 <!-- /dataAfterContent -->
503 <div class="visualClear"></div>
504 </div>
505 <!-- /bodyContent -->
506 </div>
507 <!-- /content -->
508 <!-- header -->
509 <div id="head" class="noprint">
510 <!-- personal -->
511 <?php if ( count( $this->data['personal_urls'] ) > 0 ): ?>
512 <div id="p-personal">
513 <h5><?php $this->msg('personaltools') ?></h5>
514 <ul <?php $this->html('userlangattributes') ?>>
515 <?php foreach($this->data['personal_urls'] as $key => $item): ?>
516 <li <?php echo $item['attributes'] ?>><a href="<?php echo htmlspecialchars($item['href']) ?>"<?php echo $item['key'] ?><?php if(!empty($item['class'])): ?> class="<?php echo htmlspecialchars($item['class']) ?>"<?php endif; ?>><?php echo htmlspecialchars($item['text']) ?></a></li>
517 <?php endforeach; ?>
518 </ul>
519 </div>
520 <?php endif; ?>
521 <!-- /personal -->
522 <div id="left-navigation">
523 <!-- namespaces -->
524 <?php if ( count( $this->data['namespace_urls'] ) > 0 ): ?>
525 <div id="namespaces" class="vectorTabs">
526 <h5><?php $this->msg('namespaces') ?></h5>
527 <ul <?php $this->html('userlangattributes') ?>>
528 <?php foreach ($this->data['namespace_urls'] as $key => $link ): ?>
529 <li <?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><span><?php echo htmlspecialchars( $link['text'] ) ?></span></a></li>
530 <?php endforeach; ?>
531 </ul>
532 </div>
533 <?php endif; ?>
534 <!-- /namespaces -->
535 <!-- variants -->
536 <?php if ( count( $this->data['variant_urls'] ) > 0 ): ?>
537 <div id="variants" class="vectorMenu">
538 <h5><span><?php $this->msg('variants') ?></span><a href="#">&nbsp;</a></h5>
539 <div class="menu">
540 <ul <?php $this->html('userlangattributes') ?>>
541 <?php foreach ($this->data['variant_urls'] as $key => $link ): ?>
542 <li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li>
543 <?php endforeach; ?>
544 </ul>
545 </div>
546 </div>
547 <?php endif; ?>
548 <!-- /variants -->
549 </div>
550 <div id="right-navigation">
551 <!-- views -->
552 <?php if ( count( $this->data['view_urls'] ) > 0 ): ?>
553 <div id="views" class="vectorTabs">
554 <h5><?php $this->msg('views') ?></h5>
555 <ul <?php $this->html('userlangattributes') ?>>
556 <?php foreach ($this->data['view_urls'] as $key => $link ): ?>
557 <li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><span><?php echo htmlspecialchars( $link['text'] ) ?></span></a></li>
558 <?php endforeach; ?>
559 </ul>
560 </div>
561 <?php endif; ?>
562 <!-- /views -->
563 <!-- actions -->
564 <?php if ( count( $this->data['action_urls'] ) > 0 ): ?>
565 <div id="p-cactions" class="vectorMenu">
566 <h5><span><?php $this->msg('actions') ?></span><a href="#">&nbsp;</a></h5>
567 <div class="menu">
568 <ul <?php $this->html('userlangattributes') ?>>
569 <?php foreach ($this->data['action_urls'] as $key => $link ): ?>
570 <li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li>
571 <?php endforeach; ?>
572 </ul>
573 </div>
574 </div>
575 <?php endif; ?>
576 <!-- /actions -->
577 <!-- search -->
578 <div id="p-search">
579 <h5 <?php $this->html('userlangattributes') ?>><label for="searchInput"><?php $this->msg( 'search' ) ?></label></h5>
580 <form action="<?php $this->text( 'wgScript' ) ?>" id="searchform">
581 <input type='hidden' name="title" value="<?php $this->text( 'searchtitle' ) ?>"/>
582 <input id="searchInput" name="search" type="text" <?php echo $this->skin->tooltipAndAccesskey( 'search' ); ?> <?php if( isset( $this->data['search'] ) ): ?> value="<?php $this->text( 'search' ) ?>"<?php endif; ?> />
583 <input type='submit' name="go" class="searchButton" id="searchGoButton" value="<?php $this->msg( 'searcharticle' ) ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-go' ); ?> />
584 <?php if ( $wgUseTwoButtonsSearchForm ): ?>
585 <input type="submit" name="fulltext" class="searchButton" id="mw-searchButton" value="<?php $this->msg( 'searchbutton' ) ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-fulltext' ); ?> />
586 <?php else: ?>
587 <div><a href="<?php $this->text( 'searchaction' ) ?>" rel="search"><?php $this->msg( 'powersearch-legend' ) ?></a></div>
588 <?php endif; ?>
589 </form>
590 </div>
591 <!-- /search -->
592 </div>
593 </div>
594 <!-- /header -->
595 <!-- panel -->
596 <div id="panel" class="noprint">
597 <!-- sidebar -->
598 <?php
599 $sidebar = $this->data['sidebar'];
600 $sidebar['TOOLBOX'] = ( !isset( $sidebar['TOOLBOX'] ) );
601 $sidebar['LANGUAGES'] = ( !isset( $sidebar['LANGUAGES'] ) );
602 foreach ( $sidebar as $name => $content ) {
603 switch( $name ) {
604 case 'SEARCH':
605 break;
606 case 'TOOLBOX':
607 $this->toolBox();
608 break;
609 case 'LANGUAGES':
610 $this->languageBox();
611 break;
612 default:
613 $this->customBox( $name, $content );
614 break;
615 }
616 }
617 ?>
618 <!-- /sidebar -->
619 </div>
620 <!-- /panel -->
621 <div class="break"></div>
622 <!-- foot -->
623 <div id="foot">
624 <?php foreach( $validFooterLinks as $category => $links ): ?>
625 <?php if ( count( $links ) > 0 ): ?>
626 <ul id="foot-<?php echo $category ?>">
627 <?php foreach( $links as $link ): ?>
628 <?php if( isset( $this->data[$link] ) && $this->data[$link] ): ?>
629 <li id="foot-<?php echo $category ?>-<?php echo $link ?>"><?php $this->html( $link ) ?></li>
630 <?php endif; ?>
631 <?php endforeach; ?>
632 </ul>
633 <?php endif; ?>
634 <?php endforeach; ?>
635 <ul id="foot-icons" class="noprint">
636 <?php if( $this->data['poweredbyico'] ): ?>
637 <li id="foot-icon-poweredby"><?php $this->html( 'poweredbyico' ) ?></li>
638 <?php endif; ?>
639 <?php if( $this->data['copyrightico'] ): ?>
640 <li id="foot-icon-copyright"><?php $this->html( 'copyrightico' ) ?></li>
641 <?php endif; ?>
642 </ul>
643 <div style="clear:both"></div>
644 </div>
645 <!-- /foot -->
646 <!-- logo -->
647 <div id="p-logo">
648 <a style="background-image: url(<?php $this->text('logopath') ?>);" href="<?php echo htmlspecialchars( $this->data['nav_urls']['mainpage']['href'] ) ?>" <?php echo $this->skin->tooltipAndAccesskey('p-logo') ?>></a>
649 </div>
650 <!-- /logo -->
651 <!-- fixalpha -->
652 <script type="<?php $this->text('jsmimetype') ?>"> if (window.isMSIE55) fixalpha( 'p-logo' ); </script>
653 <!-- /fixalpha -->
654 <?php $this->html( 'bottomscripts' ); /* JS call to runBodyOnloadHook */ ?>
655 <?php $this->html( 'reporttime' ) ?>
656 <?php if ( $this->data['debug'] ): ?>
657 <!-- Debug output:
658 <?php $this->text( 'debug' ); ?>
659 -->
660 <?php endif; ?>
661 </body>
662 </html>
663 <?php
664 // We're done with abusing arrays now...
665 wfRestoreWarnings();
666 }
667
668 /**
669 * Outputs a box with a list of tools
670 */
671 private function toolBox() {
672 ?>
673 <div class="portal" id="p-tb">
674 <h5 <?php $this->html('userlangattributes') ?>><?php $this->msg( 'toolbox' ) ?></h5>
675 <div class="body">
676 <ul>
677 <?php if( $this->data['notspecialpage'] ): ?>
678 <li id="t-whatlinkshere"><a href="<?php echo htmlspecialchars( $this->data['nav_urls']['whatlinkshere']['href'] ) ?>"<?php echo $this->skin->tooltipAndAccesskey( 't-whatlinkshere' ) ?>><?php $this->msg( 'whatlinkshere' ) ?></a></li>
679 <?php if( $this->data['nav_urls']['recentchangeslinked'] ): ?>
680 <li id="t-recentchangeslinked"><a href="<?php echo htmlspecialchars( $this->data['nav_urls']['recentchangeslinked']['href'] ) ?>"<?php echo $this->skin->tooltipAndAccesskey( 't-recentchangeslinked' ) ?>><?php $this->msg( 'recentchangeslinked-toolbox' ) ?></a></li>
681 <?php endif; ?>
682 <?php endif; ?>
683 <?php if( isset( $this->data['nav_urls']['trackbacklink'] ) ): ?>
684 <li id="t-trackbacklink"><a href="<?php echo htmlspecialchars( $this->data['nav_urls']['trackbacklink']['href'] ) ?>"<?php echo $this->skin->tooltipAndAccesskey( 't-trackbacklink' ) ?>><?php $this->msg( 'trackbacklink' ) ?></a></li>
685 <?php endif; ?>
686 <?php if( $this->data['feeds']): ?>
687 <li id="feedlinks">
688 <?php foreach( $this->data['feeds'] as $key => $feed ): ?>
689 <a id="<?php echo Sanitizer::escapeId( "feed-$key" ) ?>" href="<?php echo htmlspecialchars( $feed['href'] ) ?>" rel="alternate" type="application/<?php echo $key ?>+xml" class="feedlink"<?php echo $this->skin->tooltipAndAccesskey( 'feed-' . $key ) ?>><?php echo htmlspecialchars( $feed['text'] ) ?></a>
690 <?php endforeach; ?>
691 </li>
692 <?php endif; ?>
693 <?php foreach( array( 'contributions', 'log', 'blockip', 'emailuser', 'upload', 'specialpages' ) as $special ): ?>
694 <?php if( $this->data['nav_urls'][$special]): ?>
695 <li id="t-<?php echo $special ?>"><a href="<?php echo htmlspecialchars( $this->data['nav_urls'][$special]['href'] ) ?>"<?php echo $this->skin->tooltipAndAccesskey( 't-' . $special ) ?>><?php $this->msg( $special ) ?></a></li>
696 <?php endif; ?>
697 <?php endforeach; ?>
698 <?php if( !empty( $this->data['nav_urls']['print']['href'] ) ): ?>
699 <li id="t-print"><a href="<?php echo htmlspecialchars( $this->data['nav_urls']['print']['href'] ) ?>" rel="alternate"<?php echo $this->skin->tooltipAndAccesskey( 't-print' ) ?>><?php $this->msg( 'printableversion' ) ?></a></li>
700 <?php endif; ?>
701 <?php if ( !empty( $this->data['nav_urls']['permalink']['href'] ) ): ?>
702 <li id="t-permalink"><a href="<?php echo htmlspecialchars( $this->data['nav_urls']['permalink']['href'] ) ?>"<?php echo $this->skin->tooltipAndAccesskey( 't-permalink' ) ?>><?php $this->msg( 'permalink' ) ?></a></li>
703 <?php elseif ( $this->data['nav_urls']['permalink']['href'] === '' ): ?>
704 <li id="t-ispermalink"<?php echo $this->skin->tooltip( 't-ispermalink' ) ?>><?php $this->msg( 'permalink' ) ?></li>
705 <?php endif; ?>
706 <?php wfRunHooks( 'VectorTemplateToolboxEnd', array( &$this ) ); ?>
707 <?php wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this ) ); ?>
708 </ul>
709 </div>
710 </div>
711 <?php
712 }
713
714 /**
715 * Outputs a box with a list of alternative languages for this page
716 */
717 private function languageBox() {
718 if( $this->data['language_urls'] ) {
719 ?>
720 <div class="portal" id="p-lang">
721 <h5 <?php $this->html('userlangattributes') ?>><?php $this->msg( 'otherlanguages' ) ?></h5>
722 <div class="body">
723 <ul>
724 <?php foreach ( $this->data['language_urls'] as $langlink ): ?>
725 <li class="<?php echo htmlspecialchars( $langlink['class'] ) ?>"><a href="<?php echo htmlspecialchars( $langlink['href'] ) ?>"><?php echo $langlink['text'] ?></a></li>
726 <?php endforeach; ?>
727 </ul>
728 </div>
729 </div>
730 <?php
731 }
732 }
733
734 /**
735 * Outputs a box with a custom list of items or HTML content
736 * @param string $bar Message name for title of box
737 * @param mixed $content HTML or array of items to build a list from
738 */
739 private function customBox( $bar, $content ) {
740 ?>
741 <div class="portal" id='<?php echo Sanitizer::escapeId( "p-$bar" ) ?>'<?php echo $this->skin->tooltip( 'p-' . $bar ) ?>>
742 <h5 <?php $this->html('userlangattributes') ?>><?php $out = wfMsg( $bar ); if ( wfEmptyMsg( $bar, $out ) ) echo htmlspecialchars( $bar ); else echo htmlspecialchars( $out ); ?></h5>
743 <div class="body">
744 <?php if ( is_array( $content ) ): ?>
745 <ul>
746 <?php foreach( $content as $key => $val ): ?>
747 <li id="<?php echo Sanitizer::escapeId( $val['id'] ) ?>"<?php if ( $val['active'] ): ?> class="active" <?php endif; ?>><a href="<?php echo htmlspecialchars( $val['href'] ) ?>"<?php echo $this->skin->tooltipAndAccesskey( $val['id'] ) ?>><?php echo htmlspecialchars( $val['text'] ) ?></a></li>
748 <?php endforeach; ?>
749 </ul>
750 <?php else: ?>
751 <?php echo $content; /* Allow raw HTML block to be defined by extensions */ ?>
752 <?php endif; ?>
753 </div>
754 </div>
755 <?php
756 }
757 }