Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_user_login

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

This hook occurs 2 times in this file.

Line Code
93           wp_die(__('Cheatin’ uh?'));
94
95      if ( !is_multisite() ) {
96           $user_id = add_user();
97
98           if ( is_wp_error( $user_id ) ) {
99                $add_user_errors = $user_id;
100           } else {
101                if ( current_user_can('edit_users') ) {
102                     $new_user_login = apply_filters('pre_user_login', sanitize_user(stripslashes($_REQUEST['user_login']), true));
103                     $redirect = 'users.php?usersearch='. urlencode($new_user_login) . '&update=add' . '#user-' . $user_id;
104                } else {
105                     $redirect = add_query_arg( 'update', 'add', 'user-new.php' );
106                }
107                wp_redirect( $redirect );
108                die();
109           }
110      } else {
111           // Adding a new user to this blog
112           $user_details = wpmu_validate_user_signup( $_REQUEST[ 'user_login' ], $_REQUEST[ 'email' ] );
113           unset( $user_details[ 'errors' ]->errors[ 'user_email_used' ] );
114           if ( is_wp_error( $user_details[ 'errors' ] ) && !empty( $user_details[ 'errors' ]->errors ) ) {
115                $add_user_errors = $user_details[ 'errors' ];
116           } else {
117                $new_user_login = apply_filters('pre_user_login', sanitize_user(stripslashes($_REQUEST['user_login']), true));
118                if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
119                     add_filter( 'wpmu_signup_user_notification', '__return_false' ); // Disable confirmation email
120                }
121                wpmu_signup_user( $new_user_login, $_REQUEST[ 'email' ], array( 'add_to_blog' => $wpdb->blogid, 'new_role' => $_REQUEST[ 'role' ] ) );
122                if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
123                     $key = $wpdb->get_var( $wpdb->prepare( "SELECT activation_key FROM {$wpdb->signups} WHERE user_login = %s AND user_email = %s", $new_user_login, $_REQUEST[ 'email' ] ) );
124                     wpmu_activate_signup( $key );
125                     $redirect = add_query_arg( array('update' => 'addnoconfirmation'), 'user-new.php' );
126                } else {