three new hooks in SpecialUndelete.php from Wikia codebase so that extensions, such...
[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 var $skinname = 'monobook', $stylename = 'monobook',
24 $template = 'MonoBookTemplate', $useHeadElement = true;
25
26 function setupSkinUserCss( OutputPage $out ) {
27 global $wgHandheldStyle;
28 parent::setupSkinUserCss( $out );
29
30 $out->addModuleStyles( 'skins.monobook' );
31
32 // Ugh. Can't do this properly because $wgHandheldStyle may be a URL
33 if( $wgHandheldStyle ) {
34 // Currently in testing... try 'chick/main.css'
35 $out->addStyle( $wgHandheldStyle, 'handheld' );
36 }
37
38 // TODO: Migrate all of these
39 //$out->addStyle( 'monobook/IE50Fixes.css', 'screen', 'lt IE 5.5000' );
40 //$out->addStyle( 'monobook/IE55Fixes.css', 'screen', 'IE 5.5000' );
41 //$out->addStyle( 'monobook/IE60Fixes.css', 'screen', 'IE 6' );
42 //$out->addStyle( 'monobook/IE70Fixes.css', 'screen', 'IE 7' );
43
44 // TODO: migrate
45 //$out->addStyle( 'monobook/rtl.css', 'screen', '', 'rtl' );
46
47 }
48 }
49
50 /**
51 * @todo document
52 * @ingroup Skins
53 */
54 class MonoBookTemplate extends BaseTemplate {
55
56 /**
57 * @var Skin
58 */
59 var $skin;
60
61 /**
62 * Template filter callback for MonoBook skin.
63 * Takes an associative array of data set from a SkinTemplate-based
64 * class, and a wrapper for MediaWiki's localization database, and
65 * outputs a formatted page.
66 *
67 * @access private
68 */
69 function execute() {
70 $this->skin = $skin = $this->data['skin'];
71
72 // Suppress warnings to prevent notices about missing indexes in $this->data
73 wfSuppressWarnings();
74
75 $this->html( 'headelement' );
76 ?><div id="globalWrapper">
77 <div id="column-content"><div id="content"<?php $this->html("specialpageattributes") ?>>
78 <a id="top"></a>
79 <?php if($this->data['sitenotice']) { ?><div id="siteNotice"><?php $this->html('sitenotice') ?></div><?php } ?>
80
81 <h1 id="firstHeading" class="firstHeading"><?php $this->html('title') ?></h1>
82 <div id="bodyContent">
83 <div id="siteSub"><?php $this->msg('tagline') ?></div>
84 <div id="contentSub"<?php $this->html('userlangattributes') ?>><?php $this->html('subtitle') ?></div>
85 <?php if($this->data['undelete']) { ?>
86 <div id="contentSub2"><?php $this->html('undelete') ?></div>
87 <?php } ?><?php if($this->data['newtalk'] ) { ?>
88 <div class="usermessage"><?php $this->html('newtalk') ?></div>
89 <?php } ?><?php if($this->data['showjumplinks']) { ?>
90 <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>
91 <?php } ?>
92 <!-- start content -->
93 <?php $this->html('bodytext') ?>
94 <?php if($this->data['printfooter']) { ?><div class="printfooter"><?php $this->html('printfooter'); ?></div><?php } ?>
95 <?php $this->html('debughtml'); ?>
96 <?php if($this->data['catlinks']) { $this->html('catlinks'); } ?>
97 <!-- end content -->
98 <?php if($this->data['dataAfterContent']) { $this->html ('dataAfterContent'); } ?>
99 <div class="visualClear"></div>
100 </div>
101 </div></div>
102 <div id="column-one"<?php $this->html('userlangattributes') ?>>
103 <?php $this->cactions( $skin ); ?>
104 <div class="portlet" id="p-personal">
105 <h5><?php $this->msg('personaltools') ?></h5>
106 <div class="pBody">
107 <ul<?php $this->html('userlangattributes') ?>>
108 <?php foreach($this->getPersonalTools() as $key => $item) { ?>
109 <?php echo $this->makeListItem($key, $item); ?>
110
111 <?php } ?>
112 </ul>
113 </div>
114 </div>
115 <div class="portlet" id="p-logo">
116 <?php
117 $logoAttribs = array() + Linker::tooltipAndAccesskeyAttribs('p-logo');
118 $logoAttribs['style'] = "background-image: url({$this->data['logopath']});";
119 $logoAttribs['href'] = $this->data['nav_urls']['mainpage']['href'];
120 echo Html::element( 'a', $logoAttribs );
121 ?>
122
123 </div>
124 <script type="<?php $this->text('jsmimetype') ?>"> if (window.isMSIE55) fixalpha(); </script>
125 <?php
126 $sidebar = $this->data['sidebar'];
127 if ( !isset( $sidebar['SEARCH'] ) ) $sidebar['SEARCH'] = true;
128 if ( !isset( $sidebar['TOOLBOX'] ) ) $sidebar['TOOLBOX'] = true;
129 if ( !isset( $sidebar['LANGUAGES'] ) ) $sidebar['LANGUAGES'] = true;
130 foreach ($sidebar as $boxName => $cont) {
131 if ( $boxName == 'SEARCH' ) {
132 $this->searchBox();
133 } elseif ( $boxName == 'TOOLBOX' ) {
134 $this->toolbox();
135 } elseif ( $boxName == 'LANGUAGES' ) {
136 $this->languageBox();
137 } else {
138 $this->customBox( $boxName, $cont );
139 }
140 }
141 ?>
142 </div><!-- end of the left (by default at least) column -->
143 <div class="visualClear"></div>
144 <div id="footer"<?php $this->html('userlangattributes') ?>>
145 <?php foreach ( $this->getFooterIcons("icononly") as $blockName => $footerIcons ) { ?>
146 <div id="f-<?php echo htmlspecialchars($blockName); ?>ico">
147 <?php foreach ( $footerIcons as $icon ) { ?>
148 <?php echo $this->skin->makeFooterIcon( $icon ); ?>
149
150 <?php }
151 ?>
152 </div>
153 <?php }
154
155 // Generate additional footer links
156 $validFooterLinks = $this->getFooterLinks("flat");
157 if ( count( $validFooterLinks ) > 0 ) {
158 ?> <ul id="f-list">
159 <?php
160 foreach( $validFooterLinks as $aLink ) { ?>
161 <li id="<?php echo $aLink ?>"><?php $this->html($aLink) ?></li>
162
163 <?php
164 }
165 ?>
166 </ul>
167 <?php }
168 ?>
169 </div>
170 </div>
171 <?php
172 $this->printTrail();
173 echo Html::closeElement( 'body' );
174 echo Html::closeElement( 'html' );
175 wfRestoreWarnings();
176 } // end of execute() method
177
178 /*************************************************************************************************/
179 function searchBox() {
180 global $wgUseTwoButtonsSearchForm;
181 ?>
182 <div id="p-search" class="portlet">
183 <h5><label for="searchInput"><?php $this->msg('search') ?></label></h5>
184 <div id="searchBody" class="pBody">
185 <form action="<?php $this->text('wgScript') ?>" id="searchform">
186 <input type='hidden' name="title" value="<?php $this->text('searchtitle') ?>"/>
187 <?php echo $this->makeSearchInput(array( "id" => "searchInput" )); ?>
188
189 <?php echo $this->makeSearchButton("go", array( "id" => "searchGoButton", "class" => "searchButton" ));
190 if ($wgUseTwoButtonsSearchForm): ?>&#160;
191 <?php echo $this->makeSearchButton("fulltext", array( "id" => "mw-searchButton", "class" => "searchButton" ));
192 else: ?>
193
194 <div><a href="<?php $this->text('searchaction') ?>" rel="search"><?php $this->msg('powersearch-legend') ?></a></div><?php
195 endif; ?>
196
197 </form>
198 </div>
199 </div>
200 <?php
201 }
202
203 /**
204 * Prints the cactions bar.
205 * Shared between MonoBook and Modern
206 */
207 function cactions( Skin $skin ) {
208 ?>
209 <div id="p-cactions" class="portlet">
210 <h5><?php $this->msg('views') ?></h5>
211 <div class="pBody">
212 <ul><?php
213 foreach($this->data['content_actions'] as $key => $tab) {
214 $linkAttribs = array( 'href' => $tab['href'] );
215
216 if( isset( $tab["tooltiponly"] ) && $tab["tooltiponly"] ) {
217 $title = Linker::titleAttrib( "ca-$key" );
218 if ( $title !== false ) {
219 $linkAttribs['title'] = $title;
220 }
221 } else {
222 $linkAttribs += Linker::tooltipAndAccesskeyAttribs( "ca-$key" );
223 }
224 $linkHtml = Html::element( 'a', $linkAttribs, $tab['text'] );
225
226 /* Surround with a <li> */
227 $liAttribs = array( 'id' => Sanitizer::escapeId( "ca-$key" ) );
228 if( $tab['class'] ) {
229 $liAttribs['class'] = $tab['class'];
230 }
231 echo '
232 ' . Html::rawElement( 'li', $liAttribs, $linkHtml );
233 } ?>
234
235 </ul>
236 </div>
237 </div>
238 <?php
239 }
240 /*************************************************************************************************/
241 function toolbox() {
242 ?>
243 <div class="portlet" id="p-tb">
244 <h5><?php $this->msg('toolbox') ?></h5>
245 <div class="pBody">
246 <ul>
247 <?php
248 foreach ( $this->getToolbox() as $key => $tbitem ) { ?>
249 <?php echo $this->makeListItem($key, $tbitem); ?>
250
251 <?php
252 }
253 wfRunHooks( 'MonoBookTemplateToolboxEnd', array( &$this ) );
254 wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this ) );
255 ?>
256 </ul>
257 </div>
258 </div>
259 <?php
260 }
261
262 /*************************************************************************************************/
263 function languageBox() {
264 if( $this->data['language_urls'] ) {
265 ?>
266 <div id="p-lang" class="portlet">
267 <h5<?php $this->html('userlangattributes') ?>><?php $this->msg('otherlanguages') ?></h5>
268 <div class="pBody">
269 <ul>
270 <?php foreach($this->data['language_urls'] as $key => $langlink) { ?>
271 <?php echo $this->makeListItem($key, $langlink); ?>
272
273 <?php } ?>
274 </ul>
275 </div>
276 </div>
277 <?php
278 }
279 }
280
281 /*************************************************************************************************/
282 function customBox( $bar, $cont ) {
283 $portletAttribs = array( 'class' => 'generated-sidebar portlet', 'id' => Sanitizer::escapeId( "p-$bar" ) );
284 $tooltip = Linker::titleAttrib( "p-$bar" );
285 if ( $tooltip !== false ) {
286 $portletAttribs['title'] = $tooltip;
287 }
288 echo ' ' . Html::openElement( 'div', $portletAttribs );
289 ?>
290
291 <h5><?php $out = wfMsg( $bar ); if (wfEmptyMsg($bar)) echo htmlspecialchars($bar); else echo htmlspecialchars($out); ?></h5>
292 <div class='pBody'>
293 <?php if ( is_array( $cont ) ) { ?>
294 <ul>
295 <?php foreach($cont as $key => $val) { ?>
296 <?php echo $this->makeListItem($key, $val); ?>
297
298 <?php } ?>
299 </ul>
300 <?php } else {
301 # allow raw HTML block to be defined by extensions
302 print $cont;
303 }
304 ?>
305 </div>
306 </div>
307 <?php
308 }
309 } // end of class
310
311