summaryrefslogtreecommitdiff
path: root/includes/templates/Usercreate.php
blob: a39690a72c9e1c6407855efd50b0374b98ba671a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<?php
// @codingStandardsIgnoreFile
/**
 * Html form for account creation (since 1.22 with VForm appearance).
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 * http://www.gnu.org/copyleft/gpl.html
 *
 * @file
 * @ingroup Templates
 */

class UsercreateTemplate extends BaseTemplate {
	/**
	 * Extensions (AntiSpoof and TitleBlacklist) call this in response to
	 * UserCreateForm hook to add checkboxes to the create account form.
	 */
	function addInputItem( $name, $value, $type, $msg, $helptext = false ) {
		$this->data['extraInput'][] = array(
			'name' => $name,
			'value' => $value,
			'type' => $type,
			'msg' => $msg,
			'helptext' => $helptext,
		);
	}

	function execute() {
?>
<div class="mw-ui-container">
	<?php if ( $this->haveData( 'languages' ) ) { ?>
		<div id="languagelinks">
			<p><?php $this->html( 'languages' ); ?></p>
		</div>
	<?php }
	      if ( !wfMessage( 'signupstart' )->isDisabled() ) { ?>
		<div id="signupstart"><?php $this->msgWiki( 'signupstart' ); ?></div>
	<?php } ?>
	<div id="userloginForm">
		<form name="userlogin2" id="userlogin2" class="mw-ui-vform" method="post" action="<?php $this->text( 'action' ); ?>">
			<section class="mw-form-header">
				<?php $this->html( 'header' ); ?>
			</section>
			<!-- This element is used by the mediawiki.special.userlogin.signup.js module. -->
			<div
				id="mw-createacct-status-area"
				<?php if ( $this->data['message'] ) { ?>
					class="<?php echo $this->data['messagetype']; ?>box"
				<?php } else { ?>
					style="display: none;"
				<?php } ?>
			>
			<?php if ( $this->data['message'] ) { ?>
					<?php if ( $this->data['messagetype'] == 'error' ) { ?>
						<strong><?php $this->msg( 'createacct-error' ); ?></strong>
						<br />
					<?php } ?>
					<?php $this->html( 'message' ); ?>
			<?php } ?>
			</div>

			<?php if ( $this->data['formheader'] ) { ?>
				<div class="mw-form-formheader">
					<?php $this->html( 'formheader' ); /* extensions such as MobileFrontend add html here */ ?>
				</div>
			<?php } ?>

			<div class="mw-ui-vform-field">
				<label for='wpName2'>
					<?php $this->msg( 'userlogin-yourname' ); ?>

					<span class="mw-ui-flush-right"><?php echo $this->getMsg( 'createacct-helpusername' )->parse(); ?></span>
				</label>
				<?php
				echo Html::input( 'wpName', $this->data['name'], 'text', array(
					'class' => 'mw-ui-input loginText',
					'id' => 'wpName2',
					'tabindex' => '1',
					'size' => '20',
					'required',
					'placeholder' => $this->getMsg( $this->data['loggedin'] ?
						'createacct-another-username-ph' : 'userlogin-yourname-ph' )->text(),
				) );
				?>
			</div>

			<div class="mw-ui-vform-field">
				<?php if ( $this->data['createemail'] ) { ?>
					<div class="mw-ui-checkbox">
						<input name="wpCreateaccountMail" type="checkbox" value="1" id="wpCreateaccountMail" tabindex="2"
							<?php if ( $this->data['createemailset'] ) {
								echo 'checked="checked"';
							} ?>
						><label for="wpCreateaccountMail">
							<?php $this->msg( 'createaccountmail' ); ?>
						</label>
					</div>
				<?php } ?>
			</div>

			<div class="mw-ui-vform-field mw-row-password">
				<label for='wpPassword2'><?php $this->msg( 'userlogin-yourpassword' ); ?></label>
				<?php
				echo Html::input( 'wpPassword', null, 'password', array(
					'class' => 'mw-ui-input loginPassword',
					'id' => 'wpPassword2',
					'tabindex' => '3',
					'size' => '20',
					'required',
					'placeholder' => $this->getMsg( 'createacct-yourpassword-ph' )->text()
				) + User::passwordChangeInputAttribs() );
				?>
			</div>

			<?php
			if ( $this->data['usedomain'] ) {
				$select = new XmlSelect( 'wpDomain', false, $this->data['domain'] );
				$select->setAttribute( 'tabindex', 4 );
				foreach ( $this->data['domainnames'] as $dom ) {
					$select->addOption( $dom );
				}
			?>
				<div class="mw-ui-vform-field" id="mw-user-domain-section">
					<label for="wpDomain"><?php $this->msg( 'yourdomainname' ); ?></label>
					<div>
						<?php echo $select->getHTML(); ?>
					</div>
				</div>
			<?php } ?>

			<div class="mw-ui-vform-field mw-row-password">
				<label for='wpRetype'><?php $this->msg( 'createacct-yourpasswordagain' ); ?></label>
				<?php
				echo Html::input( 'wpRetype', null, 'password', array(
					'class' => 'mw-ui-input loginPassword',
					'id' => 'wpRetype',
					'tabindex' => '5',
					'size' => '20',
					'required',
					'placeholder' => $this->getMsg( 'createacct-yourpasswordagain-ph' )->text()
					) + User::passwordChangeInputAttribs() );
				?>
			</div>

			<div class="mw-ui-vform-field">
				<?php if ( $this->data['useemail'] ) { ?>
					<label for='wpEmail'>
						<?php
							$this->msg( $this->data['emailrequired'] ?
								'createacct-emailrequired' :
								'createacct-emailoptional'
							);
						?>
					</label>
					<?php
						echo Html::input( 'wpEmail', $this->data['email'], 'email', array(
							'class' => 'mw-ui-input loginText',
							'id' => 'wpEmail',
							'tabindex' => '6',
							'size' => '20',
							'required' => $this->data['emailrequired'],
							'placeholder' => $this->getMsg( $this->data['loggedin'] ?
								'createacct-another-email-ph' : 'createacct-email-ph' )->text()
						) );
					?>
				<?php } ?>
			</div>

			<?php if ( $this->data['userealname'] ) { ?>
				<div class="mw-ui-vform-field">
					<label for='wpRealName'><?php $this->msg( 'createacct-realname' ); ?></label>
					<input type='text' class='mw-ui-input loginText' name="wpRealName" id="wpRealName"
						tabindex="7"
						value="<?php $this->text( 'realname' ); ?>" size='20' />
					<div class="prefsectiontip">
						<?php $this->msgWiki( $this->data['loggedin'] ? 'createacct-another-realname-tip' : 'prefs-help-realname' ); ?>
					</div>
				</div>
			<?php } ?>

			<?php if ( $this->data['usereason'] ) { ?>
				<div class="mw-ui-vform-field">
					<label for='wpReason'><?php $this->msg( 'createacct-reason' ); ?></label>
					<?php echo Html::input( 'wpReason', $this->data['reason'], 'text', array(
						'class' => 'mw-ui-input loginText',
						'id' => 'wpReason',
						'tabindex' => '8',
						'size' => '20',
						'placeholder' => $this->getMsg( 'createacct-reason-ph' )->text()
					) ); ?>
				</div>
			<?php } ?>

			<?php
			$tabIndex = 9;
			if ( isset( $this->data['extraInput'] ) && is_array( $this->data['extraInput'] ) ) {
				foreach ( $this->data['extraInput'] as $inputItem ) { ?>
					<div class="mw-ui-vform-field">
						<?php
						// If it's a checkbox, output the whole thing (assume it has a msg).
						if ( $inputItem['type'] == 'checkbox' ) {
						?>
							<div class="mw-ui-checkbox">
								<input
									name="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
									id="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
									type="checkbox" value="1"
									tabindex="<?php echo $tabIndex++; ?>"
									<?php if ( !empty( $inputItem['value'] ) ) {
										echo 'checked="checked"';
									} ?>
								><label for="<?php echo htmlspecialchars( $inputItem['name'] ); ?>">
									<?php $this->msg( $inputItem['msg'] ); ?>
								</label>
							</div>
						<?php
						} else {
							// Not a checkbox.
							// TODO (bug 31909) support other input types, e.g. select boxes.
						?>
							<?php if ( !empty( $inputItem['msg'] ) ) { ?>
								<label for="<?php echo htmlspecialchars( $inputItem['name'] ); ?>">
									<?php $this->msgWiki( $inputItem['msg'] ); ?>
								</label>
							<?php } ?>
							<input
								type="<?php echo htmlspecialchars( $inputItem['type'] ); ?>"
								class="mw-ui-input"
								name="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
								tabindex="<?php echo $tabIndex++; ?>"
								value="<?php echo htmlspecialchars( $inputItem['value'] ); ?>"
								id="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
							/>
						<?php } ?>
						<?php if ( $inputItem['helptext'] !== false ) { ?>
							<div class="prefsectiontip">
								<?php $this->msgWiki( $inputItem['helptext'] ); ?>
							</div>
						<?php } ?>
					</div>
				<?php
				}
			}

			// A separate placeholder for any inserting any extrafields, e.g used by ConfirmEdit extension
			if ( $this->haveData( 'extrafields' ) ) {
				echo $this->data['extrafields'];
			}
			// skip one index.
			$tabIndex++;
			?>
			<div class="mw-ui-vform-field mw-submit">
				<?php
				echo Html::submitButton(
					$this->getMsg( $this->data['loggedin'] ? 'createacct-another-submit' : 'createacct-submit' ),
					array(
						'id' => 'wpCreateaccount',
						'name' => 'wpCreateaccount',
						'tabindex' => $tabIndex++
					),
					array(
						'mw-ui-block',
						'mw-ui-constructive',
					)
				);
				?>
			</div>
			<?php if ( $this->haveData( 'uselang' ) ) { ?><input type="hidden" name="uselang" value="<?php $this->text( 'uselang' ); ?>" /><?php } ?>
			<?php if ( $this->haveData( 'token' ) ) { ?><input type="hidden" name="wpCreateaccountToken" value="<?php $this->text( 'token' ); ?>" /><?php } ?>
		</form>
		<?php if ( !wfMessage( 'signupend' )->isDisabled() ) { ?>
			<div id="signupend"><?php $this->html( 'signupend' ); ?></div>
		<?php } ?>
	</div>
	<div class="mw-createacct-benefits-container">
		<h2><?php $this->msg( 'createacct-benefit-heading' ); ?></h2>
		<div class="mw-createacct-benefits-list">
			<?php
			for ( $benefitIdx = 1; $benefitIdx <= $this->data['benefitCount']; $benefitIdx++ ) {
				// Pass each benefit's head text (by default a number) as a parameter to the body's message for PLURAL handling.
				$headUnescaped = $this->getMsg( "createacct-benefit-head$benefitIdx" )->text();
			?>
				<div class="mw-number-text <?php $this->msg( "createacct-benefit-icon$benefitIdx" ); ?>">
					<h3><?php $this->msg( "createacct-benefit-head$benefitIdx" ); ?></h3>
					<p><?php echo $this->getMsg( "createacct-benefit-body$benefitIdx" )->params( $headUnescaped )->escaped(); ?></p>
				</div>
			<?php } ?>
		</div>
	</div>
</div>
<?php

	}
}