-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-form.php
More file actions
213 lines (187 loc) · 10 KB
/
profile-form.php
File metadata and controls
213 lines (187 loc) · 10 KB
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
<?php
/*
If you would like to edit this file, copy it to your current theme's directory and edit it there.
Theme My Login will always look in your theme's directory first, before using this default template.
*/
?>
<div class="tml tml-profile" id="theme-my-login<?php $template->the_instance(); ?>">
<?php $template->the_action_template_message( 'profile' ); ?>
<?php $template->the_errors(); ?>
<form id="your-profile" action="<?php $template->the_action_url( 'profile', 'login_post' ); ?>" method="post">
<?php wp_nonce_field( 'update-user_' . $current_user->ID ); ?>
<p>
<input type="hidden" name="from" value="profile" />
<input type="hidden" name="checkuser_id" value="<?php echo $current_user->ID; ?>" />
</p>
<h3><?php _e( 'Personal Options', 'theme-my-login' ); ?></h3>
<table class="tml-form-table">
<tr class="tml-user-admin-bar-front-wrap">
<th><label for="admin_bar_front"><?php _e( 'Toolbar', 'theme-my-login' )?></label></th>
<td>
<label for="admin_bar_front"><input type="checkbox" name="admin_bar_front" id="admin_bar_front" value="1"<?php checked( _get_admin_bar_pref( 'front', $profileuser->ID ) ); ?> />
<?php _e( 'Show Toolbar when viewing site', 'theme-my-login' ); ?></label>
</td>
</tr>
<?php do_action( 'personal_options', $profileuser ); ?>
</table>
<?php do_action( 'profile_personal_options', $profileuser ); ?>
<h3><?php _e( 'Name', 'theme-my-login' ); ?></h3>
<table class="tml-form-table">
<tr class="tml-user-login-wrap">
<th><label for="user_login"><?php _e( 'Username', 'theme-my-login' ); ?></label></th>
<td><input type="text" name="user_login" id="user_login"
value="<?php echo esc_attr( $profileuser->user_login ); ?>"
style="width: 200px !important; min-width: 200px; max-width: 200px;" disabled="disabled" class="regular-text" /> <span class="description"><br><?php _e( 'Usernames cannot be changed.', 'theme-my-login' ); ?></span></td>
</tr>
<tr class="tml-first-name-wrap">
<th><label for="first_name"><?php _e( 'First Name', 'theme-my-login' ); ?></label></th>
<td><input type="text" name="first_name" id="first_name"
style="width: 200px !important; min-width: 200px; max-width: 200px;"
value="<?php echo esc_attr( $profileuser->first_name ); ?>" class="regular-text" /></td>
</tr>
<tr class="tml-last-name-wrap">
<th><label for="last_name"><?php _e( 'Last Name', 'theme-my-login' ); ?></label></th>
<td><input type="text" name="last_name" id="last_name"
style="width: 200px !important; min-width: 200px; max-width: 200px;"
value="<?php echo esc_attr( $profileuser->last_name ); ?>" class="regular-text" /></td>
</tr>
<tr class="tml-nickname-wrap">
<th><label for="nickname"><?php _e( 'Nickname', 'theme-my-login' ); ?> <span class="description"><?php _e( '(required)', 'theme-my-login' ); ?></span></label></th>
<td><input type="text" name="nickname" id="nickname"
style="width: 200px !important; min-width: 200px; max-width: 200px;"
value="<?php echo esc_attr( $profileuser->nickname ); ?>" class="regular-text" /></td>
</tr>
<tr class="tml-display-name-wrap">
<th><label for="display_name"><?php _e( 'Display name publicly as', 'theme-my-login' ); ?></label></th>
<td>
<select name="display_name" id="display_name"
style="width: 200px !important; min-width: 200px; max-width: 200px;">
<?php
$public_display = array();
$public_display['display_nickname'] = $profileuser->nickname;
$public_display['display_username'] = $profileuser->user_login;
if ( ! empty( $profileuser->first_name ) )
$public_display['display_firstname'] = $profileuser->first_name;
if ( ! empty( $profileuser->last_name ) )
$public_display['display_lastname'] = $profileuser->last_name;
if ( ! empty( $profileuser->first_name ) && ! empty( $profileuser->last_name ) ) {
$public_display['display_firstlast'] = $profileuser->first_name . ' ' . $profileuser->last_name;
$public_display['display_lastfirst'] = $profileuser->last_name . ' ' . $profileuser->first_name;
}
if ( ! in_array( $profileuser->display_name, $public_display ) )// Only add this if it isn't duplicated elsewhere
$public_display = array( 'display_displayname' => $profileuser->display_name ) + $public_display;
$public_display = array_map( 'trim', $public_display );
$public_display = array_unique( $public_display );
foreach ( $public_display as $id => $item ) {
?>
<option <?php selected( $profileuser->display_name, $item ); ?>><?php echo $item; ?></option>
<?php
}
?>
</select>
</td>
</tr>
</table>
<h3><?php _e( 'Contact Info', 'theme-my-login' ); ?></h3>
<table class="tml-form-table">
<tr class="tml-user-email-wrap">
<th><label for="email"><?php _e( 'E-mail', 'theme-my-login' ); ?> <span class="description"><?php _e( '(required)', 'theme-my-login' ); ?></span></label></th>
<td><input type="text" name="email" id="email"
style="width: 200px !important; min-width: 200px; max-width: 200px;" value="<?php echo esc_attr( $profileuser->user_email ); ?>" class="regular-text" /></td>
<?php
$new_email = get_option( $current_user->ID . '_new_email' );
if ( $new_email && $new_email['newemail'] != $current_user->user_email ) : ?>
<div class="updated inline">
<p><?php
printf(
__( 'There is a pending change of your e-mail to %1$s. <a href="%2$s">Cancel</a>', 'theme-my-login' ),
'<code>' . $new_email['newemail'] . '</code>',
esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) )
); ?></p>
</div>
<?php endif; ?>
</tr>
<tr class="tml-user-url-wrap">
<th><label for="url"><?php _e( 'Website', 'theme-my-login' ); ?></label></th>
<td><input type="text" name="url" id="url"
style="width: 200px !important; min-width: 200px; max-width: 200px;"
value="<?php echo esc_attr( $profileuser->user_url ); ?>" class="regular-text code" /></td>
</tr>
<?php
foreach ( wp_get_user_contact_methods() as $name => $desc ) {
?>
<tr class="tml-user-contact-method-<?php echo $name; ?>-wrap">
<th><label for="<?php echo $name; ?>"><?php echo apply_filters( 'user_'.$name.'_label', $desc ); ?></label></th>
<td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>"
style="width: 200px !important; min-width: 200px; max-width: 200px;"
value="<?php echo esc_attr( $profileuser->$name ); ?>" class="regular-text" /></td>
</tr>
<?php
}
?>
</table>
<h3><?php _e( 'About Yourself', 'theme-my-login' ); ?></h3>
<table class="tml-form-table">
<tr class="tml-user-description-wrap">
<th><label for="description"><?php _e( 'Biographical Info', 'theme-my-login' ); ?></label></th>
<td><textarea name="description" id="description" rows="5" cols="30"><?php echo esc_html( $profileuser->description ); ?></textarea><br />
<span class="description"><?php _e( 'Share a little biographical information to fill out your profile. This may be shown publicly.', 'theme-my-login' ); ?></span></td>
</tr>
<?php
$show_password_fields = apply_filters( 'show_password_fields', true, $profileuser );
if ( $show_password_fields ) :
?>
</table>
<h3><?php _e( 'Account Management', 'theme-my-login' ); ?></h3>
<table class="tml-form-table">
<tr id="password" class="user-pass1-wrap">
<th><label for="pass1"><?php _e( 'New Password', 'theme-my-login' ); ?></label></th>
<td>
<input class="hidden" value=" " /><!-- #24364 workaround -->
<button type="button" class="button button-secondary wp-generate-pw hide-if-no-js"><?php _e( 'Generate Password', 'theme-my-login' ); ?></button>
<div class="wp-pwd hide-if-js">
<span class="password-input-wrapper">
<input type="password" name="pass1" id="pass1" class="regular-text"
style="width: 200px !important; min-width: 200px; max-width: 200px;"
value="" autocomplete="off" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" aria-describedby="pass-strength-result" />
</span>
<div style="display:none" id="pass-strength-result" aria-live="polite"></div>
<button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password', 'theme-my-login' ); ?>">
<span class="dashicons dashicons-hidden"></span>
<span class="text"><?php _e( 'Hide', 'theme-my-login' ); ?></span>
</button>
<button type="button" class="button button-secondary wp-cancel-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Cancel password change', 'theme-my-login' ); ?>">
<span class="text"><?php _e( 'Cancel', 'theme-my-login' ); ?></span>
</button>
</div>
</td>
</tr>
<tr class="user-pass2-wrap hide-if-js">
<th scope="row"><label for="pass2"><?php _e( 'Repeat New Password', 'theme-my-login' ); ?></label></th>
<td>
<input name="pass2" type="password" id="pass2" class="regular-text"
style="width: 200px !important; min-width: 200px; max-width: 200px;"
value="" autocomplete="off" />
<p class="description"><?php _e( 'Type your new password again.', 'theme-my-login' ); ?></p>
</td>
</tr>
<tr class="pw-weak">
<th><?php _e( 'Confirm Password', 'theme-my-login' ); ?></th>
<td>
<label>
<input type="checkbox" name="pw_weak" class="pw-checkbox" />
<?php _e( 'Confirm use of weak password', 'theme-my-login' ); ?>
</label>
</td>
</tr>
<?php endif; ?>
</table>
<?php do_action( 'show_user_profile', $profileuser ); ?>
<p class="tml-submit-wrap">
<input type="hidden" name="action" value="profile" />
<input type="hidden" name="instance" value="<?php $template->the_instance(); ?>" />
<input type="hidden" name="user_id" id="user_id" value="<?php echo esc_attr( $current_user->ID ); ?>" />
<input type="submit" class="button-primary" value="<?php esc_attr_e( 'Update Profile', 'theme-my-login' ); ?>" name="submit" id="submit" />
</p>
</form>
</div>