Moved constant values from initialiseFromUser() to class definition
[lhc/web/wiklou.git] / includes / templates / Userlogin.php
1 <?php
2 /**
3 * Html forms for user login and account creation
4 *
5 * @file
6 * @ingroup Templates
7 */
8
9 /**
10 * @defgroup Templates Templates
11 */
12
13 if( !defined( 'MEDIAWIKI' ) ) die( -1 );
14
15 /**
16 * HTML template for Special:Userlogin form
17 * @ingroup Templates
18 */
19 class UserloginTemplate extends QuickTemplate {
20 function execute() {
21 if( $this->data['message'] ) {
22 ?>
23 <div class="<?php $this->text('messagetype') ?>box">
24 <?php if ( $this->data['messagetype'] == 'error' ) { ?>
25 <strong><?php $this->msg( 'loginerror' )?></strong><br />
26 <?php } ?>
27 <?php $this->html('message') ?>
28 </div>
29 <div class="visualClear"></div>
30 <?php } ?>
31
32 <div id="loginstart"><?php $this->msgWiki( 'loginstart' ); ?></div>
33 <div id="userloginForm">
34 <form name="userlogin" method="post" action="<?php $this->text('action') ?>">
35 <h2><?php $this->msg('login') ?></h2>
36 <p id="userloginlink"><?php $this->html('link') ?></p>
37 <?php $this->html('header'); /* pre-table point for form plugins... */ ?>
38 <div id="userloginprompt"><?php $this->msgWiki('loginprompt') ?></div>
39 <?php if( @$this->haveData( 'languages' ) ) { ?><div id="languagelinks"><p><?php $this->html( 'languages' ); ?></p></div><?php } ?>
40 <table>
41 <tr>
42 <td class="mw-label"><label for='wpName1'><?php $this->msg('yourname') ?></label></td>
43 <td class="mw-input">
44 <?php
45 echo Html::input( 'wpName', $this->data['name'], 'text', array(
46 'class' => 'loginText',
47 'id' => 'wpName1',
48 'tabindex' => '1',
49 'size' => '20',
50 'required'
51 # Can't do + array( 'autofocus' ) because + for arrays in PHP
52 # only works right for associative arrays! Thanks, PHP.
53 ) + ( $this->data['name'] ? array() : array( 'autofocus' => '' ) ) ); ?>
54
55 </td>
56 </tr>
57 <tr>
58 <td class="mw-label"><label for='wpPassword1'><?php $this->msg('yourpassword') ?></label></td>
59 <td class="mw-input">
60 <?php
61 echo Html::input( 'wpPassword', null, 'password', array(
62 'class' => 'loginPassword',
63 'id' => 'wpPassword1',
64 'tabindex' => '2',
65 'size' => '20'
66 ) + ( $this->data['name'] ? array( 'autofocus' ) : array() ) ); ?>
67
68 </td>
69 </tr>
70 <?php if( isset( $this->data['usedomain'] ) && $this->data['usedomain'] ) {
71 $doms = "";
72 foreach( $this->data['domainnames'] as $dom ) {
73 $doms .= "<option>" . htmlspecialchars( $dom ) . "</option>";
74 }
75 ?>
76 <tr id="mw-user-domain-section">
77 <td class="mw-label"><?php $this->msg( 'yourdomainname' ) ?></td>
78 <td class="mw-input">
79 <select name="wpDomain" value="<?php $this->text( 'domain' ) ?>"
80 tabindex="3">
81 <?php echo $doms ?>
82 </select>
83 </td>
84 </tr>
85 <?php }
86
87 if( $this->haveData( 'extrafields' ) ) {
88 echo $this->data['extrafields'];
89 }
90
91 if( $this->data['canremember'] ) { ?>
92 <tr>
93 <td></td>
94 <td class="mw-input">
95 <?php
96 global $wgCookieExpiration, $wgLang;
97 echo Xml::checkLabel(
98 wfMsgExt( 'remembermypassword', 'parsemag', $wgLang->formatNum( ceil( $wgCookieExpiration / ( 3600 * 24 ) ) ) ),
99 'wpRemember',
100 'wpRemember',
101 $this->data['remember'],
102 array( 'tabindex' => '8' )
103 )
104 ?>
105 </td>
106 </tr>
107 <?php } ?>
108 <?php if( $this->data['cansecurelogin'] ) { ?>
109 <tr>
110 <td></td>
111 <td class="mw-input">
112 <?php
113 echo Xml::checkLabel(
114 wfMsg( 'securelogin-stick-https' ),
115 'wpStickHTTPS',
116 'wpStickHTTPS',
117 $this->data['stickHTTPS'],
118 array( 'tabindex' => '9' )
119 );
120 ?>
121 </td>
122 </tr>
123 <?php } ?>
124 <tr>
125 <td></td>
126 <td class="mw-submit">
127 <?php
128 echo Html::input( 'wpLoginAttempt', wfMsg( 'login' ), 'submit', array(
129 'id' => 'wpLoginAttempt',
130 'tabindex' => '9'
131 ) );
132 if ( $this->data['useemail'] && $this->data['canreset'] ) {
133 echo '&#160;';
134 echo Html::input( 'wpMailmypassword', wfMsg( 'mailmypassword' ), 'submit', array(
135 'id' => 'wpMailmypassword',
136 'tabindex' => '10'
137 ) );
138 } ?>
139
140 </td>
141 </tr>
142 </table>
143 <?php if( @$this->haveData( 'uselang' ) ) { ?><input type="hidden" name="uselang" value="<?php $this->text( 'uselang' ); ?>" /><?php } ?>
144 <?php if( @$this->haveData( 'token' ) ) { ?><input type="hidden" name="wpLoginToken" value="<?php $this->text( 'token' ); ?>" /><?php } ?>
145 </form>
146 </div>
147 <div id="loginend"><?php $this->msgWiki( 'loginend' ); ?></div>
148 <?php
149
150 }
151 }
152
153 /**
154 * @ingroup Templates
155 */
156 class UsercreateTemplate extends QuickTemplate {
157 function addInputItem( $name, $value, $type, $msg, $helptext = false ) {
158 $this->data['extraInput'][] = array(
159 'name' => $name,
160 'value' => $value,
161 'type' => $type,
162 'msg' => $msg,
163 'helptext' => $helptext,
164 );
165 }
166
167 function execute() {
168 if( $this->data['message'] ) {
169 ?>
170 <div class="<?php $this->text('messagetype') ?>box">
171 <?php if ( $this->data['messagetype'] == 'error' ) { ?>
172 <strong><?php $this->msg( 'loginerror' )?></strong><br />
173 <?php } ?>
174 <?php $this->html('message') ?>
175 </div>
176 <div class="visualClear"></div>
177 <?php } ?>
178
179 <div id="signupstart"><?php $this->msgWiki( 'signupstart' ); ?></div>
180 <div id="userlogin">
181
182 <form name="userlogin2" id="userlogin2" method="post" action="<?php $this->text('action') ?>">
183 <h2><?php $this->msg('createaccount') ?></h2>
184 <p id="userloginlink"><?php $this->html('link') ?></p>
185 <?php $this->html('header'); /* pre-table point for form plugins... */ ?>
186 <?php if( @$this->haveData( 'languages' ) ) { ?><div id="languagelinks"><p><?php $this->html( 'languages' ); ?></p></div><?php } ?>
187 <table>
188 <tr>
189 <td class="mw-label"><label for='wpName2'><?php $this->msg('yourname') ?></label></td>
190 <td class="mw-input">
191 <?php
192 echo Html::input( 'wpName', $this->data['name'], 'text', array(
193 'class' => 'loginText',
194 'id' => 'wpName2',
195 'tabindex' => '1',
196 'size' => '20',
197 'required',
198 'autofocus'
199 ) ); ?>
200 </td>
201 <td></td>
202 </tr>
203 <tr>
204 <td class="mw-label"><label for='wpPassword2'><?php $this->msg('yourpassword') ?></label></td>
205 <td class="mw-input">
206 <?php
207 echo Html::input( 'wpPassword', null, 'password', array(
208 'class' => 'loginPassword',
209 'id' => 'wpPassword2',
210 'tabindex' => '2',
211 'size' => '20'
212 ) + User::passwordChangeInputAttribs() ); ?>
213 </td>
214 <td><div id="password-strength"></div></td>
215 </tr>
216 <?php if( $this->data['usedomain'] ) {
217 $doms = "";
218 foreach( $this->data['domainnames'] as $dom ) {
219 $doms .= "<option>" . htmlspecialchars( $dom ) . "</option>";
220 }
221 ?>
222 <tr>
223 <td class="mw-label"><?php $this->msg( 'yourdomainname' ) ?></td>
224 <td class="mw-input">
225 <select name="wpDomain" value="<?php $this->text( 'domain' ) ?>"
226 tabindex="3">
227 <?php echo $doms ?>
228 </select>
229 </td>
230 <td></td>
231 </tr>
232 <?php } ?>
233 <tr>
234 <td class="mw-label"><label for='wpRetype'><?php $this->msg('yourpasswordagain') ?></label></td>
235 <td class="mw-input">
236 <?php
237 echo Html::input( 'wpRetype', null, 'password', array(
238 'class' => 'loginPassword',
239 'id' => 'wpRetype',
240 'tabindex' => '4',
241 'size' => '20'
242 ) + User::passwordChangeInputAttribs() ); ?>
243 </td>
244 <td><div id="password-retype"></div></td>
245 </tr>
246 <tr>
247 <?php if( $this->data['useemail'] ) { ?>
248 <td class="mw-label"><label for='wpEmail'><?php $this->msg('youremail') ?></label></td>
249 <td class="mw-input">
250 <?php
251 echo Html::input( 'wpEmail', $this->data['email'], 'email', array(
252 'class' => 'loginText',
253 'id' => 'wpEmail',
254 'tabindex' => '5',
255 'size' => '20'
256 ) ); ?>
257 <div class="prefsectiontip">
258 <?php if( $this->data['emailrequired'] ) {
259 $this->msgWiki('prefs-help-email-required');
260 } else {
261 $this->msgWiki('prefs-help-email');
262 } ?>
263 </div>
264 </td>
265 <td></td>
266 <?php } ?>
267 <?php if( $this->data['userealname'] ) { ?>
268 </tr>
269 <tr>
270 <td class="mw-label"><label for='wpRealName'><?php $this->msg('yourrealname') ?></label></td>
271 <td class="mw-input" colspan="2">
272 <input type='text' class='loginText' name="wpRealName" id="wpRealName"
273 tabindex="6"
274 value="<?php $this->text('realname') ?>" size='20' />
275 <div class="prefsectiontip">
276 <?php $this->msgWiki('prefs-help-realname'); ?>
277 </div>
278 </td>
279 <td></td>
280 <?php } ?>
281 <?php if( $this->data['usereason'] ) { ?>
282 </tr>
283 <tr>
284 <td class="mw-label"><label for='wpReason'><?php $this->msg('createaccountreason') ?></label></td>
285 <td class="mw-input" colspan="2">
286 <input type='text' class='loginText' name="wpReason" id="wpReason"
287 tabindex="7"
288 value="<?php $this->text('reason') ?>" size='20' />
289 </td>
290 <?php } ?>
291 </tr>
292 <?php if( $this->data['canremember'] ) { ?>
293 <tr>
294 <td></td>
295 <td class="mw-input" colspan="2">
296 <?php
297 global $wgCookieExpiration, $wgLang;
298 echo Xml::checkLabel(
299 wfMsgExt( 'remembermypassword', 'parsemag', $wgLang->formatNum( ceil( $wgCookieExpiration / ( 3600 * 24 ) ) ) ),
300 'wpRemember',
301 'wpRemember',
302 $this->data['remember'],
303 array( 'tabindex' => '8' )
304 )
305 ?>
306 </td>
307 </tr>
308 <?php }
309
310 $tabIndex = 9;
311 if ( isset( $this->data['extraInput'] ) && is_array( $this->data['extraInput'] ) ) {
312 foreach ( $this->data['extraInput'] as $inputItem ) { ?>
313 <tr>
314 <?php
315 if ( !empty( $inputItem['msg'] ) && $inputItem['type'] != 'checkbox' ) {
316 ?><td class="mw-label"><label for="<?php
317 echo htmlspecialchars( $inputItem['name'] ); ?>"><?php
318 $this->msgWiki( $inputItem['msg'] ) ?></label><?php
319 } else {
320 ?><td><?php
321 }
322 ?></td>
323 <td class="mw-input" colspan="2">
324 <input type="<?php echo htmlspecialchars( $inputItem['type'] ) ?>" name="<?php
325 echo htmlspecialchars( $inputItem['name'] ); ?>"
326 tabindex="<?php echo $tabIndex++; ?>"
327 value="<?php
328 if ( $inputItem['type'] != 'checkbox' ) {
329 echo htmlspecialchars( $inputItem['value'] );
330 } else {
331 echo '1';
332 }
333 ?>" id="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
334 <?php
335 if ( $inputItem['type'] == 'checkbox' && !empty( $inputItem['value'] ) )
336 echo 'checked="checked"';
337 ?> /> <?php
338 if ( $inputItem['type'] == 'checkbox' && !empty( $inputItem['msg'] ) ) {
339 ?>
340 <label for="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"><?php
341 $this->msgHtml( $inputItem['msg'] ) ?></label><?php
342 }
343 if( $inputItem['helptext'] !== false ) {
344 ?>
345 <div class="prefsectiontip">
346 <?php $this->msgWiki( $inputItem['helptext'] ); ?>
347 </div>
348 <?php } ?>
349 </td>
350 </tr>
351 <?php
352
353 }
354 }
355 ?>
356 <tr>
357 <td></td>
358 <td class="mw-submit" colspan="2">
359 <input type='submit' name="wpCreateaccount" id="wpCreateaccount"
360 tabindex="<?php echo $tabIndex++; ?>"
361 value="<?php $this->msg('createaccount') ?>" />
362 <?php if( $this->data['createemail'] ) { ?>
363 <input type='submit' name="wpCreateaccountMail" id="wpCreateaccountMail"
364 tabindex="<?php echo $tabIndex++; ?>"
365 value="<?php $this->msg('createaccountmail') ?>" />
366 <?php } ?>
367 </td>
368 </tr>
369 </table>
370 <?php if( @$this->haveData( 'uselang' ) ) { ?><input type="hidden" name="uselang" value="<?php $this->text( 'uselang' ); ?>" /><?php } ?>
371 <?php if( @$this->haveData( 'token' ) ) { ?><input type="hidden" name="wpCreateaccountToken" value="<?php $this->text( 'token' ); ?>" /><?php } ?>
372 </form>
373 </div>
374 <div id="signupend"><?php $this->msgWiki( 'signupend' ); ?></div>
375 <?php
376
377 }
378 }