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
69  * The filter was introduced to replace the EDIT_ANY_USER constant.
70  *
71  * @since 3.0.0
72  *
73  * @param bool $allow Whether to allow editing of any user. Default true.
74  */
75 if ( is_multisite()
76      && ! current_user_can( 'manage_network_users' )
77      && $user_id != $current_user->ID
78      && ! apply_filters( 'enable_edit_any_user_configuration', true )
79 ) {
80      wp_die( __( 'You do not have permission to edit this user.' ) );
81 }
82
83 // Execute confirmed email change. See send_confirmation_on_profile_email().
84 if ( is_multisite() && IS_PROFILE_PAGE && isset( $_GET[ 'newuseremail' ] ) && $current_user->ID ) {
85      $new_email = get_option( $current_user->ID . '_new_email' );
86      if ( $new_email[ 'hash' ] == $_GET[ 'newuseremail' ] ) {
87           $user = new stdClass;