MediaWiki  REL1_22
Usercreate.php
Go to the documentation of this file.
00001 <?php
00024 class UsercreateTemplate extends BaseTemplate {
00025 
00030     function addInputItem( $name, $value, $type, $msg, $helptext = false ) {
00031         $this->data['extraInput'][] = array(
00032             'name' => $name,
00033             'value' => $value,
00034             'type' => $type,
00035             'msg' => $msg,
00036             'helptext' => $helptext,
00037         );
00038     }
00039 
00040     function execute() {
00041         global $wgCookieExpiration;
00042         $expirationDays = ceil( $wgCookieExpiration / ( 3600 * 24 ) );
00043 ?>
00044 <div class="mw-ui-container">
00045     <?php if ( $this->haveData( 'languages' ) ) { ?>
00046         <div id="languagelinks">
00047             <p><?php $this->html( 'languages' ); ?></p>
00048         </div>
00049     <?php }
00050           if ( !wfMessage( 'signupstart' )->isDisabled() ) { ?>
00051         <div id="signupstart"><?php $this->msgWiki( 'signupstart' ); ?></div>
00052     <?php } ?>
00053     <div id="userloginForm">
00054         <h2 class="createaccount-join">
00055             <?php $this->msg( $this->data['loggedin'] ? 'createacct-another-join' : 'createacct-join' ); ?>
00056         </h2>
00057         <form name="userlogin2" id="userlogin2" class="mw-ui-vform" method="post" action="<?php $this->text( 'action' ); ?>">
00058             <section class="mw-form-header">
00059                 <?php $this->html( 'header' ); /* extensions such as ConfirmEdit add form HTML here */ ?>
00060             </section>
00061             <?php if ( $this->data['message'] ) { ?>
00062                 <div class="<?php $this->text( 'messagetype' ); ?>box">
00063                     <?php if ( $this->data['messagetype'] == 'error' ) { ?>
00064                         <strong><?php $this->msg( 'createacct-error' ); ?></strong>
00065                         <br />
00066                     <?php } ?>
00067                     <?php $this->html( 'message' ); ?>
00068                 </div>
00069             <?php } ?>
00070 
00071             <div>
00072                 <label for='wpName2'>
00073                     <?php $this->msg( 'userlogin-yourname' ); ?>
00074 
00075                     <span class="mw-ui-flush-right"><?php echo $this->getMsg( 'createacct-helpusername' )->parse(); ?></span>
00076                 </label>
00077                 <?php
00078                 echo Html::input( 'wpName', $this->data['name'], 'text', array(
00079                     'class' => 'mw-input loginText',
00080                     'id' => 'wpName2',
00081                     'tabindex' => '1',
00082                     'size' => '20',
00083                     'required',
00084                     'placeholder' => $this->getMsg( $this->data['loggedin'] ?
00085                         'createacct-another-username-ph' : 'userlogin-yourname-ph' )->text(),
00086                 ) );
00087                 ?>
00088             </div>
00089 
00090             <div>
00091                 <?php if ( $this->data['createemail'] ) { ?>
00092                     <label class="mw-ui-checkbox-label">
00093                         <input name="wpCreateaccountMail" type="checkbox" value="1" id="wpCreateaccountMail" tabindex="2"
00094                             <?php if ( $this->data['createemailset'] ) {
00095                                 echo 'checked="checked"';
00096                             } ?>
00097                         >
00098                         <?php $this->msg( 'createaccountmail' ); ?>
00099                     </label>
00100                 <?php } ?>
00101             </div>
00102 
00103             <div class="mw-row-password">
00104                 <label for='wpPassword2'><?php $this->msg( 'userlogin-yourpassword' ); ?></label>
00105                 <?php
00106                 echo Html::input( 'wpPassword', null, 'password', array(
00107                     'class' => 'mw-input loginPassword',
00108                     'id' => 'wpPassword2',
00109                     'tabindex' => '3',
00110                     'size' => '20',
00111                     'required',
00112                     'placeholder' => $this->getMsg( 'createacct-yourpassword-ph' )->text()
00113                 ) + User::passwordChangeInputAttribs() );
00114                 ?>
00115             </div>
00116 
00117             <?php
00118             if ( $this->data['usedomain'] ) {
00119                 $doms = "";
00120                 foreach ( $this->data['domainnames'] as $dom ) {
00121                     $doms .= "<option>" . htmlspecialchars( $dom ) . "</option>";
00122                 }
00123             ?>
00124                 <div id="mw-user-domain-section">
00125                     <label for="wpDomain"><?php $this->msg( 'yourdomainname' ); ?></label>
00126                     <div class="mw-input">
00127                         <select name="wpDomain" value="<?php $this->text( 'domain' ); ?>" tabindex="4">
00128                             <?php echo $doms ?>
00129                         </select>
00130                     </div>
00131                 </div>
00132             <?php } ?>
00133 
00134             <div class="mw-row-password">
00135                 <label for='wpRetype'><?php $this->msg( 'createacct-yourpasswordagain' ); ?></label>
00136                 <?php
00137                 echo Html::input( 'wpRetype', null, 'password', array(
00138                     'class' => 'mw-input loginPassword',
00139                     'id' => 'wpRetype',
00140                     'tabindex' => '5',
00141                     'size' => '20',
00142                     'required',
00143                     'placeholder' => $this->getMsg( 'createacct-yourpasswordagain-ph' )->text()
00144                     ) + User::passwordChangeInputAttribs() );
00145                 ?>
00146             </div>
00147 
00148             <div>
00149                 <?php if ( $this->data['useemail'] ) { ?>
00150                     <label for='wpEmail'>
00151                         <?php
00152                             $this->msg( $this->data['emailrequired'] ?
00153                                 'createacct-emailrequired' :
00154                                 'createacct-emailoptional'
00155                             );
00156                         ?>
00157                     </label>
00158                     <?php
00159                         echo Html::input( 'wpEmail', $this->data['email'], 'email', array(
00160                             'class' => 'mw-input loginText',
00161                             'id' => 'wpEmail',
00162                             'tabindex' => '6',
00163                             'size' => '20',
00164                             'required' => $this->data['emailrequired'],
00165                             'placeholder' => $this->getMsg( $this->data['loggedin'] ?
00166                                 'createacct-another-email-ph' : 'createacct-email-ph' )->text()
00167                         ) );
00168                     ?>
00169                 <?php } ?>
00170             </div>
00171 
00172             <?php if ( $this->data['userealname'] ) { ?>
00173                 <div>
00174                     <label for='wpRealName'><?php $this->msg( 'createacct-realname' ); ?></label>
00175                     <input type='text' class='mw-input loginText' name="wpRealName" id="wpRealName"
00176                         tabindex="7"
00177                         value="<?php $this->text( 'realname' ); ?>" size='20' />
00178                     <div class="prefsectiontip">
00179                         <?php $this->msgWiki( $this->data['loggedin'] ? 'createacct-another-realname-tip' : 'prefs-help-realname' ); ?>
00180                     </div>
00181                 </div>
00182             <?php } ?>
00183 
00184             <?php if ( $this->data['usereason'] ) { ?>
00185                 <div>
00186                     <label for='wpReason'><?php $this->msg( 'createacct-reason' ); ?></label>
00187                     <?php echo Html::input( 'wpReason', $this->data['reason'], 'text', array(
00188                         'class' => 'mw-input loginText',
00189                         'id' => 'wpReason',
00190                         'tabindex' => '8',
00191                         'size' => '20',
00192                         'placeholder' => $this->getMsg( 'createacct-reason-ph' )->text()
00193                     ) ); ?>
00194                 </div>
00195             <?php } ?>
00196 
00197             <?php
00198             $tabIndex = 9;
00199             if ( isset( $this->data['extraInput'] ) && is_array( $this->data['extraInput'] ) ) {
00200                 foreach ( $this->data['extraInput'] as $inputItem ) { ?>
00201                     <div>
00202                         <?php
00203                         // If it's a checkbox, output the whole thing (assume it has a msg).
00204                         if ( $inputItem['type'] == 'checkbox' ) {
00205                         ?>
00206                             <label class="mw-ui-checkbox-label">
00207                                 <input
00208                                     name="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
00209                                     id="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
00210                                     type="checkbox" value="1"
00211                                     tabindex="<?php echo $tabIndex++; ?>"
00212                                     <?php if ( !empty( $inputItem['value'] ) ) {
00213                                         echo 'checked="checked"';
00214                                     } ?>
00215                                 >
00216                                 <?php $this->msg( $inputItem['msg'] ); ?>
00217                             </label>
00218                         <?php
00219                         } else {
00220                             // Not a checkbox.
00221                             // TODO (bug 31909) support other input types, e.g. select boxes.
00222                         ?>
00223                             <?php if ( !empty( $inputItem['msg'] ) ) { ?>
00224                                 <label for="<?php echo htmlspecialchars( $inputItem['name'] ); ?>">
00225                                     <?php $this->msgWiki( $inputItem['msg'] ); ?>
00226                                 </label>
00227                             <?php } ?>
00228                             <input
00229                                 type="<?php echo htmlspecialchars( $inputItem['type'] ); ?>"
00230                                 class="mw-input"
00231                                 name="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
00232                                 tabindex="<?php echo $tabIndex++; ?>"
00233                                 value="<?php echo htmlspecialchars( $inputItem['value'] ); ?>"
00234                                 id="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
00235                             />
00236                         <?php } ?>
00237                         <?php if ( $inputItem['helptext'] !== false ) { ?>
00238                             <div class="prefsectiontip">
00239                                 <?php $this->msgWiki( $inputItem['helptext'] ); ?>
00240                             </div>
00241                         <?php } ?>
00242                     </div>
00243                 <?php
00244                 }
00245             }
00246 
00247             // JS attempts to move the image CAPTCHA below this part of the form,
00248             // so skip one index.
00249             $tabIndex++;
00250             ?>
00251             <div class="mw-submit">
00252                 <?php
00253                 echo Html::input(
00254                     'wpCreateaccount',
00255                     $this->getMsg( $this->data['loggedin'] ? 'createacct-another-submit' : 'createacct-submit' ),
00256                     'submit',
00257                     array(
00258                         'class' => "mw-ui-button mw-ui-big mw-ui-block mw-ui-primary",
00259                         'id' => 'wpCreateaccount',
00260                         'tabindex' => $tabIndex++
00261                     )
00262                 );
00263                 ?>
00264             </div>
00265             <?php if ( $this->haveData( 'uselang' ) ) { ?><input type="hidden" name="uselang" value="<?php $this->text( 'uselang' ); ?>" /><?php } ?>
00266             <?php if ( $this->haveData( 'token' ) ) { ?><input type="hidden" name="wpCreateaccountToken" value="<?php $this->text( 'token' ); ?>" /><?php } ?>
00267         </form>
00268         <?php if ( !wfMessage( 'signupend' )->isDisabled() ) { ?>
00269             <div id="signupend"><?php $this->html( 'signupend' ); ?></div>
00270         <?php } ?>
00271     </div>
00272     <div class="mw-createacct-benefits-container">
00273         <h2><?php $this->msg( 'createacct-benefit-heading' ); ?></h2>
00274         <div class="mw-createacct-benefits-list">
00275             <?php
00276             for ( $benefitIdx = 1; $benefitIdx <= $this->data['benefitCount']; $benefitIdx++ ) {
00277                 // Pass each benefit's head text (by default a number) as a parameter to the body's message for PLURAL handling.
00278                 $headUnescaped = $this->getMsg( "createacct-benefit-head$benefitIdx" )->text();
00279             ?>
00280                 <div class="mw-number-text <?php $this->msg( "createacct-benefit-icon$benefitIdx" ); ?>">
00281                     <h3><?php $this->msg( "createacct-benefit-head$benefitIdx" ); ?></h3>
00282                     <p><?php echo $this->getMsg( "createacct-benefit-body$benefitIdx" )->params( $headUnescaped )->escaped(); ?></p>
00283                 </div>
00284             <?php } ?>
00285         </div>
00286     </div>
00287 </div>
00288 <?php
00289 
00290     }
00291 }