Syntax fix.
[lhc/web/wiklou.git] / includes / specials / SpecialPreferences.php
1 <?php
2 /**
3 * Hold things related to displaying and saving user preferences.
4 * @file
5 * @ingroup SpecialPage
6 */
7
8 /**
9 * Entry point that create the "Preferences" object
10 */
11 function wfSpecialPreferences() {
12 global $wgRequest;
13
14 $form = new PreferencesForm( $wgRequest );
15 $form->execute();
16 }
17
18 /**
19 * Preferences form handling
20 * This object will show the preferences form and can save it as well.
21 * @ingroup SpecialPage
22 */
23 class PreferencesForm {
24 var $mQuickbar, $mOldpass, $mNewpass, $mRetypePass, $mStubs;
25 var $mRows, $mCols, $mSkin, $mMath, $mDate, $mUserEmail, $mEmailFlag, $mNick;
26 var $mUserLanguage, $mUserVariant;
27 var $mSearch, $mRecent, $mRecentDays, $mHourDiff, $mSearchLines, $mSearchChars, $mAction;
28 var $mReset, $mPosted, $mToggles, $mUseAjaxSearch, $mSearchNs, $mRealName, $mImageSize;
29 var $mUnderline, $mWatchlistEdits;
30
31 /**
32 * Constructor
33 * Load some values
34 */
35 function PreferencesForm( &$request ) {
36 global $wgContLang, $wgUser, $wgAllowRealName;
37
38 $this->mQuickbar = $request->getVal( 'wpQuickbar' );
39 $this->mOldpass = $request->getVal( 'wpOldpass' );
40 $this->mNewpass = $request->getVal( 'wpNewpass' );
41 $this->mRetypePass =$request->getVal( 'wpRetypePass' );
42 $this->mStubs = $request->getVal( 'wpStubs' );
43 $this->mRows = $request->getVal( 'wpRows' );
44 $this->mCols = $request->getVal( 'wpCols' );
45 $this->mSkin = $request->getVal( 'wpSkin' );
46 $this->mMath = $request->getVal( 'wpMath' );
47 $this->mDate = $request->getVal( 'wpDate' );
48 $this->mUserEmail = $request->getVal( 'wpUserEmail' );
49 $this->mRealName = $wgAllowRealName ? $request->getVal( 'wpRealName' ) : '';
50 $this->mEmailFlag = $request->getCheck( 'wpEmailFlag' ) ? 0 : 1;
51 $this->mNick = $request->getVal( 'wpNick' );
52 $this->mUserLanguage = $request->getVal( 'wpUserLanguage' );
53 $this->mUserVariant = $request->getVal( 'wpUserVariant' );
54 $this->mSearch = $request->getVal( 'wpSearch' );
55 $this->mRecent = $request->getVal( 'wpRecent' );
56 $this->mRecentDays = $request->getVal( 'wpRecentDays' );
57 $this->mHourDiff = $request->getVal( 'wpHourDiff' );
58 $this->mSearchLines = $request->getVal( 'wpSearchLines' );
59 $this->mSearchChars = $request->getVal( 'wpSearchChars' );
60 $this->mImageSize = $request->getVal( 'wpImageSize' );
61 $this->mThumbSize = $request->getInt( 'wpThumbSize' );
62 $this->mUnderline = $request->getInt( 'wpOpunderline' );
63 $this->mAction = $request->getVal( 'action' );
64 $this->mReset = $request->getCheck( 'wpReset' );
65 $this->mPosted = $request->wasPosted();
66 $this->mSuccess = $request->getCheck( 'success' );
67 $this->mWatchlistDays = $request->getVal( 'wpWatchlistDays' );
68 $this->mWatchlistEdits = $request->getVal( 'wpWatchlistEdits' );
69 $this->mUseAjaxSearch = $request->getCheck( 'wpUseAjaxSearch' );
70 $this->mDisableMWSuggest = $request->getCheck( 'wpDisableMWSuggest' );
71
72 $this->mSaveprefs = $request->getCheck( 'wpSaveprefs' ) &&
73 $this->mPosted &&
74 $wgUser->matchEditToken( $request->getVal( 'wpEditToken' ) );
75
76 # User toggles (the big ugly unsorted list of checkboxes)
77 $this->mToggles = array();
78 if ( $this->mPosted ) {
79 $togs = User::getToggles();
80 foreach ( $togs as $tname ) {
81 $this->mToggles[$tname] = $request->getCheck( "wpOp$tname" ) ? 1 : 0;
82 }
83 }
84
85 $this->mUsedToggles = array();
86
87 # Search namespace options
88 # Note: namespaces don't necessarily have consecutive keys
89 $this->mSearchNs = array();
90 if ( $this->mPosted ) {
91 $namespaces = $wgContLang->getNamespaces();
92 foreach ( $namespaces as $i => $namespace ) {
93 if ( $i >= 0 ) {
94 $this->mSearchNs[$i] = $request->getCheck( "wpNs$i" ) ? 1 : 0;
95 }
96 }
97 }
98
99 # Validate language
100 if ( !preg_match( '/^[a-z\-]*$/', $this->mUserLanguage ) ) {
101 $this->mUserLanguage = 'nolanguage';
102 }
103
104 wfRunHooks( 'InitPreferencesForm', array( $this, $request ) );
105 }
106
107 function execute() {
108 global $wgUser, $wgOut;
109
110 if ( $wgUser->isAnon() ) {
111 $wgOut->showErrorPage( 'prefsnologin', 'prefsnologintext' );
112 return;
113 }
114 if ( wfReadOnly() ) {
115 $wgOut->readOnlyPage();
116 return;
117 }
118 if ( $this->mReset ) {
119 $this->resetPrefs();
120 $this->mainPrefsForm( 'reset', wfMsg( 'prefsreset' ) );
121 } else if ( $this->mSaveprefs ) {
122 $this->savePreferences();
123 } else {
124 $this->resetPrefs();
125 $this->mainPrefsForm( '' );
126 }
127 }
128 /**
129 * @access private
130 */
131 function validateInt( &$val, $min=0, $max=0x7fffffff ) {
132 $val = intval($val);
133 $val = min($val, $max);
134 $val = max($val, $min);
135 return $val;
136 }
137
138 /**
139 * @access private
140 */
141 function validateFloat( &$val, $min, $max=0x7fffffff ) {
142 $val = floatval( $val );
143 $val = min( $val, $max );
144 $val = max( $val, $min );
145 return( $val );
146 }
147
148 /**
149 * @access private
150 */
151 function validateIntOrNull( &$val, $min=0, $max=0x7fffffff ) {
152 $val = trim($val);
153 if($val === '') {
154 return null;
155 } else {
156 return $this->validateInt( $val, $min, $max );
157 }
158 }
159
160 /**
161 * @access private
162 */
163 function validateDate( $val ) {
164 global $wgLang, $wgContLang;
165 if ( $val !== false && (
166 in_array( $val, (array)$wgLang->getDatePreferences() ) ||
167 in_array( $val, (array)$wgContLang->getDatePreferences() ) ) )
168 {
169 return $val;
170 } else {
171 return $wgLang->getDefaultDateFormat();
172 }
173 }
174
175 /**
176 * Used to validate the user inputed timezone before saving it as
177 * 'timecorrection', will return '00:00' if fed bogus data.
178 * Note: It's not a 100% correct implementation timezone-wise, it will
179 * accept stuff like '14:30',
180 * @access private
181 * @param string $s the user input
182 * @return string
183 */
184 function validateTimeZone( $s ) {
185 if ( $s !== '' ) {
186 if ( strpos( $s, ':' ) ) {
187 # HH:MM
188 $array = explode( ':' , $s );
189 $hour = intval( $array[0] );
190 $minute = intval( $array[1] );
191 } else {
192 $minute = intval( $s * 60 );
193 $hour = intval( $minute / 60 );
194 $minute = abs( $minute ) % 60;
195 }
196 # Max is +14:00 and min is -12:00, see:
197 # http://en.wikipedia.org/wiki/Timezone
198 $hour = min( $hour, 14 );
199 $hour = max( $hour, -12 );
200 $minute = min( $minute, 59 );
201 $minute = max( $minute, 0 );
202 $s = sprintf( "%02d:%02d", $hour, $minute );
203 }
204 return $s;
205 }
206
207 /**
208 * @access private
209 */
210 function savePreferences() {
211 global $wgUser, $wgOut, $wgParser;
212 global $wgEnableUserEmail, $wgEnableEmail;
213 global $wgEmailAuthentication, $wgRCMaxAge;
214 global $wgAuth, $wgEmailConfirmToEdit;
215
216
217 if ( '' != $this->mNewpass && $wgAuth->allowPasswordChange() ) {
218 if ( $this->mNewpass != $this->mRetypePass ) {
219 wfRunHooks( 'PrefsPasswordAudit', array( $wgUser, $this->mNewpass, 'badretype' ) );
220 $this->mainPrefsForm( 'error', wfMsg( 'badretype' ) );
221 return;
222 }
223
224 if (!$wgUser->checkPassword( $this->mOldpass )) {
225 wfRunHooks( 'PrefsPasswordAudit', array( $wgUser, $this->mNewpass, 'wrongpassword' ) );
226 $this->mainPrefsForm( 'error', wfMsg( 'wrongpassword' ) );
227 return;
228 }
229
230 try {
231 $wgUser->setPassword( $this->mNewpass );
232 wfRunHooks( 'PrefsPasswordAudit', array( $wgUser, $this->mNewpass, 'success' ) );
233 $this->mNewpass = $this->mOldpass = $this->mRetypePass = '';
234 } catch( PasswordError $e ) {
235 wfRunHooks( 'PrefsPasswordAudit', array( $wgUser, $this->mNewpass, 'error' ) );
236 $this->mainPrefsForm( 'error', $e->getMessage() );
237 return;
238 }
239 }
240 $wgUser->setRealName( $this->mRealName );
241 $oldOptions = $wgUser->mOptions;
242
243 if( $wgUser->getOption( 'language' ) !== $this->mUserLanguage ) {
244 $needRedirect = true;
245 } else {
246 $needRedirect = false;
247 }
248
249 # Validate the signature and clean it up as needed
250 global $wgMaxSigChars;
251 if( mb_strlen( $this->mNick ) > $wgMaxSigChars ) {
252 global $wgLang;
253 $this->mainPrefsForm( 'error',
254 wfMsgExt( 'badsiglength', 'parsemag', $wgLang->formatNum( $wgMaxSigChars ) ) );
255 return;
256 } elseif( $this->mToggles['fancysig'] ) {
257 if( $wgParser->validateSig( $this->mNick ) !== false ) {
258 $this->mNick = $wgParser->cleanSig( $this->mNick );
259 } else {
260 $this->mainPrefsForm( 'error', wfMsg( 'badsig' ) );
261 return;
262 }
263 } else {
264 // When no fancy sig used, make sure ~{3,5} get removed.
265 $this->mNick = $wgParser->cleanSigInSig( $this->mNick );
266 }
267
268 $wgUser->setOption( 'language', $this->mUserLanguage );
269 $wgUser->setOption( 'variant', $this->mUserVariant );
270 $wgUser->setOption( 'nickname', $this->mNick );
271 $wgUser->setOption( 'quickbar', $this->mQuickbar );
272 $wgUser->setOption( 'skin', $this->mSkin );
273 global $wgUseTeX;
274 if( $wgUseTeX ) {
275 $wgUser->setOption( 'math', $this->mMath );
276 }
277 $wgUser->setOption( 'date', $this->validateDate( $this->mDate ) );
278 $wgUser->setOption( 'searchlimit', $this->validateIntOrNull( $this->mSearch ) );
279 $wgUser->setOption( 'contextlines', $this->validateIntOrNull( $this->mSearchLines ) );
280 $wgUser->setOption( 'contextchars', $this->validateIntOrNull( $this->mSearchChars ) );
281 $wgUser->setOption( 'rclimit', $this->validateIntOrNull( $this->mRecent ) );
282 $wgUser->setOption( 'rcdays', $this->validateInt($this->mRecentDays, 1, ceil($wgRCMaxAge / (3600*24))));
283 $wgUser->setOption( 'wllimit', $this->validateIntOrNull( $this->mWatchlistEdits, 0, 1000 ) );
284 $wgUser->setOption( 'rows', $this->validateInt( $this->mRows, 4, 1000 ) );
285 $wgUser->setOption( 'cols', $this->validateInt( $this->mCols, 4, 1000 ) );
286 $wgUser->setOption( 'stubthreshold', $this->validateIntOrNull( $this->mStubs ) );
287 $wgUser->setOption( 'timecorrection', $this->validateTimeZone( $this->mHourDiff, -12, 14 ) );
288 $wgUser->setOption( 'imagesize', $this->mImageSize );
289 $wgUser->setOption( 'thumbsize', $this->mThumbSize );
290 $wgUser->setOption( 'underline', $this->validateInt($this->mUnderline, 0, 2) );
291 $wgUser->setOption( 'watchlistdays', $this->validateFloat( $this->mWatchlistDays, 0, 7 ) );
292 $wgUser->setOption( 'ajaxsearch', $this->mUseAjaxSearch );
293 $wgUser->setOption( 'disablesuggest', $this->mDisableMWSuggest );
294
295 # Set search namespace options
296 foreach( $this->mSearchNs as $i => $value ) {
297 $wgUser->setOption( "searchNs{$i}", $value );
298 }
299
300 if( $wgEnableEmail && $wgEnableUserEmail ) {
301 $wgUser->setOption( 'disablemail', $this->mEmailFlag );
302 }
303
304 # Set user toggles
305 foreach ( $this->mToggles as $tname => $tvalue ) {
306 $wgUser->setOption( $tname, $tvalue );
307 }
308
309 $error = false;
310 if( $wgEnableEmail ) {
311 $newadr = $this->mUserEmail;
312 $oldadr = $wgUser->getEmail();
313 if( ($newadr != '') && ($newadr != $oldadr) ) {
314 # the user has supplied a new email address on the login page
315 if( $wgUser->isValidEmailAddr( $newadr ) ) {
316 # new behaviour: set this new emailaddr from login-page into user database record
317 $wgUser->setEmail( $newadr );
318 # but flag as "dirty" = unauthenticated
319 $wgUser->invalidateEmail();
320 if ($wgEmailAuthentication) {
321 # Mail a temporary password to the dirty address.
322 # User can come back through the confirmation URL to re-enable email.
323 $result = $wgUser->sendConfirmationMail();
324 if( WikiError::isError( $result ) ) {
325 $error = wfMsg( 'mailerror', htmlspecialchars( $result->getMessage() ) );
326 } else {
327 $error = wfMsg( 'eauthentsent', $wgUser->getName() );
328 }
329 }
330 } else {
331 $error = wfMsg( 'invalidemailaddress' );
332 }
333 } else {
334 if( $wgEmailConfirmToEdit && empty( $newadr ) ) {
335 $this->mainPrefsForm( 'error', wfMsg( 'noemailtitle' ) );
336 return;
337 }
338 $wgUser->setEmail( $this->mUserEmail );
339 }
340 if( $oldadr != $newadr ) {
341 wfRunHooks( 'PrefsEmailAudit', array( $wgUser, $oldadr, $newadr ) );
342 }
343 }
344
345 if( !$wgAuth->updateExternalDB( $wgUser ) ){
346 $this->mainPrefsForm( 'error', wfMsg( 'externaldberror' ) );
347 return;
348 }
349
350 $msg = '';
351 if ( !wfRunHooks( 'SavePreferences', array( $this, $wgUser, &$msg, $oldOptions ) ) ) {
352 $this->mainPrefsForm( 'error', $msg );
353 return;
354 }
355
356 $wgUser->setCookies();
357 $wgUser->saveSettings();
358
359 if( $needRedirect && $error === false ) {
360 $title = SpecialPage::getTitleFor( 'Preferences' );
361 $wgOut->redirect( $title->getFullURL( 'success' ) );
362 return;
363 }
364
365 $wgOut->parserOptions( ParserOptions::newFromUser( $wgUser ) );
366 $this->mainPrefsForm( $error === false ? 'success' : 'error', $error);
367 }
368
369 /**
370 * @access private
371 */
372 function resetPrefs() {
373 global $wgUser, $wgLang, $wgContLang, $wgContLanguageCode, $wgAllowRealName;
374
375 $this->mOldpass = $this->mNewpass = $this->mRetypePass = '';
376 $this->mUserEmail = $wgUser->getEmail();
377 $this->mUserEmailAuthenticationtimestamp = $wgUser->getEmailAuthenticationtimestamp();
378 $this->mRealName = ($wgAllowRealName) ? $wgUser->getRealName() : '';
379
380 # language value might be blank, default to content language
381 $this->mUserLanguage = $wgUser->getOption( 'language', $wgContLanguageCode );
382
383 $this->mUserVariant = $wgUser->getOption( 'variant');
384 $this->mEmailFlag = $wgUser->getOption( 'disablemail' ) == 1 ? 1 : 0;
385 $this->mNick = $wgUser->getOption( 'nickname' );
386
387 $this->mQuickbar = $wgUser->getOption( 'quickbar' );
388 $this->mSkin = Skin::normalizeKey( $wgUser->getOption( 'skin' ) );
389 $this->mMath = $wgUser->getOption( 'math' );
390 $this->mDate = $wgUser->getDatePreference();
391 $this->mRows = $wgUser->getOption( 'rows' );
392 $this->mCols = $wgUser->getOption( 'cols' );
393 $this->mStubs = $wgUser->getOption( 'stubthreshold' );
394 $this->mHourDiff = $wgUser->getOption( 'timecorrection' );
395 $this->mSearch = $wgUser->getOption( 'searchlimit' );
396 $this->mSearchLines = $wgUser->getOption( 'contextlines' );
397 $this->mSearchChars = $wgUser->getOption( 'contextchars' );
398 $this->mImageSize = $wgUser->getOption( 'imagesize' );
399 $this->mThumbSize = $wgUser->getOption( 'thumbsize' );
400 $this->mRecent = $wgUser->getOption( 'rclimit' );
401 $this->mRecentDays = $wgUser->getOption( 'rcdays' );
402 $this->mWatchlistEdits = $wgUser->getOption( 'wllimit' );
403 $this->mUnderline = $wgUser->getOption( 'underline' );
404 $this->mWatchlistDays = $wgUser->getOption( 'watchlistdays' );
405 $this->mUseAjaxSearch = $wgUser->getBoolOption( 'ajaxsearch' );
406 $this->mDisableMWSuggest = $wgUser->getBoolOption( 'disablesuggest' );
407
408 $togs = User::getToggles();
409 foreach ( $togs as $tname ) {
410 $this->mToggles[$tname] = $wgUser->getOption( $tname );
411 }
412
413 $namespaces = $wgContLang->getNamespaces();
414 foreach ( $namespaces as $i => $namespace ) {
415 if ( $i >= NS_MAIN ) {
416 $this->mSearchNs[$i] = $wgUser->getOption( 'searchNs'.$i );
417 }
418 }
419
420 wfRunHooks( 'ResetPreferences', array( $this, $wgUser ) );
421 }
422
423 /**
424 * @access private
425 */
426 function namespacesCheckboxes() {
427 global $wgContLang;
428
429 # Determine namespace checkboxes
430 $namespaces = $wgContLang->getNamespaces();
431 $r1 = null;
432
433 foreach ( $namespaces as $i => $name ) {
434 if ($i < 0)
435 continue;
436 $checked = $this->mSearchNs[$i] ? "checked='checked'" : '';
437 $name = str_replace( '_', ' ', $namespaces[$i] );
438
439 if ( empty($name) )
440 $name = wfMsg( 'blanknamespace' );
441
442 $r1 .= "<input type='checkbox' value='1' name='wpNs$i' id='wpNs$i' {$checked}/> <label for='wpNs$i'>{$name}</label><br />\n";
443 }
444 return $r1;
445 }
446
447
448 function getToggle( $tname, $trailer = false, $disabled = false ) {
449 global $wgUser, $wgLang;
450
451 $this->mUsedToggles[$tname] = true;
452 $ttext = $wgLang->getUserToggle( $tname );
453
454 $checked = $wgUser->getOption( $tname ) == 1 ? ' checked="checked"' : '';
455 $disabled = $disabled ? ' disabled="disabled"' : '';
456 $trailer = $trailer ? $trailer : '';
457 return "<div class='toggle'><input type='checkbox' value='1' id=\"$tname\" name=\"wpOp$tname\"$checked$disabled />" .
458 " <span class='toggletext'><label for=\"$tname\">$ttext</label>$trailer</span></div>\n";
459 }
460
461 function getToggles( $items ) {
462 $out = "";
463 foreach( $items as $item ) {
464 if( $item === false )
465 continue;
466 if( is_array( $item ) ) {
467 list( $key, $trailer ) = $item;
468 } else {
469 $key = $item;
470 $trailer = false;
471 }
472 $out .= $this->getToggle( $key, $trailer );
473 }
474 return $out;
475 }
476
477 function addRow($td1, $td2) {
478 return "<tr><td class='mw-label'>$td1</td><td class='mw-input'>$td2</td></tr>";
479 }
480
481 /**
482 * Helper function for user information panel
483 * @param $td1 label for an item
484 * @param $td2 item or null
485 * @param $td3 optional help or null
486 * @return xhtml block
487 */
488 function tableRow( $td1, $td2 = null, $td3 = null ) {
489
490 if ( is_null( $td3 ) ) {
491 $td3 = '';
492 } else {
493 $td3 = Xml::tags( 'tr', null,
494 Xml::tags( 'td', array( 'class' => 'pref-label', 'colspan' => '2' ), $td3 )
495 );
496 }
497
498 if ( is_null( $td2 ) ) {
499 $td1 = Xml::tags( 'td', array( 'class' => 'pref-label', 'colspan' => '2' ), $td1 );
500 $td2 = '';
501 } else {
502 $td1 = Xml::tags( 'td', array( 'class' => 'pref-label' ), $td1 );
503 $td2 = Xml::tags( 'td', array( 'class' => 'pref-input' ), $td2 );
504 }
505
506 return Xml::tags( 'tr', null, $td1 . $td2 ). $td3 . "\n";
507
508 }
509
510 /**
511 * @access private
512 */
513 function mainPrefsForm( $status , $message = '' ) {
514 global $wgUser, $wgOut, $wgLang, $wgContLang;
515 global $wgAllowRealName, $wgImageLimits, $wgThumbLimits;
516 global $wgDisableLangConversion;
517 global $wgEnotifWatchlist, $wgEnotifUserTalk,$wgEnotifMinorEdits;
518 global $wgRCShowWatchingUsers, $wgEnotifRevealEditorAddress;
519 global $wgEnableEmail, $wgEnableUserEmail, $wgEmailAuthentication;
520 global $wgContLanguageCode, $wgDefaultSkin, $wgSkipSkins, $wgAuth;
521 global $wgEmailConfirmToEdit, $wgAjaxSearch, $wgEnableMWSuggest;
522
523 $wgOut->setPageTitle( wfMsg( 'preferences' ) );
524 $wgOut->setArticleRelated( false );
525 $wgOut->setRobotPolicy( 'noindex,nofollow' );
526 $wgOut->addScriptFile( 'prefs.js' );
527
528 $wgOut->disallowUserJs(); # Prevent hijacked user scripts from sniffing passwords etc.
529
530 if ( $this->mSuccess || 'success' == $status ) {
531 $wgOut->wrapWikiMsg( '<div class="successbox"><strong>$1</strong></div>', 'savedprefs' );
532 } else if ( 'error' == $status ) {
533 $wgOut->addWikiText( '<div class="errorbox"><strong>' . $message . '</strong></div>' );
534 } else if ( '' != $status ) {
535 $wgOut->addWikiText( $message . "\n----" );
536 }
537
538 $qbs = $wgLang->getQuickbarSettings();
539 $skinNames = $wgLang->getSkinNames();
540 $mathopts = $wgLang->getMathNames();
541 $dateopts = $wgLang->getDatePreferences();
542 $togs = User::getToggles();
543
544 $titleObj = SpecialPage::getTitleFor( 'Preferences' );
545
546 # Pre-expire some toggles so they won't show if disabled
547 $this->mUsedToggles[ 'shownumberswatching' ] = true;
548 $this->mUsedToggles[ 'showupdated' ] = true;
549 $this->mUsedToggles[ 'enotifwatchlistpages' ] = true;
550 $this->mUsedToggles[ 'enotifusertalkpages' ] = true;
551 $this->mUsedToggles[ 'enotifminoredits' ] = true;
552 $this->mUsedToggles[ 'enotifrevealaddr' ] = true;
553 $this->mUsedToggles[ 'ccmeonemails' ] = true;
554 $this->mUsedToggles[ 'uselivepreview' ] = true;
555
556
557 if ( !$this->mEmailFlag ) { $emfc = 'checked="checked"'; }
558 else { $emfc = ''; }
559
560
561 if ($wgEmailAuthentication && ($this->mUserEmail != '') ) {
562 if( $wgUser->getEmailAuthenticationTimestamp() ) {
563 $emailauthenticated = wfMsg('emailauthenticated',$wgLang->timeanddate($wgUser->getEmailAuthenticationTimestamp(), true ) ).'<br />';
564 $disableEmailPrefs = false;
565 } else {
566 $disableEmailPrefs = true;
567 $skin = $wgUser->getSkin();
568 $emailauthenticated = wfMsg('emailnotauthenticated').'<br />' .
569 $skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Confirmemail' ),
570 wfMsg( 'emailconfirmlink' ) ) . '<br />';
571 }
572 } else {
573 $emailauthenticated = '';
574 $disableEmailPrefs = false;
575 }
576
577 if ($this->mUserEmail == '') {
578 $emailauthenticated = wfMsg( 'noemailprefs' ) . '<br />';
579 }
580
581 $ps = $this->namespacesCheckboxes();
582
583 $enotifwatchlistpages = ($wgEnotifWatchlist) ? $this->getToggle( 'enotifwatchlistpages', false, $disableEmailPrefs ) : '';
584 $enotifusertalkpages = ($wgEnotifUserTalk) ? $this->getToggle( 'enotifusertalkpages', false, $disableEmailPrefs ) : '';
585 $enotifminoredits = ($wgEnotifWatchlist && $wgEnotifMinorEdits) ? $this->getToggle( 'enotifminoredits', false, $disableEmailPrefs ) : '';
586 $enotifrevealaddr = (($wgEnotifWatchlist || $wgEnotifUserTalk) && $wgEnotifRevealEditorAddress) ? $this->getToggle( 'enotifrevealaddr', false, $disableEmailPrefs ) : '';
587
588 # </FIXME>
589
590 $wgOut->addHTML(
591 Xml::openElement( 'form', array(
592 'action' => $titleObj->getLocalUrl(),
593 'method' => 'post',
594 'id' => 'mw-preferences-form',
595 ) ) .
596 Xml::openElement( 'div', array( 'id' => 'preferences' ) )
597 );
598
599 # User data
600
601 $wgOut->addHTML(
602 Xml::fieldset( wfMsg('prefs-personal') ) .
603 Xml::openElement( 'table' ) .
604 $this->tableRow( Xml::element( 'h2', null, wfMsg( 'prefs-personal' ) ) )
605 );
606
607 # Get groups to which the user belongs
608 $userEffectiveGroups = $wgUser->getEffectiveGroups();
609 $userEffectiveGroupsArray = array();
610 foreach( $userEffectiveGroups as $ueg ) {
611 if( $ueg == '*' ) {
612 // Skip the default * group, seems useless here
613 continue;
614 }
615 $userEffectiveGroupsArray[] = User::makeGroupLinkHTML( $ueg );
616 }
617 asort( $userEffectiveGroupsArray );
618
619 $sk = $wgUser->getSkin();
620 $toolLinks = array();
621 $toolLinks[] = $sk->makeKnownLinkObj( SpecialPage::getTitleFor( 'ListGroupRights' ), wfMsg( 'listgrouprights' ) );
622 # At the moment one tool link only but be prepared for the future...
623 # FIXME: Add a link to Special:Userrights for users who are allowed to use it.
624 # $wgUser->isAllowed( 'userrights' ) seems to strict in some cases
625
626 $userInformationHtml =
627 $this->tableRow( wfMsgHtml( 'username' ), htmlspecialchars( $wgUser->getName() ) ) .
628 $this->tableRow( wfMsgHtml( 'uid' ), htmlspecialchars( $wgUser->getId() ) ) .
629
630 $this->tableRow(
631 wfMsgExt( 'prefs-memberingroups', array( 'parseinline' ), count( $userEffectiveGroupsArray ) ),
632 implode( wfMsg( 'comma-separator' ), $userEffectiveGroupsArray ) .
633 '<br />(' . implode( ' | ', $toolLinks ) . ')'
634 ) .
635
636 $this->tableRow(
637 wfMsgHtml( 'prefs-edits' ),
638 $wgLang->formatNum( $wgUser->getEditCount() )
639 );
640
641 if( wfRunHooks( 'PreferencesUserInformationPanel', array( $this, &$userInformationHtml ) ) ) {
642 $wgOut->addHtml( $userInformationHtml );
643 }
644
645 if ( $wgAllowRealName ) {
646 $wgOut->addHTML(
647 $this->tableRow(
648 Xml::label( wfMsg('yourrealname'), 'wpRealName' ),
649 Xml::input( 'wpRealName', 25, $this->mRealName, array( 'id' => 'wpRealName' ) ),
650 Xml::tags('div', array( 'class' => 'prefsectiontip' ),
651 wfMsgExt( 'prefs-help-realname', 'parseinline' )
652 )
653 )
654 );
655 }
656 if ( $wgEnableEmail ) {
657 $wgOut->addHTML(
658 $this->tableRow(
659 Xml::label( wfMsg('youremail'), 'wpUserEmail' ),
660 Xml::input( 'wpUserEmail', 25, $this->mUserEmail, array( 'id' => 'wpUserEmail' ) ),
661 Xml::tags('div', array( 'class' => 'prefsectiontip' ),
662 wfMsgExt( $wgEmailConfirmToEdit ? 'prefs-help-email-required' : 'prefs-help-email', 'parseinline' )
663 )
664 )
665 );
666 }
667
668 global $wgParser, $wgMaxSigChars;
669 if( mb_strlen( $this->mNick ) > $wgMaxSigChars ) {
670 $invalidSig = $this->tableRow(
671 '&nbsp;',
672 Xml::element( 'span', array( 'class' => 'error' ),
673 wfMsgExt( 'badsiglength', 'parsemag', $wgLang->formatNum( $wgMaxSigChars ) ) )
674 );
675 } elseif( !empty( $this->mToggles['fancysig'] ) &&
676 false === $wgParser->validateSig( $this->mNick ) ) {
677 $invalidSig = $this->tableRow(
678 '&nbsp;',
679 Xml::element( 'span', array( 'class' => 'error' ), wfMsg( 'badsig' ) )
680 );
681 } else {
682 $invalidSig = '';
683 }
684
685 $wgOut->addHTML(
686 $this->tableRow(
687 Xml::label( wfMsg( 'yournick' ), 'wpNick' ),
688 Xml::input( 'wpNick', 25, $this->mNick,
689 array(
690 'id' => 'wpNick',
691 // Note: $wgMaxSigChars is enforced in Unicode characters,
692 // both on the backend and now in the browser.
693 // Badly-behaved requests may still try to submit
694 // an overlong string, however.
695 'maxlength' => $wgMaxSigChars ) )
696 ) .
697 $invalidSig .
698 $this->tableRow( '&nbsp;', $this->getToggle( 'fancysig' ) )
699 );
700
701 list( $lsLabel, $lsSelect) = Xml::languageSelector( $this->mUserLanguage );
702 $wgOut->addHTML(
703 $this->tableRow( $lsLabel, $lsSelect )
704 );
705
706 /* see if there are multiple language variants to choose from*/
707 if(!$wgDisableLangConversion) {
708 $variants = $wgContLang->getVariants();
709 $variantArray = array();
710
711 $languages = Language::getLanguageNames( true );
712 foreach($variants as $v) {
713 $v = str_replace( '_', '-', strtolower($v));
714 if( array_key_exists( $v, $languages ) ) {
715 // If it doesn't have a name, we'll pretend it doesn't exist
716 $variantArray[$v] = $languages[$v];
717 }
718 }
719
720 $options = "\n";
721 foreach( $variantArray as $code => $name ) {
722 $selected = ($code == $this->mUserVariant);
723 $options .= Xml::option( "$code - $name", $code, $selected ) . "\n";
724 }
725
726 if(count($variantArray) > 1) {
727 $wgOut->addHtml(
728 $this->tableRow(
729 Xml::label( wfMsg( 'yourvariant' ), 'wpUserVariant' ),
730 Xml::tags( 'select',
731 array( 'name' => 'wpUserVariant', 'id' => 'wpUserVariant' ),
732 $options
733 )
734 )
735 );
736 }
737 }
738
739 # Password
740 if( $wgAuth->allowPasswordChange() ) {
741 $wgOut->addHTML(
742 $this->tableRow( Xml::element( 'h2', null, wfMsg( 'changepassword' ) ) ) .
743 $this->tableRow(
744 Xml::label( wfMsg( 'oldpassword' ), 'wpOldpass' ),
745 Xml::password( 'wpOldpass', 25, $this->mOldpass, array( 'id' => 'wpOldpass' ) )
746 ) .
747 $this->tableRow(
748 Xml::label( wfMsg( 'newpassword' ), 'wpNewpass' ),
749 Xml::password( 'wpNewpass', 25, $this->mNewpass, array( 'id' => 'wpNewpass' ) )
750 ) .
751 $this->tableRow(
752 Xml::label( wfMsg( 'retypenew' ), 'wpRetypePass' ),
753 Xml::password( 'wpRetypePass', 25, $this->mRetypePass, array( 'id' => 'wpRetypePass' ) )
754 ) .
755 Xml::tags( 'tr', null,
756 Xml::tags( 'td', array( 'colspan' => '2' ),
757 $this->getToggle( "rememberpassword" )
758 )
759 )
760 );
761 }
762
763 # <FIXME>
764 # Enotif
765 if ( $wgEnableEmail ) {
766
767 $moreEmail = '';
768 if ($wgEnableUserEmail) {
769 // fixme -- the "allowemail" pseudotoggle is a hacked-together
770 // inversion for the "disableemail" preference.
771 $emf = wfMsg( 'allowemail' );
772 $disabled = $disableEmailPrefs ? ' disabled="disabled"' : '';
773 $moreEmail =
774 "<input type='checkbox' $emfc $disabled value='1' name='wpEmailFlag' id='wpEmailFlag' /> <label for='wpEmailFlag'>$emf</label>" .
775 $this->getToggle( 'ccmeonemails', '', $disableEmailPrefs );
776 }
777
778
779 $wgOut->addHTML(
780 $this->tableRow( Xml::element( 'h2', null, wfMsg( 'email' ) ) ) .
781 $this->tableRow(
782 $emailauthenticated.
783 $enotifrevealaddr.
784 $enotifwatchlistpages.
785 $enotifusertalkpages.
786 $enotifminoredits.
787 $moreEmail
788 )
789 );
790 }
791 # </FIXME>
792
793 $wgOut->addHTML(
794 Xml::closeElement( 'table' ) .
795 Xml::closeElement( 'fieldset' )
796 );
797
798
799 # Quickbar
800 #
801 if ($this->mSkin == 'cologneblue' || $this->mSkin == 'standard') {
802 $wgOut->addHtml( "<fieldset>\n<legend>" . wfMsg( 'qbsettings' ) . "</legend>\n" );
803 for ( $i = 0; $i < count( $qbs ); ++$i ) {
804 if ( $i == $this->mQuickbar ) { $checked = ' checked="checked"'; }
805 else { $checked = ""; }
806 $wgOut->addHTML( "<div><label><input type='radio' name='wpQuickbar' value=\"$i\"$checked />{$qbs[$i]}</label></div>\n" );
807 }
808 $wgOut->addHtml( "</fieldset>\n\n" );
809 } else {
810 # Need to output a hidden option even if the relevant skin is not in use,
811 # otherwise the preference will get reset to 0 on submit
812 $wgOut->addHtml( wfHidden( 'wpQuickbar', $this->mQuickbar ) );
813 }
814
815 # Skin
816 #
817 $wgOut->addHTML( "<fieldset>\n<legend>\n" . wfMsg('skin') . "</legend>\n" );
818 $mptitle = Title::newMainPage();
819 $previewtext = wfMsg('skinpreview');
820 # Only show members of Skin::getSkinNames() rather than
821 # $skinNames (skins is all skin names from Language.php)
822 $validSkinNames = Skin::getSkinNames();
823 # Sort by UI skin name. First though need to update validSkinNames as sometimes
824 # the skinkey & UI skinname differ (e.g. "standard" skinkey is "Classic" in the UI).
825 foreach ($validSkinNames as $skinkey => & $skinname ) {
826 if ( isset( $skinNames[$skinkey] ) ) {
827 $skinname = $skinNames[$skinkey];
828 }
829 }
830 asort($validSkinNames);
831 foreach ($validSkinNames as $skinkey => $sn ) {
832 if ( in_array( $skinkey, $wgSkipSkins ) ) {
833 continue;
834 }
835 $checked = $skinkey == $this->mSkin ? ' checked="checked"' : '';
836
837 $mplink = htmlspecialchars($mptitle->getLocalURL("useskin=$skinkey"));
838 $previewlink = "<a target='_blank' href=\"$mplink\">$previewtext</a>";
839 if( $skinkey == $wgDefaultSkin )
840 $sn .= ' (' . wfMsg( 'default' ) . ')';
841 $wgOut->addHTML( "<input type='radio' name='wpSkin' id=\"wpSkin$skinkey\" value=\"$skinkey\"$checked /> <label for=\"wpSkin$skinkey\">{$sn}</label> $previewlink<br />\n" );
842 }
843 $wgOut->addHTML( "</fieldset>\n\n" );
844
845 # Math
846 #
847 global $wgUseTeX;
848 if( $wgUseTeX ) {
849 $wgOut->addHTML( "<fieldset>\n<legend>" . wfMsg('math') . '</legend>' );
850 foreach ( $mathopts as $k => $v ) {
851 $checked = ($k == $this->mMath);
852 $wgOut->addHTML(
853 Xml::openElement( 'div' ) .
854 Xml::radioLabel( wfMsg( $v ), 'wpMath', $k, "mw-sp-math-$k", $checked ) .
855 Xml::closeElement( 'div' ) . "\n"
856 );
857 }
858 $wgOut->addHTML( "</fieldset>\n\n" );
859 }
860
861 # Files
862 #
863 $wgOut->addHTML(
864 "<fieldset>\n" . Xml::element( 'legend', null, wfMsg( 'files' ) ) . "\n"
865 );
866
867 $imageLimitOptions = null;
868 foreach ( $wgImageLimits as $index => $limits ) {
869 $selected = ($index == $this->mImageSize);
870 $imageLimitOptions .= Xml::option( "{$limits[0]}×{$limits[1]}" .
871 wfMsg('unit-pixel'), $index, $selected );
872 }
873
874 $imageSizeId = 'wpImageSize';
875 $wgOut->addHTML(
876 "<div>" . Xml::label( wfMsg('imagemaxsize'), $imageSizeId ) . " " .
877 Xml::openElement( 'select', array( 'name' => $imageSizeId, 'id' => $imageSizeId ) ) .
878 $imageLimitOptions .
879 Xml::closeElement( 'select' ) . "</div>\n"
880 );
881
882 $imageThumbOptions = null;
883 foreach ( $wgThumbLimits as $index => $size ) {
884 $selected = ($index == $this->mThumbSize);
885 $imageThumbOptions .= Xml::option($size . wfMsg('unit-pixel'), $index,
886 $selected);
887 }
888
889 $thumbSizeId = 'wpThumbSize';
890 $wgOut->addHTML(
891 "<div>" . Xml::label( wfMsg('thumbsize'), $thumbSizeId ) . " " .
892 Xml::openElement( 'select', array( 'name' => $thumbSizeId, 'id' => $thumbSizeId ) ) .
893 $imageThumbOptions .
894 Xml::closeElement( 'select' ) . "</div>\n"
895 );
896
897 $wgOut->addHTML( "</fieldset>\n\n" );
898
899 # Date format
900 #
901 # Date/Time
902 #
903
904 $wgOut->addHTML(
905 Xml::openElement( 'fieldset' ) .
906 Xml::element( 'legend', null, wfMsg( 'datetime' ) ) . "\n"
907 );
908
909 if ($dateopts) {
910 $wgOut->addHTML(
911 Xml::openElement( 'fieldset' ) .
912 Xml::element( 'legend', null, wfMsg( 'dateformat' ) ) . "\n"
913 );
914 $idCnt = 0;
915 $epoch = '20010115161234'; # Wikipedia day
916 foreach( $dateopts as $key ) {
917 if( $key == 'default' ) {
918 $formatted = wfMsg( 'datedefault' );
919 } else {
920 $formatted = $wgLang->timeanddate( $epoch, false, $key );
921 }
922 $wgOut->addHTML(
923 Xml::tags( 'div', null,
924 Xml::radioLabel( $formatted, 'wpDate', $key, "wpDate$idCnt", $key == $this->mDate )
925 ) . "\n"
926 );
927 $idCnt++;
928 }
929 $wgOut->addHTML( Xml::closeElement( 'fieldset' ) . "\n" );
930 }
931
932 $nowlocal = $wgLang->time( $now = wfTimestampNow(), true );
933 $nowserver = $wgLang->time( $now, false );
934
935 $wgOut->addHTML(
936 Xml::openElement( 'fieldset' ) .
937 Xml::element( 'legend', null, wfMsg( 'timezonelegend' ) ) .
938 Xml::openElement( 'table' ) .
939 $this->addRow( wfMsg( 'servertime' ), $nowserver ) .
940 $this->addRow( wfMsg( 'localtime' ), $nowlocal ) .
941 $this->addRow(
942 Xml::label( wfMsg( 'timezoneoffset' ), 'wpHourDiff' ),
943 Xml::input( 'wpHourDiff', 6, $this->mHourDiff, array( 'id' => 'wpHourDiff' ) ) ) .
944 "<tr>
945 <td></td>
946 <td class='mw-submit'>" .
947 Xml::element( 'input',
948 array( 'type' => 'button',
949 'value' => wfMsg( 'guesstimezone' ),
950 'onclick' => 'javascript:guessTimezone()',
951 'id' => 'guesstimezonebutton',
952 'style' => 'display:none;' ) ) .
953 "</td>
954 </tr>" .
955 Xml::closeElement( 'table' ) .
956 Xml::tags( 'div', array( 'class' => 'prefsectiontip' ), wfMsgExt( 'timezonetext', 'parseinline' ) ).
957 Xml::closeElement( 'fieldset' ) .
958 Xml::closeElement( 'fieldset' ) . "\n\n"
959 );
960
961 # Editing
962 #
963 global $wgLivePreview;
964 $wgOut->addHTML( '<fieldset><legend>' . wfMsg( 'textboxsize' ) . '</legend>
965 <div>' .
966 wfInputLabel( wfMsg( 'rows' ), 'wpRows', 'wpRows', 3, $this->mRows ) .
967 ' ' .
968 wfInputLabel( wfMsg( 'columns' ), 'wpCols', 'wpCols', 3, $this->mCols ) .
969 "</div>" .
970 $this->getToggles( array(
971 'editsection',
972 'editsectiononrightclick',
973 'editondblclick',
974 'editwidth',
975 'showtoolbar',
976 'previewonfirst',
977 'previewontop',
978 'minordefault',
979 'externaleditor',
980 'externaldiff',
981 $wgLivePreview ? 'uselivepreview' : false,
982 'forceeditsummary',
983 ) ) . '</fieldset>'
984 );
985
986 # Recent changes
987 $wgOut->addHtml( '<fieldset><legend>' . wfMsgHtml( 'prefs-rc' ) . '</legend>' );
988
989 $rc = '<table><tr>';
990 $rc .= '<td>' . Xml::label( wfMsg( 'recentchangesdays' ), 'wpRecentDays' ) . '</td>';
991 $rc .= '<td>' . Xml::input( 'wpRecentDays', 3, $this->mRecentDays, array( 'id' => 'wpRecentDays' ) ) . '</td>';
992 $rc .= '</tr><tr>';
993 $rc .= '<td>' . Xml::label( wfMsg( 'recentchangescount' ), 'wpRecent' ) . '</td>';
994 $rc .= '<td>' . Xml::input( 'wpRecent', 3, $this->mRecent, array( 'id' => 'wpRecent' ) ) . '</td>';
995 $rc .= '</tr></table>';
996 $wgOut->addHtml( $rc );
997
998 $wgOut->addHtml( '<br />' );
999
1000 $toggles[] = 'hideminor';
1001 if( $wgRCShowWatchingUsers )
1002 $toggles[] = 'shownumberswatching';
1003 $toggles[] = 'usenewrc';
1004 $wgOut->addHtml( $this->getToggles( $toggles ) );
1005
1006 $wgOut->addHtml( '</fieldset>' );
1007
1008 # Watchlist
1009 $wgOut->addHtml( '<fieldset><legend>' . wfMsgHtml( 'prefs-watchlist' ) . '</legend>' );
1010
1011 $wgOut->addHtml( wfInputLabel( wfMsg( 'prefs-watchlist-days' ), 'wpWatchlistDays', 'wpWatchlistDays', 3, $this->mWatchlistDays ) );
1012 $wgOut->addHtml( '<br /><br />' );
1013
1014 $wgOut->addHtml( $this->getToggle( 'extendwatchlist' ) );
1015 $wgOut->addHtml( wfInputLabel( wfMsg( 'prefs-watchlist-edits' ), 'wpWatchlistEdits', 'wpWatchlistEdits', 3, $this->mWatchlistEdits ) );
1016 $wgOut->addHtml( '<br /><br />' );
1017
1018 $wgOut->addHtml( $this->getToggles( array( 'watchlisthideown', 'watchlisthidebots', 'watchlisthideminor' ) ) );
1019
1020 if( $wgUser->isAllowed( 'createpage' ) || $wgUser->isAllowed( 'createtalk' ) )
1021 $wgOut->addHtml( $this->getToggle( 'watchcreations' ) );
1022 foreach( array( 'edit' => 'watchdefault', 'move' => 'watchmoves', 'delete' => 'watchdeletion' ) as $action => $toggle ) {
1023 if( $wgUser->isAllowed( $action ) )
1024 $wgOut->addHtml( $this->getToggle( $toggle ) );
1025 }
1026 $this->mUsedToggles['watchcreations'] = true;
1027 $this->mUsedToggles['watchdefault'] = true;
1028 $this->mUsedToggles['watchmoves'] = true;
1029 $this->mUsedToggles['watchdeletion'] = true;
1030
1031 $wgOut->addHtml( '</fieldset>' );
1032
1033 # Search
1034 $ajaxsearch = $wgAjaxSearch ?
1035 $this->addRow(
1036 Xml::label( wfMsg( 'useajaxsearch' ), 'wpUseAjaxSearch' ),
1037 Xml::check( 'wpUseAjaxSearch', $this->mUseAjaxSearch, array( 'id' => 'wpUseAjaxSearch' ) )
1038 ) : '';
1039 $mwsuggest = $wgEnableMWSuggest ?
1040 $this->addRow(
1041 Xml::label( wfMsg( 'mwsuggest-disable' ), 'wpDisableMWSuggest' ),
1042 Xml::check( 'wpDisableMWSuggest', $this->mDisableMWSuggest, array( 'id' => 'wpDisableMWSuggest' ) )
1043 ) : '';
1044 $wgOut->addHTML(
1045 // Elements for the search tab itself
1046 Xml::openElement( 'fieldset' ) .
1047 Xml::element( 'legend', null, wfMsg( 'searchresultshead' ) ) .
1048 // Elements for the search options in the search tab
1049 Xml::openElement( 'fieldset' ) .
1050 Xml::element( 'legend', null, wfMsg( 'prefs-searchoptions' ) ) .
1051 Xml::openElement( 'table' ) .
1052 $ajaxsearch .
1053 $this->addRow(
1054 Xml::label( wfMsg( 'resultsperpage' ), 'wpSearch' ),
1055 Xml::input( 'wpSearch', 4, $this->mSearch, array( 'id' => 'wpSearch' ) )
1056 ) .
1057 $this->addRow(
1058 Xml::label( wfMsg( 'contextlines' ), 'wpSearchLines' ),
1059 Xml::input( 'wpSearchLines', 4, $this->mSearchLines, array( 'id' => 'wpSearchLines' ) )
1060 ) .
1061 $this->addRow(
1062 Xml::label( wfMsg( 'contextchars' ), 'wpSearchChars' ),
1063 Xml::input( 'wpSearchChars', 4, $this->mSearchChars, array( 'id' => 'wpSearchChars' ) )
1064 ) .
1065 $mwsuggest .
1066 Xml::closeElement( 'table' ) .
1067 Xml::closeElement( 'fieldset' ) .
1068 // Elements for the namespace options in the search tab
1069 Xml::openElement( 'fieldset' ) .
1070 Xml::element( 'legend', null, wfMsg( 'prefs-namespaces' ) ) .
1071 wfMsgExt( 'defaultns', array( 'parse' ) ) .
1072 $ps .
1073 Xml::closeElement( 'fieldset' ) .
1074 // End of the search tab
1075 Xml::closeElement( 'fieldset' )
1076 );
1077
1078 # Misc
1079 #
1080 $wgOut->addHTML('<fieldset><legend>' . wfMsg('prefs-misc') . '</legend>');
1081 $wgOut->addHtml( '<label for="wpStubs">' . wfMsg( 'stub-threshold' ) . '</label>&nbsp;' );
1082 $wgOut->addHtml( Xml::input( 'wpStubs', 6, $this->mStubs, array( 'id' => 'wpStubs' ) ) );
1083 $msgUnderline = htmlspecialchars( wfMsg ( 'tog-underline' ) );
1084 $msgUnderlinenever = htmlspecialchars( wfMsg ( 'underline-never' ) );
1085 $msgUnderlinealways = htmlspecialchars( wfMsg ( 'underline-always' ) );
1086 $msgUnderlinedefault = htmlspecialchars( wfMsg ( 'underline-default' ) );
1087 $uopt = $wgUser->getOption("underline");
1088 $s0 = $uopt == 0 ? ' selected="selected"' : '';
1089 $s1 = $uopt == 1 ? ' selected="selected"' : '';
1090 $s2 = $uopt == 2 ? ' selected="selected"' : '';
1091 $wgOut->addHTML("
1092 <div class='toggle'><p><label for='wpOpunderline'>$msgUnderline</label>
1093 <select name='wpOpunderline' id='wpOpunderline'>
1094 <option value=\"0\"$s0>$msgUnderlinenever</option>
1095 <option value=\"1\"$s1>$msgUnderlinealways</option>
1096 <option value=\"2\"$s2>$msgUnderlinedefault</option>
1097 </select></p></div>");
1098
1099 foreach ( $togs as $tname ) {
1100 if( !array_key_exists( $tname, $this->mUsedToggles ) ) {
1101 $wgOut->addHTML( $this->getToggle( $tname ) );
1102 }
1103 }
1104 $wgOut->addHTML( '</fieldset>' );
1105
1106 wfRunHooks( 'RenderPreferencesForm', array( $this, $wgOut ) );
1107
1108 $token = htmlspecialchars( $wgUser->editToken() );
1109 $skin = $wgUser->getSkin();
1110 $wgOut->addHTML( "
1111 <div id='prefsubmit'>
1112 <div>
1113 <input type='submit' name='wpSaveprefs' class='btnSavePrefs' value=\"" . wfMsgHtml( 'saveprefs' ) . '"'.$skin->tooltipAndAccesskey('save')." />
1114 <input type='submit' name='wpReset' value=\"" . wfMsgHtml( 'resetprefs' ) . "\" />
1115 </div>
1116
1117 </div>
1118
1119 <input type='hidden' name='wpEditToken' value=\"{$token}\" />
1120 </div></form>\n" );
1121
1122 $wgOut->addHtml( Xml::tags( 'div', array( 'class' => "prefcache" ),
1123 wfMsgExt( 'clearyourcache', 'parseinline' ) )
1124 );
1125 }
1126 }