Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: enable_edit_any_user_configuration

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
65      <tr>
66           <th scope="row"><?php _e('Use https')?></th>
67           <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>
68      </tr>
69 <?php
70 }
71
72
73 // Only allow super admins on multisite to edit every user.
74 if ( is_multisite() && ! current_user_can( 'manage_network_users' ) && $user_id != $current_user->ID && ! apply_filters( 'enable_edit_any_user_configuration', true ) )
75      wp_die( __( 'You do not have permission to edit this user.' ) );
76
77 // Execute confirmed email change. See send_confirmation_on_profile_email().
78 if ( is_multisite() && IS_PROFILE_PAGE && isset( $_GET[ 'newuseremail' ] ) && $current_user->ID ) {
79      $new_email = get_option( $current_user->ID . '_new_email' );
80      if ( $new_email[ 'hash' ] == $_GET[ 'newuseremail' ] ) {
81           $user->ID = $current_user->ID;
82           $user->user_email = esc_html( trim( $new_email[ 'newemail' ] ) );
83           if ( $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM {$wpdb->signups} WHERE user_login = %s", $current_user->user_login ) ) )