Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: signup_finished

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 3 times in this file.

Line Code
215 }
216
217 function confirm_another_blog_signup($domain, $path, $blog_title, $user_name, $user_email = '', $meta = '') {
218      ?>
219      <h2><?php printf( __( 'The site %s is yours.' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2>
220      <p>
221           <?php printf( __( '<a href="http://%1$s">http://%2$s</a> is your new site. <a href="%3$s">Log in</a> as &#8220;%4$s&#8221; using your existing password.' ), $domain.$path, $domain.$path, "http://" . $domain.$path . "wp-login.php", $user_name ) ?>
222      </p>
223      <?php
224      do_action( 'signup_finished' );
225 }
226
227 function signup_user($user_name = '', $user_email = '', $errors = '') {
228      global $current_site, $active_signup;
229
230      if ( !is_wp_error($errors) )
231           $errors = new WP_Error();
232
233      $signup_for = isset( $_POST[ 'signup_for' ] ) ? esc_html( $_POST[ 'signup_for' ] ) : 'blog';
 
Line Code
286 }
287
288 function confirm_user_signup($user_name, $user_email) {
289      ?>
290      <h2><?php printf( __( '%s is your new username' ), $user_name) ?></h2>
291      <p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p>
292      <p><?php printf( __( 'Check your inbox at <strong>%s</strong> and click the link given.' ), $user_email ); ?></p>
293      <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p>
294      <?php
295      do_action( 'signup_finished' );
296 }
297
298 function signup_blog($user_name = '', $user_email = '', $blogname = '', $blog_title = '', $errors = '') {
299      if ( !is_wp_error($errors) )
300           $errors = new WP_Error();
301
302      // allow definition of default variables
303      $filtered_results = apply_filters('signup_blog_init', array('user_name' => $user_name, 'user_email' => $user_email, 'blogname' => $blogname, 'blog_title' => $blog_title, 'errors' => $errors ));
304      $user_name = $filtered_results['user_name'];
 
Line Code
359      <p>
360           <?php _e( 'If you haven&#8217;t received your email yet, there are a number of things you can do:' ) ?>
361           <ul id="noemail-tips">
362                <li><p><strong><?php _e( 'Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control.' ) ?></strong></p></li>
363                <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li>
364                <li><?php printf( __( 'Have you entered your email correctly?  You have entered %s, if it&#8217;s incorrect, you will not receive your email.' ), $user_email ) ?></li>
365           </ul>
366      </p>
367      <?php
368      do_action( 'signup_finished' );
369 }
370
371 // Main
372 $active_signup = get_site_option( 'registration' );
373 if ( !$active_signup )
374      $active_signup = 'all';
375
376 $active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return "all", "none", "blog" or "user"
377