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
220 }
221
222 function confirm_another_blog_signup($domain, $path, $blog_title, $user_name, $user_email = '', $meta = '') {
223      ?>
224      <h2><?php printf( __( 'The site %s is yours.' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2>
225      <p>
226           <?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 ) ?>
227      </p>
228      <?php
229      do_action( 'signup_finished' );
230 }
231
232 function signup_user($user_name = '', $user_email = '', $errors = '') {
233      global $current_site, $active_signup;
234
235      if ( !is_wp_error($errors) )
236           $errors = new WP_Error();
237      if ( isset( $_POST[ 'signup_for' ] ) )
238           $signup[ esc_html( $_POST[ 'signup_for' ] ) ] = 'checked="checked"';
 
Line Code
296 }
297
298 function confirm_user_signup($user_name, $user_email) {
299      ?>
300      <h2><?php printf( __( '%s is your new username' ), $user_name) ?></h2>
301      <p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p>
302      <p><?php printf(__( 'Check your inbox at <strong>%1$s</strong> and click the link given.' ),  $user_email) ?></p>
303      <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p>
304      <?php
305      do_action( 'signup_finished' );
306 }
307
308 function signup_blog($user_name = '', $user_email = '', $blogname = '', $blog_title = '', $errors = '') {
309      if ( !is_wp_error($errors) )
310           $errors = new WP_Error();
311
312      // allow definition of default variables
313      $filtered_results = apply_filters('signup_blog_init', array('user_name' => $user_name, 'user_email' => $user_email, 'blogname' => $blogname, 'blog_title' => $blog_title, 'errors' => $errors ));
314      $user_name = $filtered_results['user_name'];
 
Line Code
369      <p>
370           <?php _e( 'If you haven&#8217;t received your email yet, there are a number of things you can do:' ) ?>
371           <ul id="noemail-tips">
372                <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>
373                <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li>
374                <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>
375           </ul>
376      </p>
377      <?php
378      do_action( 'signup_finished' );
379 }
380
381 // Main
382 $active_signup = get_site_option( 'registration' );
383 if ( !$active_signup )
384      $active_signup = 'all';
385
386 $active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return "all", "none", "blog" or "user"
387