Revert r42799, r42800 "(bug 1999) Add editable footer message, via [[MediaWiki:Footer...
[lhc/web/wiklou.git] / skins / MonoBook.php
1 <?php
2 /**
3 * MonoBook nouveau
4 *
5 * Translated from gwicke's previous TAL template version to remove
6 * dependency on PHPTAL.
7 *
8 * @todo document
9 * @file
10 * @ingroup Skins
11 */
12
13 if( !defined( 'MEDIAWIKI' ) )
14 die( -1 );
15
16 /**
17 * Inherit main code from SkinTemplate, set the CSS and template filter.
18 * @todo document
19 * @ingroup Skins
20 */
21 class SkinMonoBook extends SkinTemplate {
22 /** Using monobook. */
23 function initPage( OutputPage $out ) {
24 parent::initPage( $out );
25 $this->skinname = 'monobook';
26 $this->stylename = 'monobook';
27 $this->template = 'MonoBookTemplate';
28
29 }
30
31 function setupSkinUserCss( OutputPage $out ) {
32 global $wgHandheldStyle;
33
34 parent::setupSkinUserCss( $out );
35
36 // Append to the default screen common & print styles...
37 $out->addStyle( 'monobook/main.css', 'screen' );
38 if( $wgHandheldStyle ) {
39 // Currently in testing... try 'chick/main.css'
40 $out->addStyle( $wgHandheldStyle, 'handheld' );
41 }
42
43 $out->addStyle( 'monobook/IE50Fixes.css', 'screen', 'lt IE 5.5000' );
44 $out->addStyle( 'monobook/IE55Fixes.css', 'screen', 'IE 5.5000' );
45 $out->addStyle( 'monobook/IE60Fixes.css', 'screen', 'IE 6' );
46 $out->addStyle( 'monobook/IE70Fixes.css', 'screen', 'IE 7' );
47
48 $out->addStyle( 'monobook/rtl.css', 'screen', '', 'rtl' );
49 }
50 }
51
52 /**
53 * @todo document
54 * @ingroup Skins
55 */
56 class MonoBookTemplate extends QuickTemplate {
57 var $skin;
58 /**
59 * Template filter callback for MonoBook skin.
60 * Takes an associative array of data set from a SkinTemplate-based
61 * class, and a wrapper for MediaWiki's localization database, and
62 * outputs a formatted page.
63 *
64 * @access private
65 */
66 function execute() {
67 global $wgRequest;
68 $this->skin = $skin = $this->data['skin'];
69 $action = $wgRequest->getText( 'action' );
70
71 // Suppress warnings to prevent notices about missing indexes in $this->data
72 wfSuppressWarnings();
73
74 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
75 <html xmlns="<?php $this->text('xhtmldefaultnamespace') ?>" <?php
76 foreach($this->data['xhtmlnamespaces'] as $tag => $ns) {
77 ?>xmlns:<?php echo "{$tag}=\"{$ns}\" ";
78 } ?>xml:lang="<?php $this->text('lang') ?>" lang="<?php $this->text('lang') ?>" dir="<?php $this->text('dir') ?>">
79 <head>
80 <meta http-equiv="Content-Type" content="<?php $this->text('mimetype') ?>; charset=<?php $this->text('charset') ?>" />
81 <?php $this->html('headlinks') ?>
82 <title><?php $this->text('pagetitle') ?></title>
83 <?php $this->html('csslinks') ?>
84
85 <!--[if lt IE 7]><script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/common/IEFixes.js?<?php echo $GLOBALS['wgStyleVersion'] ?>"></script>
86 <meta http-equiv="imagetoolbar" content="no" /><![endif]-->
87
88 <?php print Skin::makeGlobalVariablesScript( $this->data ); ?>
89
90 <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath' ) ?>/common/wikibits.js?<?php echo $GLOBALS['wgStyleVersion'] ?>"><!-- wikibits js --></script>
91 <!-- Head Scripts -->
92 <?php $this->html('headscripts') ?>
93 <?php if($this->data['jsvarurl']) { ?>
94 <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('jsvarurl') ?>"><!-- site js --></script>
95 <?php } ?>
96 <?php if($this->data['pagecss']) { ?>
97 <style type="text/css"><?php $this->html('pagecss') ?></style>
98 <?php }
99 if($this->data['usercss']) { ?>
100 <style type="text/css"><?php $this->html('usercss') ?></style>
101 <?php }
102 if($this->data['userjs']) { ?>
103 <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('userjs' ) ?>"></script>
104 <?php }
105 if($this->data['userjsprev']) { ?>
106 <script type="<?php $this->text('jsmimetype') ?>"><?php $this->html('userjsprev') ?></script>
107 <?php }
108 if($this->data['trackbackhtml']) print $this->data['trackbackhtml']; ?>
109 </head>
110 <body<?php if($this->data['body_ondblclick']) { ?> ondblclick="<?php $this->text('body_ondblclick') ?>"<?php } ?>
111 <?php if($this->data['body_onload']) { ?> onload="<?php $this->text('body_onload') ?>"<?php } ?>
112 class="mediawiki <?php $this->text('dir') ?> <?php $this->text('pageclass') ?> <?php $this->text('skinnameclass') ?>">
113 <div id="globalWrapper">
114 <div id="column-content">
115 <div id="content">
116 <a name="top" id="top"></a>
117 <?php if($this->data['sitenotice']) { ?><div id="siteNotice"><?php $this->html('sitenotice') ?></div><?php } ?>
118 <h1 class="firstHeading"><?php $this->data['displaytitle']!=""?$this->html('title'):$this->text('title') ?></h1>
119 <div id="bodyContent">
120 <h3 id="siteSub"><?php $this->msg('tagline') ?></h3>
121 <div id="contentSub"><?php $this->html('subtitle') ?></div>
122 <?php if($this->data['undelete']) { ?><div id="contentSub2"><?php $this->html('undelete') ?></div><?php } ?>
123 <?php if($this->data['newtalk'] ) { ?><div class="usermessage"><?php $this->html('newtalk') ?></div><?php } ?>
124 <?php if($this->data['showjumplinks']) { ?><div id="jump-to-nav"><?php $this->msg('jumpto') ?> <a href="#column-one"><?php $this->msg('jumptonavigation') ?></a>, <a href="#searchInput"><?php $this->msg('jumptosearch') ?></a></div><?php } ?>
125 <!-- start content -->
126 <?php $this->html('bodytext') ?>
127 <?php if($this->data['catlinks']) { $this->html('catlinks'); } ?>
128 <!-- end content -->
129 <?php if($this->data['dataAfterContent']) { $this->html ('dataAfterContent'); } ?>
130 <div class="visualClear"></div>
131 </div>
132 </div>
133 </div>
134 <div id="column-one">
135 <div id="p-cactions" class="portlet">
136 <h5><?php $this->msg('views') ?></h5>
137 <div class="pBody">
138 <ul>
139 <?php foreach($this->data['content_actions'] as $key => $tab) {
140 echo '
141 <li id="ca-' . Sanitizer::escapeId($key).'"';
142 if( $tab['class'] ) {
143 echo ' class="'.htmlspecialchars($tab['class']).'"';
144 }
145 echo'><a href="'.htmlspecialchars($tab['href']).'"';
146 # We don't want to give the watch tab an accesskey if the
147 # page is being edited, because that conflicts with the
148 # accesskey on the watch checkbox. We also don't want to
149 # give the edit tab an accesskey, because that's fairly su-
150 # perfluous and conflicts with an accesskey (Ctrl-E) often
151 # used for editing in Safari.
152 if( in_array( $action, array( 'edit', 'submit' ) )
153 && in_array( $key, array( 'edit', 'watch', 'unwatch' ))) {
154 echo $skin->tooltip( "ca-$key" );
155 } else {
156 echo $skin->tooltipAndAccesskey( "ca-$key" );
157 }
158 echo '>'.htmlspecialchars($tab['text']).'</a></li>';
159 } ?>
160 </ul>
161 </div>
162 </div>
163 <div class="portlet" id="p-personal">
164 <h5><?php $this->msg('personaltools') ?></h5>
165 <div class="pBody">
166 <ul>
167 <?php foreach($this->data['personal_urls'] as $key => $item) { ?>
168 <li id="pt-<?php echo Sanitizer::escapeId($key) ?>"<?php
169 if ($item['active']) { ?> class="active"<?php } ?>><a href="<?php
170 echo htmlspecialchars($item['href']) ?>"<?php echo $skin->tooltipAndAccesskey('pt-'.$key) ?><?php
171 if(!empty($item['class'])) { ?> class="<?php
172 echo htmlspecialchars($item['class']) ?>"<?php } ?>><?php
173 echo htmlspecialchars($item['text']) ?></a></li>
174 <?php } ?>
175 </ul>
176 </div>
177 </div>
178 <div class="portlet" id="p-logo">
179 <a style="background-image: url(<?php $this->text('logopath') ?>);" <?php
180 ?>href="<?php echo htmlspecialchars($this->data['nav_urls']['mainpage']['href'])?>"<?php
181 echo $skin->tooltipAndAccesskey('n-mainpage') ?>></a>
182 </div>
183 <script type="<?php $this->text('jsmimetype') ?>"> if (window.isMSIE55) fixalpha(); </script>
184 <?php
185 $sidebar = $this->data['sidebar'];
186 if ( !isset( $sidebar['SEARCH'] ) ) $sidebar['SEARCH'] = true;
187 if ( !isset( $sidebar['TOOLBOX'] ) ) $sidebar['TOOLBOX'] = true;
188 if ( !isset( $sidebar['LANGUAGES'] ) ) $sidebar['LANGUAGES'] = true;
189 foreach ($sidebar as $boxName => $cont) {
190 if ( $boxName == 'SEARCH' ) {
191 $this->searchBox();
192 } elseif ( $boxName == 'TOOLBOX' ) {
193 $this->toolbox();
194 } elseif ( $boxName == 'LANGUAGES' ) {
195 $this->languageBox();
196 } else {
197 $this->customBox( $boxName, $cont );
198 }
199 }
200 ?>
201 </div><!-- end of the left (by default at least) column -->
202 <div class="visualClear"></div>
203 <div id="footer">
204 <?php
205 if($this->data['poweredbyico']) { ?>
206 <div id="f-poweredbyico"><?php $this->html('poweredbyico') ?></div>
207 <?php }
208 if($this->data['copyrightico']) { ?>
209 <div id="f-copyrightico"><?php $this->html('copyrightico') ?></div>
210 <?php }
211
212 // Generate additional footer links
213 ?>
214 <ul id="f-list">
215 <?php
216 $footerlinks = array(
217 'lastmod', 'viewcount', 'numberofwatchingusers', 'credits', 'copyright',
218 'privacy', 'about', 'disclaimer', 'tagline',
219 );
220 foreach( $footerlinks as $aLink ) {
221 if( isset( $this->data[$aLink] ) && $this->data[$aLink] ) {
222 ?> <li id="<?php echo$aLink?>"><?php $this->html($aLink) ?></li>
223 <?php }
224 }
225 ?>
226 </ul>
227 </div>
228 </div>
229 <?php $this->html('bottomscripts'); /* JS call to runBodyOnloadHook */ ?>
230 <?php $this->html('reporttime') ?>
231 <?php if ( $this->data['debug'] ): ?>
232 <!-- Debug output:
233 <?php $this->text( 'debug' ); ?>
234
235 -->
236 <?php endif; ?>
237 </body></html>
238 <?php
239 wfRestoreWarnings();
240 } // end of execute() method
241
242 /*************************************************************************************************/
243 function searchBox() {
244 ?>
245 <div id="p-search" class="portlet">
246 <h5><label for="searchInput"><?php $this->msg('search') ?></label></h5>
247 <div id="searchBody" class="pBody">
248 <form action="<?php $this->text('searchaction') ?>" id="searchform"><div>
249 <input id="searchInput" name="search" type="text"<?php echo $this->skin->tooltipAndAccesskey('search');
250 if( isset( $this->data['search'] ) ) {
251 ?> value="<?php $this->text('search') ?>"<?php } ?> />
252 <input type='submit' name="go" class="searchButton" id="searchGoButton" value="<?php $this->msg('searcharticle') ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-go' ); ?> />&nbsp;
253 <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="<?php $this->msg('searchbutton') ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-fulltext' ); ?> />
254 </div></form>
255 </div>
256 </div>
257 <?php
258 }
259
260 /*************************************************************************************************/
261 function toolbox() {
262 ?>
263 <div class="portlet" id="p-tb">
264 <h5><?php $this->msg('toolbox') ?></h5>
265 <div class="pBody">
266 <ul>
267 <?php
268 if($this->data['notspecialpage']) { ?>
269 <li id="t-whatlinkshere"><a href="<?php
270 echo htmlspecialchars($this->data['nav_urls']['whatlinkshere']['href'])
271 ?>"<?php echo $this->skin->tooltipAndAccesskey('t-whatlinkshere') ?>><?php $this->msg('whatlinkshere') ?></a></li>
272 <?php
273 if( $this->data['nav_urls']['recentchangeslinked'] ) { ?>
274 <li id="t-recentchangeslinked"><a href="<?php
275 echo htmlspecialchars($this->data['nav_urls']['recentchangeslinked']['href'])
276 ?>"<?php echo $this->skin->tooltipAndAccesskey('t-recentchangeslinked') ?>><?php $this->msg('recentchangeslinked') ?></a></li>
277 <?php }
278 }
279 if(isset($this->data['nav_urls']['trackbacklink'])) { ?>
280 <li id="t-trackbacklink"><a href="<?php
281 echo htmlspecialchars($this->data['nav_urls']['trackbacklink']['href'])
282 ?>"<?php echo $this->skin->tooltipAndAccesskey('t-trackbacklink') ?>><?php $this->msg('trackbacklink') ?></a></li>
283 <?php }
284 if($this->data['feeds']) { ?>
285 <li id="feedlinks"><?php foreach($this->data['feeds'] as $key => $feed) {
286 ?><span id="feed-<?php echo Sanitizer::escapeId($key) ?>"><a href="<?php
287 echo htmlspecialchars($feed['href']) ?>"<?php echo $this->skin->tooltipAndAccesskey('feed-'.$key) ?>><?php echo htmlspecialchars($feed['text'])?></a>&nbsp;</span>
288 <?php } ?></li><?php
289 }
290
291 foreach( array('contributions', 'log', 'blockip', 'emailuser', 'upload', 'specialpages') as $special ) {
292
293 if($this->data['nav_urls'][$special]) {
294 ?><li id="t-<?php echo $special ?>"><a href="<?php echo htmlspecialchars($this->data['nav_urls'][$special]['href'])
295 ?>"<?php echo $this->skin->tooltipAndAccesskey('t-'.$special) ?>><?php $this->msg($special) ?></a></li>
296 <?php }
297 }
298
299 if(!empty($this->data['nav_urls']['print']['href'])) { ?>
300 <li id="t-print"><a href="<?php echo htmlspecialchars($this->data['nav_urls']['print']['href'])
301 ?>"<?php echo $this->skin->tooltipAndAccesskey('t-print') ?>><?php $this->msg('printableversion') ?></a></li><?php
302 }
303
304 if(!empty($this->data['nav_urls']['permalink']['href'])) { ?>
305 <li id="t-permalink"><a href="<?php echo htmlspecialchars($this->data['nav_urls']['permalink']['href'])
306 ?>"<?php echo $this->skin->tooltipAndAccesskey('t-permalink') ?>><?php $this->msg('permalink') ?></a></li><?php
307 } elseif ($this->data['nav_urls']['permalink']['href'] === '') { ?>
308 <li id="t-ispermalink"<?php echo $this->skin->tooltip('t-ispermalink') ?>><?php $this->msg('permalink') ?></li><?php
309 }
310
311 wfRunHooks( 'MonoBookTemplateToolboxEnd', array( &$this ) );
312 wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this ) );
313 ?>
314 </ul>
315 </div>
316 </div>
317 <?php
318 }
319
320 /*************************************************************************************************/
321 function languageBox() {
322 if( $this->data['language_urls'] ) {
323 ?>
324 <div id="p-lang" class="portlet">
325 <h5><?php $this->msg('otherlanguages') ?></h5>
326 <div class="pBody">
327 <ul>
328 <?php foreach($this->data['language_urls'] as $langlink) { ?>
329 <li class="<?php echo htmlspecialchars($langlink['class'])?>"><?php
330 ?><a href="<?php echo htmlspecialchars($langlink['href']) ?>"><?php echo $langlink['text'] ?></a></li>
331 <?php } ?>
332 </ul>
333 </div>
334 </div>
335 <?php
336 }
337 }
338
339 /*************************************************************************************************/
340 function customBox( $bar, $cont ) {
341 ?>
342 <div class='generated-sidebar portlet' id='p-<?php echo Sanitizer::escapeId($bar) ?>'<?php echo $this->skin->tooltip('p-'.$bar) ?>>
343 <h5><?php $out = wfMsg( $bar ); if (wfEmptyMsg($bar, $out)) echo $bar; else echo $out; ?></h5>
344 <div class='pBody'>
345 <?php if ( is_array( $cont ) ) { ?>
346 <ul>
347 <?php foreach($cont as $key => $val) { ?>
348 <li id="<?php echo Sanitizer::escapeId($val['id']) ?>"<?php
349 if ( $val['active'] ) { ?> class="active" <?php }
350 ?>><a href="<?php echo htmlspecialchars($val['href']) ?>"<?php echo $this->skin->tooltipAndAccesskey($val['id']) ?>><?php echo htmlspecialchars($val['text']) ?></a></li>
351 <?php } ?>
352 </ul>
353 <?php } else {
354 # allow raw HTML block to be defined by extensions
355 print $cont;
356 }
357 ?>
358 </div>
359 </div>
360 <?php
361 }
362
363 } // end of class
364
365