Changeset 34021 for trunk/src/wp-admin/includes/user.php
- Timestamp:
- 09/10/2015 09:32:46 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/user.php
r34000 r34021 466 466 <?php 467 467 } 468 469 /** 470 * Optional SSL preference that can be turned on by hooking to the 'personal_options' action. 471 * 472 * @since 2.7.0 473 * 474 * @param object $user User data object 475 */ 476 function use_ssl_preference($user) { 477 ?> 478 <tr class="user-use-ssl-wrap"> 479 <th scope="row"><?php _e('Use https')?></th> 480 <td><label for="use_ssl"><input name="use_ssl" type="checkbox" id="use_ssl" value="1" <?php checked('1', $user->use_ssl); ?> /> <?php _e('Always use https when visiting the admin'); ?></label></td> 481 </tr> 482 <?php 483 } 484 485 /** 486 * 487 * @param string $text 488 * @return string 489 */ 490 function admin_created_user_email( $text ) { 491 $roles = get_editable_roles(); 492 $role = $roles[ $_REQUEST['role'] ]; 493 /* translators: 1: Site name, 2: site URL, 3: role */ 494 return sprintf( __( 'Hi, 495 You\'ve been invited to join \'%1$s\' at 496 %2$s with the role of %3$s. 497 If you do not want to join this site please ignore 498 this email. This invitation will expire in a few days. 499 500 Please click the following link to activate your user account: 501 %%s' ), get_bloginfo( 'name' ), home_url(), wp_specialchars_decode( translate_user_role( $role['name'] ) ) ); 502 }
Note: See TracChangeset
for help on using the changeset viewer.