Let's not have another fatal error due to a simple oversight right before a release...
[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 * @package MediaWiki
10 * @subpackage Skins
11 */
12
13 if( !defined( 'MEDIAWIKI' ) )
14 die( -1 );
15
16 /** */
17 require_once('includes/SkinTemplate.php');
18
19 /**
20 * Inherit main code from SkinTemplate, set the CSS and template filter.
21 * @todo document
22 * @package MediaWiki
23 * @subpackage Skins
24 */
25 class SkinMonoBook extends SkinTemplate {
26 /** Using monobook. */
27 function initPage( &$out ) {
28 SkinTemplate::initPage( $out );
29 $this->skinname = 'monobook';
30 $this->stylename = 'monobook';
31 $this->template = 'MonoBookTemplate';
32 }
33 }
34
35 /**
36 * @todo document
37 * @package MediaWiki
38 * @subpackage Skins
39 */
40 class MonoBookTemplate extends QuickTemplate {
41 /**
42 * Template filter callback for MonoBook skin.
43 * Takes an associative array of data set from a SkinTemplate-based
44 * class, and a wrapper for MediaWiki's localization database, and
45 * outputs a formatted page.
46 *
47 * @access private
48 */
49 function execute() {
50 // Suppress warnings to prevent notices about missing indexes in $this->data
51 wfSuppressWarnings();
52
53 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
54 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php $this->text('lang') ?>" lang="<?php $this->text('lang') ?>" dir="<?php $this->text('dir') ?>">
55 <head>
56 <meta http-equiv="Content-Type" content="<?php $this->text('mimetype') ?>; charset=<?php $this->text('charset') ?>" />
57 <?php $this->html('headlinks') ?>
58 <title><?php $this->text('pagetitle') ?></title>
59 <style type="text/css" media="screen,projection">/*<![CDATA[*/ @import "<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/main.css?7"; /*]]>*/</style>
60 <link rel="stylesheet" type="text/css" <?php if(empty($this->data['printable']) ) { ?>media="print"<?php } ?> href="<?php $this->text('stylepath') ?>/common/commonPrint.css" />
61 <!--[if lt IE 5.5000]><style type="text/css">@import "<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/IE50Fixes.css";</style><![endif]-->
62 <!--[if IE 5.5000]><style type="text/css">@import "<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/IE55Fixes.css";</style><![endif]-->
63 <!--[if IE 6]><style type="text/css">@import "<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/IE60Fixes.css";</style><![endif]-->
64 <!--[if IE 7]><style type="text/css">@import "<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/IE70Fixes.css?1";</style><![endif]-->
65 <!--[if lt IE 7]><script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/common/IEFixes.js"></script>
66 <meta http-equiv="imagetoolbar" content="no" /><![endif]-->
67 <script type="<?php $this->text('jsmimetype') ?>">var skin = '<?php $this->text('skinname')?>';var stylepath = '<?php $this->text('stylepath')?>';</script>
68 <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath' ) ?>/common/wikibits.js"><!-- wikibits js --></script>
69 <?php if($this->data['jsvarurl' ]) { ?>
70 <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('jsvarurl' ) ?>"><!-- site js --></script>
71 <?php } ?>
72 <?php if($this->data['pagecss' ]) { ?>
73 <style type="text/css"><?php $this->html('pagecss' ) ?></style>
74 <?php }
75 if($this->data['usercss' ]) { ?>
76 <style type="text/css"><?php $this->html('usercss' ) ?></style>
77 <?php }
78 if($this->data['userjs' ]) { ?>
79 <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('userjs' ) ?>"></script>
80 <?php }
81 if($this->data['userjsprev']) { ?>
82 <script type="<?php $this->text('jsmimetype') ?>"><?php $this->html('userjsprev') ?></script>
83 <?php }
84 if($this->data['trackbackhtml']) print $this->data['trackbackhtml']; ?>
85 <!-- Head Scripts -->
86 <?php $this->html('headscripts') ?>
87 </head>
88 <body <?php if($this->data['body_ondblclick']) { ?>ondblclick="<?php $this->text('body_ondblclick') ?>"<?php } ?>
89 <?php if($this->data['body_onload' ]) { ?>onload="<?php $this->text('body_onload') ?>"<?php } ?>
90 class="<?php $this->text('nsclass') ?> <?php $this->text('dir') ?>">
91 <div id="globalWrapper">
92 <div id="column-content">
93 <div id="content">
94 <a name="top" id="top"></a>
95 <?php if($this->data['sitenotice']) { ?><div id="siteNotice"><?php $this->html('sitenotice') ?></div><?php } ?>
96 <h1 class="firstHeading"><?php $this->text('title') ?></h1>
97 <div id="bodyContent">
98 <h3 id="siteSub"><?php $this->msg('tagline') ?></h3>
99 <div id="contentSub"><?php $this->html('subtitle') ?></div>
100 <?php if($this->data['undelete']) { ?><div id="contentSub2"><?php $this->html('undelete') ?></div><?php } ?>
101 <?php if($this->data['newtalk'] ) { ?><div class="usermessage"><?php $this->html('newtalk') ?></div><?php } ?>
102 <?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 } ?>
103 <!-- start content -->
104 <?php $this->html('bodytext') ?>
105 <?php if($this->data['catlinks']) { ?><div id="catlinks"><?php $this->html('catlinks') ?></div><?php } ?>
106 <!-- end content -->
107 <div class="visualClear"></div>
108 </div>
109 </div>
110 </div>
111 <div id="column-one">
112 <div id="p-cactions" class="portlet">
113 <h5><?php $this->msg('views') ?></h5>
114 <ul>
115 <?php foreach($this->data['content_actions'] as $key => $tab) { ?>
116 <li id="ca-<?php echo htmlspecialchars($key) ?>"<?php
117 if($tab['class']) { ?> class="<?php echo htmlspecialchars($tab['class']) ?>"<?php }
118 ?>><a href="<?php echo htmlspecialchars($tab['href']) ?>"><?php
119 echo htmlspecialchars($tab['text']) ?></a></li>
120 <?php } ?>
121 </ul>
122 </div>
123 <div class="portlet" id="p-personal">
124 <h5><?php $this->msg('personaltools') ?></h5>
125 <div class="pBody">
126 <ul>
127 <?php foreach($this->data['personal_urls'] as $key => $item) { ?>
128 <li id="pt-<?php echo htmlspecialchars($key) ?>"<?php
129 if ($item['active']) { ?> class="active"<?php } ?>><a href="<?php
130 echo htmlspecialchars($item['href']) ?>"<?php
131 if(!empty($item['class'])) { ?> class="<?php
132 echo htmlspecialchars($item['class']) ?>"<?php } ?>><?php
133 echo htmlspecialchars($item['text']) ?></a></li>
134 <?php } ?>
135 </ul>
136 </div>
137 </div>
138 <div class="portlet" id="p-logo">
139 <a style="background-image: url(<?php $this->text('logopath') ?>);" <?php
140 ?>href="<?php echo htmlspecialchars($this->data['nav_urls']['mainpage']['href'])?>" <?php
141 ?>title="<?php $this->msg('mainpage') ?>"></a>
142 </div>
143 <script type="<?php $this->text('jsmimetype') ?>"> if (window.isMSIE55) fixalpha(); </script>
144 <?php foreach ($this->data['sidebar'] as $bar => $cont) { ?>
145 <div class='portlet' id='p-<?php echo htmlspecialchars($bar) ?>'>
146 <h5><?php $out = wfMsg( $bar ); if (wfEmptyMsg($bar, $out)) echo $bar; else echo $out; ?></h5>
147 <div class='pBody'>
148 <ul>
149 <?php foreach($cont as $key => $val) { ?>
150 <li id="<?php echo htmlspecialchars($val['id']) ?>"<?php
151 if ( $val['active'] ) { ?> class="active" <?php }
152 ?>><a href="<?php echo htmlspecialchars($val['href']) ?>"><?php echo htmlspecialchars($val['text']) ?></a></li>
153 <?php } ?>
154 </ul>
155 </div>
156 </div>
157 <?php } ?>
158 <div id="p-search" class="portlet">
159 <h5><label for="searchInput"><?php $this->msg('search') ?></label></h5>
160 <div id="searchBody" class="pBody">
161 <form action="<?php $this->text('searchaction') ?>" id="searchform"><div>
162 <input id="searchInput" name="search" type="text" <?php
163 if($this->haveMsg('accesskey-search')) {
164 ?>accesskey="<?php $this->msg('accesskey-search') ?>"<?php }
165 if( isset( $this->data['search'] ) ) {
166 ?> value="<?php $this->text('search') ?>"<?php } ?> />
167 <input type='submit' name="go" class="searchButton" id="searchGoButton" value="<?php $this->msg('go') ?>" />&nbsp;
168 <input type='submit' name="fulltext" class="searchButton" value="<?php $this->msg('search') ?>" />
169 </div></form>
170 </div>
171 </div>
172 <div class="portlet" id="p-tb">
173 <h5><?php $this->msg('toolbox') ?></h5>
174 <div class="pBody">
175 <ul>
176 <?php
177 if($this->data['notspecialpage']) { ?>
178 <li id="t-whatlinkshere"><a href="<?php
179 echo htmlspecialchars($this->data['nav_urls']['whatlinkshere']['href'])
180 ?>"><?php $this->msg('whatlinkshere') ?></a></li>
181 <?php
182 if( $this->data['nav_urls']['recentchangeslinked'] ) { ?>
183 <li id="t-recentchangeslinked"><a href="<?php
184 echo htmlspecialchars($this->data['nav_urls']['recentchangeslinked']['href'])
185 ?>"><?php $this->msg('recentchangeslinked') ?></a></li>
186 <?php }
187 }
188 if(isset($this->data['nav_urls']['trackbacklink'])) { ?>
189 <li id="t-trackbacklink"><a href="<?php
190 echo htmlspecialchars($this->data['nav_urls']['trackbacklink']['href'])
191 ?>"><?php $this->msg('trackbacklink') ?></a></li>
192 <?php }
193 if($this->data['feeds']) { ?>
194 <li id="feedlinks"><?php foreach($this->data['feeds'] as $key => $feed) {
195 ?><span id="feed-<?php echo htmlspecialchars($key) ?>"><a href="<?php
196 echo htmlspecialchars($feed['href']) ?>"><?php echo htmlspecialchars($feed['text'])?></a>&nbsp;</span>
197 <?php } ?></li><?php
198 }
199
200 foreach( array('contributions', 'blockip', 'emailuser', 'upload', 'specialpages') as $special ) {
201
202 if($this->data['nav_urls'][$special]) {
203 ?><li id="t-<?php echo $special ?>"><a href="<?php echo htmlspecialchars($this->data['nav_urls'][$special]['href'])
204 ?>"><?php $this->msg($special) ?></a></li>
205 <?php }
206 }
207
208 if(!empty($this->data['nav_urls']['print']['href'])) { ?>
209 <li id="t-print"><a href="<?php echo htmlspecialchars($this->data['nav_urls']['print']['href'])
210 ?>"><?php $this->msg('printableversion') ?></a></li><?php
211 }
212
213 if(!empty($this->data['nav_urls']['permalink']['href'])) { ?>
214 <li id="t-permalink"><a href="<?php echo htmlspecialchars($this->data['nav_urls']['permalink']['href'])
215 ?>"><?php $this->msg('permalink') ?></a></li><?php
216 } elseif ($this->data['nav_urls']['permalink']['href'] === '') { ?>
217 <li id="t-ispermalink"><?php $this->msg('permalink') ?></li><?php
218 }
219
220 wfRunHooks( 'MonoBookTemplateToolboxEnd', array( &$this ) );
221 ?>
222 </ul>
223 </div>
224 </div>
225 <?php
226 if( $this->data['language_urls'] ) { ?>
227 <div id="p-lang" class="portlet">
228 <h5><?php $this->msg('otherlanguages') ?></h5>
229 <div class="pBody">
230 <ul>
231 <?php foreach($this->data['language_urls'] as $langlink) { ?>
232 <li class="<?php echo htmlspecialchars($langlink['class'])?>"><?php
233 ?><a href="<?php echo htmlspecialchars($langlink['href']) ?>"><?php echo $langlink['text'] ?></a></li>
234 <?php } ?>
235 </ul>
236 </div>
237 </div>
238 <?php } ?>
239 </div><!-- end of the left (by default at least) column -->
240 <div class="visualClear"></div>
241 <div id="footer">
242 <?php
243 if($this->data['poweredbyico']) { ?>
244 <div id="f-poweredbyico"><?php $this->html('poweredbyico') ?></div>
245 <?php }
246 if($this->data['copyrightico']) { ?>
247 <div id="f-copyrightico"><?php $this->html('copyrightico') ?></div>
248 <?php }
249
250 // Generate additional footer links
251 ?>
252 <ul id="f-list">
253 <?php
254 $footerlinks = array(
255 'lastmod', 'viewcount', 'numberofwatchingusers', 'credits', 'copyright',
256 'privacy', 'about', 'disclaimer', 'tagline',
257 );
258 foreach( $footerlinks as $aLink ) {
259 if( $this->data[$aLink] ) {
260 ?> <li id="<?php echo$aLink?>"><?php $this->html($aLink) ?></li>
261 <?php }
262 }
263 ?>
264 </ul>
265 </div>
266 <script type="text/javascript"> if (window.runOnloadHook) runOnloadHook();</script>
267 </div>
268 <?php $this->html('reporttime') ?>
269
270 </body></html>
271 <?php
272 wfRestoreWarnings();
273 } // end of execute() method
274 } // end of class
275 ?>