Actually resolves namespaces and tabs having the correct XML IDs
[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 * A structured array of edit links by default used for the tabs
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 $vcount = 0;
320 foreach( $variants as $code ) {
321 // Gets variant name from language code
322 $varname = $wgContLang->getVariantname( $code );
323 // Checks if the variant is marked as disabled
324 if( $varname == 'disable' ) {
325 // Skips this variant
326 continue;
327 }
328 // Appends variant link
329 $links['variants'][$vcount] = array(
330 'class' => ( $code == $preferred ) ? 'selected' : false,
331 'text' => $varname,
332 'href' => $this->mTitle->getLocalURL( '', $code )
333 );
334 $vcount ++;
335 }
336 }
337
338 wfProfileOut( __METHOD__ );
339
340 return $links;
341 }
342 }
343
344 /**
345 * QuickTemplate class for Vector skin
346 * @ingroup Skins
347 */
348 class VectorTemplate extends QuickTemplate {
349
350 /* Members */
351
352 /**
353 * @var Cached skin object
354 */
355 var $skin;
356
357 /* Functions */
358
359 /**
360 * Outputs the entire contents of the XHTML page
361 */
362 public function execute() {
363 global $wgRequest, $wgUseTwoButtonsSearchForm;
364
365 $this->skin = $this->data['skin'];
366 $action = $wgRequest->getText( 'action' );
367
368 // Suppress warnings to prevent notices about missing indexes in
369 // $this->data (is this really the best way to handle this?)
370 wfSuppressWarnings();
371
372 // Build additional attributes for navigation urls
373 $nav = $this->skin->buildNavigationUrls();
374 foreach ( $nav as $section => $links ) {
375 foreach ( $links as $key => $link ) {
376 $xmlID = $key;
377 if ( isset( $link['context'] ) ) {
378 if ( $link['context'] == 'subject' ) {
379 $xmlID = 'ca-nstab-' . $xmlID;
380 } else if ( $link['context'] == 'talk' ) {
381 $xmlID = 'ca-talk';
382 } else {
383 $xmlID = 'ca-' . $xmlID;
384 }
385 }
386 $nav[$section][$key]['attributes'] =
387 ' id="' . Sanitizer::escapeId( $xmlID ) . '"';
388 if ( $nav[$section][$key]['class'] ) {
389 $nav[$section][$key]['attributes'] .=
390 ' class="' . htmlspecialchars( $link['class'] ) . '"';
391 }
392 // We don't want to give the watch tab an accesskey if the page is
393 // being edited, because that conflicts with the accesskey on the
394 // watch checkbox. We also don't want to give the edit tab an
395 // accesskey, because that's fairly superfluous and conflicts with
396 // an accesskey (Ctrl-E) often used for editing in Safari.
397 if (
398 in_array( $action, array( 'edit', 'submit' ) ) &&
399 in_array( $key, array( 'edit', 'watch', 'unwatch' ) )
400 ) {
401 $nav[$section][$key]['key'] =
402 $this->skin->tooltip( $xmlID );
403 } else {
404 $nav[$section][$key]['key'] =
405 $this->skin->tooltipAndAccesskey( $xmlID );
406 }
407 }
408 }
409 $this->data['namespace_urls'] = $nav['namespaces'];
410 $this->data['view_urls'] = $nav['views'];
411 $this->data['action_urls'] = $nav['actions'];
412 $this->data['variant_urls'] = $nav['variants'];
413
414 // Build additional attributes for personal_urls
415 foreach ( $this->data['personal_urls'] as $key => $item) {
416 $this->data['personal_urls'][$key]['attributes'] =
417 ' id="' . Sanitizer::escapeId( "pt-$key" ) . '"';
418 if ( $item['active'] ) {
419 $this->data['personal_urls'][$key]['attributes'] .=
420 ' class="active"';
421 }
422 $this->data['personal_urls'][$key]['key'] =
423 $this->skin->tooltipAndAccesskey('pt-'.$key);
424 }
425
426 // Generate additional footer links
427 $footerlinks = array(
428 'info' => array(
429 'lastmod',
430 'viewcount',
431 'numberofwatchingusers',
432 'credits',
433 'copyright',
434 'tagline',
435 ),
436 'places' => array(
437 'privacy',
438 'about',
439 'disclaimer',
440 ),
441 );
442
443 // Build list of valid footer links
444 $validFooterLinks = array();
445 foreach( $footerlinks as $category => $links ) {
446 $validFooterLinks[$category] = array();
447 foreach( $links as $link ) {
448 if( isset( $this->data[$link] ) && $this->data[$link] ) {
449 $validFooterLinks[$category][] = $link;
450 }
451 }
452 }
453
454 // Begin content output
455 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
456 <html xmlns="<?php $this->text('xhtmldefaultnamespace') ?>" <?php foreach($this->data['xhtmlnamespaces'] as $tag => $ns): ?>xmlns:<?php echo "{$tag}=\"{$ns}\" "; ?><?php endforeach ?>xml:lang="<?php $this->text('lang') ?>" lang="<?php $this->text('lang') ?>" dir="<?php $this->text('dir') ?>">
457 <head>
458 <meta http-equiv="Content-Type" content="<?php $this->text('mimetype') ?>; charset=<?php $this->text('charset') ?>" />
459 <title><?php $this->text('pagetitle') ?></title>
460 <!-- headlinks -->
461 <?php $this->html('headlinks') ?>
462 <!-- /headlinks -->
463 <!-- csslinks -->
464 <?php $this->html('csslinks') ?>
465 <!-- /csslinks -->
466 <!-- IEFixes -->
467 <!--[if lt IE 7]><script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/common/IEFixes.js?<?php echo $GLOBALS['wgStyleVersion'] ?>"></script>
468 <meta http-equiv="imagetoolbar" content="no" /><![endif]-->
469 <style type="text/css">body{behavior:url("<?php $this->text('stylepath') ?>/vector/csshover.htc")}</style>
470 <!-- /IEFixes -->
471 <!-- globalVariablesScript -->
472 <?php echo Skin::makeGlobalVariablesScript( $this->data ); ?>
473 <!-- /globalVariablesScript -->
474 <!-- wikibits -->
475 <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath' ) ?>/common/wikibits.js?<?php echo $GLOBALS['wgStyleVersion'] ?>"><!-- wikibits js --></script>
476 <!-- /wikibits -->
477 <!-- headscripts -->
478 <?php $this->html('headscripts') ?>
479 <!-- /headscripts -->
480 <?php if($this->data['jsvarurl']): ?>
481 <!-- jsvarurl -->
482 <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('jsvarurl') ?>"><!-- site js --></script>
483 <!-- /jsvarurl -->
484 <?php endif; ?>
485 <?php if($this->data['pagecss']): ?>
486 <!-- pagecss -->
487 <style type="text/css"><?php $this->html('pagecss') ?></style>
488 <!-- /pagecss -->
489 <?php endif; ?>
490 <?php if($this->data['usercss']): ?>
491 <!-- usercss -->
492 <style type="text/css"><?php $this->html('usercss') ?></style>
493 <!-- /usercss -->
494 <?php endif; ?>
495 <?php if($this->data['userjs']): ?>
496 <!-- userjs -->
497 <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('userjs' ) ?>"></script>
498 <!-- /userjs -->
499 <?php endif; ?>
500 <?php if($this->data['userjsprev']): ?>
501 <!-- userjsprev -->
502 <script type="<?php $this->text('jsmimetype') ?>"><?php $this->html('userjsprev') ?></script>
503 <!-- /userjsprev -->
504 <?php endif; ?>
505 <?php if($this->data['trackbackhtml']): ?>
506 <!-- trackbackhtml -->
507 <?php echo $this->data['trackbackhtml']; ?>
508 <!-- /trackbackhtml -->
509 <?php endif; ?>
510 </head>
511 <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') ?>">
512 <div id="page-base" class="noprint"></div>
513 <div id="head-base" class="noprint"></div>
514 <!-- content -->
515 <div id="content">
516 <a name="top" id="top"></a>
517 <!-- sitenotice -->
518 <?php if($this->data['sitenotice']) { ?><div id="siteNotice"><?php $this->html('sitenotice') ?></div><?php } ?>
519 <!-- /sitenotice -->
520 <!-- firstHeading -->
521 <h1 id="firstHeading" class="firstHeading"><?php $this->html('title') ?></h1>
522 <!-- /firstHeading -->
523 <!-- bodyContent -->
524 <div id="bodyContent">
525 <!-- tagline -->
526 <h3 id="siteSub"><?php $this->msg('tagline') ?></h3>
527 <!-- /tagline -->
528 <!-- subtitle -->
529 <div id="contentSub"><?php $this->html('subtitle') ?></div>
530 <!-- /subtitle -->
531 <?php if($this->data['undelete']): ?>
532 <!-- undelete -->
533 <div id="contentSub2"><?php $this->html('undelete') ?></div>
534 <!-- /undelete -->
535 <?php endif; ?>
536 <?php if($this->data['newtalk'] ): ?>
537 <!-- newtalk -->
538 <div class="usermessage"><?php $this->html('newtalk') ?></div>
539 <!-- /newtalk -->
540 <?php endif; ?>
541 <?php if($this->data['showjumplinks']): ?>
542 <!-- jumpto -->
543 <div id="jump-to-nav">
544 <?php $this->msg('jumpto') ?> <a href="#head"><?php $this->msg('jumptonavigation') ?></a>,
545 <a href="#search"><?php $this->msg('jumptosearch') ?></a>
546 </div>
547 <!-- /jumpto -->
548 <?php endif; ?>
549 <!-- bodytext -->
550 <?php $this->html('bodytext') ?>
551 <!-- /bodytext -->
552 <!-- catlinks -->
553 <?php if($this->data['catlinks']) { $this->html('catlinks'); } ?>
554 <!-- /catlinks -->
555 <!-- dataAfterContent -->
556 <?php if($this->data['dataAfterContent']) { $this->html('dataAfterContent'); } ?>
557 <!-- /dataAfterContent -->
558 <div class="visualClear"></div>
559 </div>
560 <!-- /bodyContent -->
561 </div>
562 <!-- /content -->
563 <!-- header -->
564 <div id="head" class="noprint">
565 <!-- personal -->
566 <div id="personal">
567 <h5><?php $this->msg('personaltools') ?></h5>
568 <ul <?php $this->html('userlangattributes') ?>>
569 <?php foreach($this->data['personal_urls'] as $key => $item): ?>
570 <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>
571 <?php endforeach; ?>
572 </ul>
573 </div>
574 <!-- /personal -->
575 <div id="left-navigation">
576 <!-- namespaces -->
577 <div id="namespaces">
578 <h5><?php $this->msg('namespaces') ?></h5>
579 <ul <?php $this->html('userlangattributes') ?>>
580 <?php foreach ($this->data['namespace_urls'] as $key => $link ): ?>
581 <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>
582 <?php endforeach; ?>
583 </ul>
584 </div>
585 <!-- /namespaces -->
586 <!-- variants -->
587 <?php if ( count( $this->data['variant_urls'] ) > 0 ): ?>
588 <div id="variants">
589 <h5><span><?php $this->msg('variants') ?></span><a href="#">&nbsp;</a></h5>
590 <div class="menu">
591 <ul <?php $this->html('userlangattributes') ?>>
592 <?php foreach ($this->data['variant_urls'] as $key => $link ): ?>
593 <li<?php echo $link['attributes'] ?><?php if(!empty($link['class'])): ?> class="<?php echo htmlspecialchars($link['class']) ?>"<?php endif; ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li>
594 <?php endforeach; ?>
595 </ul>
596 </div>
597 </div>
598 <?php endif; ?>
599 <!-- /variants -->
600 </div>
601 <div id="right-navigation">
602 <!-- views -->
603 <?php if ( count( $this->data['view_urls'] ) > 0 ): ?>
604 <div id="views">
605 <h5><?php $this->msg('views') ?></h5>
606 <ul <?php $this->html('userlangattributes') ?>>
607 <?php foreach ($this->data['view_urls'] as $key => $link ): ?>
608 <li<?php echo $link['attributes'] ?><?php if(!empty($link['class'])): ?> class="<?php echo htmlspecialchars($link['class']) ?>"<?php endif; ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><span><?php echo htmlspecialchars( $link['text'] ) ?></span></a></li>
609 <?php endforeach; ?>
610 </ul>
611 </div>
612 <?php endif; ?>
613 <!-- /views -->
614 <!-- actions -->
615 <?php if ( count( $this->data['action_urls'] ) > 0 ): ?>
616 <div id="actions">
617 <h5><span><?php $this->msg('actions') ?></span><a href="#">&nbsp;</a></h5>
618 <div class="menu">
619 <ul <?php $this->html('userlangattributes') ?>>
620 <?php foreach ($this->data['action_urls'] as $key => $link ): ?>
621 <li<?php echo $link['attributes'] ?><?php if(!empty($link['class'])): ?> class="<?php echo htmlspecialchars($link['class']) ?>"<?php endif; ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li>
622 <?php endforeach; ?>
623 </ul>
624 </div>
625 </div>
626 <?php endif; ?>
627 <!-- /actions -->
628 <!-- search -->
629 <div id="search">
630 <h5 <?php $this->html('userlangattributes') ?>><label for="searchInput"><?php $this->msg( 'search' ) ?></label></h5>
631 <form action="<?php $this->text( 'wgScript' ) ?>" id="searchform">
632 <input type='hidden' name="title" value="<?php $this->text( 'searchtitle' ) ?>"/>
633 <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; ?> />
634 <input type='submit' name="go" class="searchButton" id="searchGoButton" value="<?php $this->msg( 'searcharticle' ) ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-go' ); ?> />
635 <?php if ( $wgUseTwoButtonsSearchForm ): ?>
636 <input type="submit" name="fulltext" class="searchButton" id="mw-searchButton" value="<?php $this->msg( 'searchbutton' ) ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-fulltext' ); ?> />
637 <?php else: ?>
638 <div><a href="<?php $this->text( 'searchaction' ) ?>" rel="search"><?php $this->msg( 'powersearch-legend' ) ?></a></div>
639 <?php endif; ?>
640 </form>
641 </div>
642 <!-- /search -->
643 </div>
644 </div>
645 <!-- /header -->
646 <!-- panel -->
647 <div id="panel" class="noprint">
648 <!-- sidebar -->
649 <?php
650 $sidebar = $this->data['sidebar'];
651 $sidebar['TOOLBOX'] = ( !isset( $sidebar['TOOLBOX'] ) );
652 $sidebar['LANGUAGES'] = ( !isset( $sidebar['LANGUAGES'] ) );
653 foreach ( $sidebar as $name => $content ) {
654 switch( $name ) {
655 case 'SEARCH':
656 break;
657 case 'TOOLBOX':
658 $this->toolBox();
659 break;
660 case 'LANGUAGES':
661 $this->languageBox();
662 break;
663 default:
664 $this->customBox( $name, $content );
665 break;
666 }
667 }
668 ?>
669 <!-- /sidebar -->
670 </div>
671 <!-- /panel -->
672 <div class="break"></div>
673 <!-- foot -->
674 <div id="foot">
675 <?php foreach( $validFooterLinks as $category => $links ): ?>
676 <?php if ( count( $links ) > 0 ): ?>
677 <ul id="foot-<?php echo $category ?>">
678 <?php foreach( $links as $link ): ?>
679 <?php if( isset( $this->data[$link] ) && $this->data[$link] ): ?>
680 <li id="foot-<?php echo $category ?>-<?php echo $link ?>"><?php $this->html( $link ) ?></li>
681 <?php endif; ?>
682 <?php endforeach; ?>
683 </ul>
684 <?php endif; ?>
685 <?php endforeach; ?>
686 <ul id="foot-icons" class="noprint">
687 <?php if( $this->data['poweredbyico'] ): ?>
688 <li id="foot-icon-poweredby"><?php $this->html( 'poweredbyico' ) ?></li>
689 <?php endif; ?>
690 <?php if( $this->data['copyrightico'] ): ?>
691 <li id="foot-icon-copyright"><?php $this->html( 'copyrightico' ) ?></li>
692 <?php endif; ?>
693 </ul>
694 <div style="clear:both"></div>
695 </div>
696 <!-- /foot -->
697 <!-- logo -->
698 <div id="logo">
699 <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>
700 </div>
701 <!-- /logo -->
702 <!-- fixalpha -->
703 <script type="<?php $this->text('jsmimetype') ?>"> if (window.isMSIE55) fixalpha( 'logo' ); </script>
704 <!-- /fixalpha -->
705 <?php $this->html( 'bottomscripts' ); /* JS call to runBodyOnloadHook */ ?>
706 <?php $this->html( 'reporttime' ) ?>
707 <?php if ( $this->data['debug'] ): ?>
708 <!-- Debug output:
709 <?php $this->text( 'debug' ); ?>
710 -->
711 <?php endif; ?>
712 </body>
713 </html>
714 <?php
715 // We're done with abusing arrays now...
716 wfRestoreWarnings();
717 }
718
719 /**
720 * Outputs a box with a list of tools
721 */
722 private function toolBox() {
723 ?>
724 <div class="portal" id="p-tb">
725 <h5 <?php $this->html('userlangattributes') ?>><?php $this->msg( 'toolbox' ) ?></h5>
726 <div class="body">
727 <ul>
728 <?php if( $this->data['notspecialpage'] ): ?>
729 <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>
730 <?php if( $this->data['nav_urls']['recentchangeslinked'] ): ?>
731 <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>
732 <?php endif; ?>
733 <?php endif; ?>
734 <?php if( isset( $this->data['nav_urls']['trackbacklink'] ) ): ?>
735 <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>
736 <?php endif; ?>
737 <?php if( $this->data['feeds']): ?>
738 <li id="feedlinks">
739 <?php foreach( $this->data['feeds'] as $key => $feed ): ?>
740 <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>
741 <?php endforeach; ?>
742 </li>
743 <?php endif; ?>
744 <?php foreach( array( 'contributions', 'log', 'blockip', 'emailuser', 'upload', 'specialpages' ) as $special ): ?>
745 <?php if( $this->data['nav_urls'][$special]): ?>
746 <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>
747 <?php endif; ?>
748 <?php endforeach; ?>
749 <?php if( !empty( $this->data['nav_urls']['print']['href'] ) ): ?>
750 <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>
751 <?php endif; ?>
752 <?php if ( !empty( $this->data['nav_urls']['permalink']['href'] ) ): ?>
753 <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>
754 <?php elseif ( $this->data['nav_urls']['permalink']['href'] === '' ): ?>
755 <li id="t-ispermalink"<?php echo $this->skin->tooltip( 't-ispermalink' ) ?>><?php $this->msg( 'permalink' ) ?></li>
756 <?php endif; ?>
757 <?php wfRunHooks( 'VectorTemplateToolboxEnd', array( &$this ) ); ?>
758 <?php wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this ) ); ?>
759 </ul>
760 </div>
761 </div>
762 <?php
763 }
764
765 /**
766 * Outputs a box with a list of alternative languages for this page
767 */
768 private function languageBox() {
769 if( $this->data['language_urls'] ) {
770 ?>
771 <div class="portal" id="p-lang">
772 <h5 <?php $this->html('userlangattributes') ?>><?php $this->msg( 'otherlanguages' ) ?></h5>
773 <div class="body">
774 <ul>
775 <?php foreach ( $this->data['language_urls'] as $langlink ): ?>
776 <li class="<?php echo htmlspecialchars( $langlink['class'] ) ?>"><a href="<?php echo htmlspecialchars( $langlink['href'] ) ?>"><?php echo $langlink['text'] ?></a></li>
777 <?php endforeach; ?>
778 </ul>
779 </div>
780 </div>
781 <?php
782 }
783 }
784
785 /**
786 * Outputs a box with a custom list of items or HTML content
787 * @param string $bar Message name for title of box
788 * @param mixed $content HTML or array of items to build a list from
789 */
790 private function customBox( $bar, $content ) {
791 ?>
792 <div class="portal" id='<?php echo Sanitizer::escapeId( "p-$bar" ) ?>'<?php echo $this->skin->tooltip( 'p-' . $bar ) ?>>
793 <h5 <?php $this->html('userlangattributes') ?>><?php $out = wfMsg( $bar ); if ( wfEmptyMsg( $bar, $out ) ) echo htmlspecialchars( $bar ); else echo htmlspecialchars( $out ); ?></h5>
794 <div class="body">
795 <?php if ( is_array( $content ) ): ?>
796 <ul>
797 <?php foreach( $content as $key => $val ): ?>
798 <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>
799 <?php endforeach; ?>
800 </ul>
801 <?php else: ?>
802 <?php echo $content; /* Allow raw HTML block to be defined by extensions */ ?>
803 <?php endif; ?>
804 </div>
805 </div>
806 <?php
807 }
808 }