3v4l.org

run code in 300+ PHP versions simultaneously
<?php get_header() ?> <div id="content"> <div class="padder"> <?php do_action( 'bp_before_register_page' ) ?> <div class="page" id="register-page"> <form action="" name="signup_form" id="signup_form" class="standard-form" method="post" enctype="multipart/form-data"> <?php if ( 'request-details' == bp_get_current_signup_step() ) : ?> <h2><?php _e( 'Create an Account', 'buddypress' ) ?></h2> <?php do_action( 'template_notices' ) ?> <p><?php _e( 'Registering for this site is easy, just fill in the fields below and we\'ll get a new account set up for you in no time.', 'buddypress' ) ?></p> <?php do_action( 'bp_before_account_details_fields' ) ?> <div class="register-section" id="basic-details-section"> <?php /***** Basic Account Details ******/ ?> <h4><?php _e( 'Account Details', 'buddypress' ) ?></h4> <label for="signup_username"><?php _e( 'Username', 'buddypress' ) ?> <?php _e( '*', 'buddypress' ) ?></label> <?php do_action( 'bp_signup_username_errors' ) ?> <input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value() ?>" /> <label for="signup_email"><?php _e( 'Email Address', 'buddypress' ) ?> <?php _e( '*', 'buddypress' ) ?></label> <?php do_action( 'bp_signup_email_errors' ) ?> <input type="text" name="signup_email" id="signup_email" value="<?php bp_signup_email_value() ?>" /> <label for="signup_password"><?php _e( 'Choose a Password', 'buddypress' ) ?> <?php _e( '*', 'buddypress' ) ?></label> <?php do_action( 'bp_signup_password_errors' ) ?> <input type="password" name="signup_password" id="signup_password" value="" /> <label for="signup_password_confirm"><?php _e( 'Confirm Password', 'buddypress' ) ?> <?php _e( '(*)', 'buddypress' ) ?></label> <?php do_action( 'bp_signup_password_confirm_errors' ) ?> <input type="password" name="signup_password_confirm" id="signup_password_confirm" value="" /> </div><!-- #basic-details-section --> <?php do_action( 'bp_after_account_details_fields' ) ?> <?php do_action( 'bp_before_blog_details_fields' ) ?> <?php /***** Extra Profile Details ******/ ?> <?php if ( bp_is_active( 'xprofile' ) ) : ?> <div class="register-section" id="profile-details-section"> <h4><?php _e( 'Profile Details', 'buddypress' ) ?></h4> <?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?> <?php if ( function_exists( 'bp_has_profile' ) ) : if ( bp_has_profile( 'profile_group_id=1' ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?> <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?> <div class="editfield"> <?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?> <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></label> <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?> <input type="text" name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>" value="<?php bp_the_profile_field_edit_value() ?>" /> <?php endif; ?> <?php if ( 'textarea' == bp_get_the_profile_field_type() ) : ?> <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></label> <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?> <textarea rows="5" cols="40" name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_edit_value() ?></textarea> <?php endif; ?> <?php if ( 'selectbox' == bp_get_the_profile_field_type() ) : ?> <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></label> <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?> <select name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>"> <?php bp_the_profile_field_options() ?> </select> <?php endif; ?> <?php if ( 'multiselectbox' == bp_get_the_profile_field_type() ) : ?> <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></label> <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?> <select name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>" multiple="multiple"> <?php bp_the_profile_field_options() ?> </select> <?php endif; ?> <?php if ( 'radio' == bp_get_the_profile_field_type() ) : ?> <div class="radio"> <span class="label"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></span> <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?> <?php bp_the_profile_field_options() ?> <?php if ( !bp_get_the_profile_field_is_required() ) : ?> <a class="clear-value" href="javascript:clear( '<?php bp_the_profile_field_input_name() ?>' );"><?php _e( 'Clear', 'buddypress' ) ?></a> <?php endif; ?> </div> <?php endif; ?> <?php if ( 'checkbox' == bp_get_the_profile_field_type() ) : ?> <div class="checkbox"> <span class="label"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></span> <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?> <?php bp_the_profile_field_options() ?> </div> <?php endif; ?> <?php if ( 'datebox' == bp_get_the_profile_field_type() ) : ?> <div class="datebox"> <label for="<?php bp_the_profile_field_input_name() ?>_day"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></label> <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?> <select name="<?php bp_the_profile_field_input_name() ?>_day" id="<?php bp_the_profile_field_input_name() ?>_day"> <?php bp_the_profile_field_options( 'type=day' ) ?> </select> <select name="<?php bp_the_profile_field_input_name() ?>_month" id="<?php bp_the_profile_field_input_name() ?>_month"> <?php bp_the_profile_field_options( 'type=month' ) ?> </select> <select name="<?php bp_the_profile_field_input_name() ?>_year" id="<?php bp_the_profile_field_input_name() ?>_year"> <?php bp_the_profile_field_options( 'type=year' ) ?> </select> </div> <?php endif; ?> <?php do_action( 'bp_custom_profile_edit_fields' ) ?> <p class="description"><?php bp_the_profile_field_description() ?></p> </div> <?php endwhile; ?> <input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids() ?>" /> <?php endwhile; endif; endif; ?> </div><!-- #profile-details-section --> <?php endif; ?> <?php do_action( 'bp_after_signup_profile_fields' ) ?> <?php if ( bp_get_blog_signup_allowed() ) : ?> <?php do_action( 'bp_before_blog_details_fields' ) ?> <?php /***** Blog Creation Details ******/ ?> <div class="register-section" id="blog-details-section"> <h4><?php _e( 'Blog Details', 'buddypress' ) ?></h4> <p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I\'d like to create a new blog', 'buddypress' ) ?></p> <div id="blog-details"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?>class="show"<?php endif; ?>> <label for="signup_blog_url"><?php _e( 'Blog URL', 'buddypress' ) ?> <?php _e( '*', 'buddypress' ) ?></label> <?php do_action( 'bp_signup_blog_url_errors' ) ?> <?php if ( 'yes' == VHOST ) : ?> http:// <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value() ?>" /> .<?php echo str_replace( 'http://', '', site_url() ) ?> <?php else : ?> <?php echo site_url() ?>/ <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value() ?>" /> <?php endif; ?> <label for="signup_blog_title"><?php _e( 'Blog Title', 'buddypress' ) ?> <?php _e( '*', 'buddypress' ) ?></label> <?php do_action( 'bp_signup_blog_title_errors' ) ?> <input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value() ?>" /> <span class="label"><?php _e( 'I would like my blog to appear in search engines, and in public listings around this site', 'buddypress' ) ?>:</span> <?php do_action( 'bp_signup_blog_privacy_errors' ) ?> <label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public"<?php if ( 'public' == bp_get_signup_blog_privacy_value() || !bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes' ) ?></label> <label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private"<?php if ( 'private' == bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'No' ) ?></label> </div> </div><!-- #blog-details-section --> <?php do_action( 'bp_after_blog_details_fields' ) ?> <?php endif; ?> <?php do_action( 'bp_before_registration_submit_buttons' ) ?> <a id="myLocation" title="Click to get your current location" href="#" onclick="initialize(); return false;">Get My Location</a> <div class="submit"> <input type="submit"name="signup_submit" id="signup_submit" value="<?php _e( 'Complete Sign Up', 'buddypress' ) ?> &rarr;" /> </div> <?php do_action( 'bp_after_registration_submit_buttons' ) ?> <?php wp_nonce_field( 'bp_new_signup' ) ?> <?php endif; // request-details signup step ?> <?php if ( 'completed-confirmation' == bp_get_current_signup_step() ) : ?> <h2><?php _e( 'Sign Up Complete!', 'buddypress' ) ?></h2> <?php do_action( 'template_notices' ) ?> <?php if ( bp_registration_needs_activation() ) : ?> <p><?php _e( 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress' ) ?></p> <?php else : ?> <p><?php _e( 'You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress' ) ?></p> <?php endif; ?> <?php if ( bp_is_active( 'xprofile' ) && !(int)bp_get_option( 'bp-disable-avatar-uploads' ) ) : ?> <?php if ( 'upload-image' == bp_get_avatar_admin_step() ) : ?> <h4><?php _e( 'Your Current Avatar', 'buddypress' ) ?></h4> <p><?php _e( "We've fetched an avatar for your new account. If you'd like to change this, why not upload a new one?", 'buddypress' ) ?></p> <div id="signup-avatar"> <?php bp_signup_avatar() ?> </div> <p> <input type="file" name="file" id="file" /> <input type="submit" name="upload" id="upload" value="<?php _e( 'Upload Image', 'buddypress' ) ?>" /> <input type="hidden" name="action" id="action" value="bp_avatar_upload" /> <input type="hidden" name="signup_email" id="signup_email" value="<?php bp_signup_email_value() ?>" /> <input type="hidden" name="signup_username" id="signup_username" value="<?php bp_signup_username_value() ?>" /> </p> <?php wp_nonce_field( 'bp_avatar_upload' ) ?> <?php endif; ?> <?php if ( 'crop-image' == bp_get_avatar_admin_step() ) : ?> <h3><?php _e( 'Crop Your New Avatar', 'buddypress' ) ?></h3> <img src="<?php bp_avatar_to_crop() ?>" id="avatar-to-crop" class="avatar" alt="<?php _e( 'Avatar to crop', 'buddypress' ) ?>" /> <div id="avatar-crop-pane"> <img src="<?php bp_avatar_to_crop() ?>" id="avatar-crop-preview" class="avatar" alt="<?php _e( 'Avatar preview', 'buddypress' ) ?>" /> </div> <input type="submit" name="avatar-crop-submit" id="avatar-crop-submit" value="<?php _e( 'Crop Image', 'buddypress' ) ?>" /> <input type="hidden" name="signup_email" id="signup_email" value="<?php bp_signup_email_value() ?>" /> <input type="hidden" name="signup_username" id="signup_username" value="<?php bp_signup_username_value() ?>" /> <input type="hidden" name="signup_avatar_dir" id="signup_avatar_dir" value="<?php bp_signup_avatar_dir_value() ?>" /> <input type="hidden" name="image_src" id="image_src" value="<?php bp_avatar_to_crop_src() ?>" /> <input type="hidden" id="x" name="x" /> <input type="hidden" id="y" name="y" /> <input type="hidden" id="w" name="w" /> <input type="hidden" id="h" name="h" /> <?php wp_nonce_field( 'bp_avatar_cropstore' ) ?> <?php endif; ?> <?php endif; ?> <?php endif; // completed-confirmation signup step ?> <?php do_action( 'bp_custom_signup_steps' ) ?> </form> </div> <?php do_action( 'bp_after_register_page' ) ?> </div><!-- .padder --> </div><!-- #content --> <?php locate_template( array( 'sidebar.php' ), true ) ?> <?php do_action( 'bp_after_directory_activity_content' ) ?> <script type="text/javascript"> jQuery(document).ready( function() { if ( jQuery('div#blog-details').length && !jQuery('div#blog-details').hasClass('show') ) jQuery('div#blog-details').toggle(); jQuery( 'input#signup_with_blog' ).click( function() { jQuery('div#blog-details').fadeOut().toggle(); }); }); </script> <?php get_footer() ?>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 11, Position 2 = 577
Branch analysis from position: 11
2 jumps found. (Code = 43) Position 1 = 111, Position 2 = 428
Branch analysis from position: 111
2 jumps found. (Code = 43) Position 1 = 122, Position 2 = 427
Branch analysis from position: 122
2 jumps found. (Code = 43) Position 1 = 126, Position 2 = 427
Branch analysis from position: 126
1 jumps found. (Code = 42) Position 1 = 424
Branch analysis from position: 424
2 jumps found. (Code = 44) Position 1 = 427, Position 2 = 127
Branch analysis from position: 427
2 jumps found. (Code = 43) Position 1 = 436, Position 2 = 559
Branch analysis from position: 436
2 jumps found. (Code = 43) Position 1 = 451, Position 2 = 452
Branch analysis from position: 451
2 jumps found. (Code = 43) Position 1 = 462, Position 2 = 463
Branch analysis from position: 462
2 jumps found. (Code = 43) Position 1 = 481, Position 2 = 495
Branch analysis from position: 481
1 jumps found. (Code = 42) Position 1 = 503
Branch analysis from position: 503
2 jumps found. (Code = 47) Position 1 = 534, Position 2 = 538
Branch analysis from position: 534
2 jumps found. (Code = 43) Position 1 = 539, Position 2 = 540
Branch analysis from position: 539
2 jumps found. (Code = 43) Position 1 = 549, Position 2 = 550
Branch analysis from position: 549
2 jumps found. (Code = 43) Position 1 = 582, Position 2 = 704
Branch analysis from position: 582
2 jumps found. (Code = 43) Position 1 = 595, Position 2 = 602
Branch analysis from position: 595
1 jumps found. (Code = 42) Position 1 = 608
Branch analysis from position: 608
2 jumps found. (Code = 46) Position 1 = 613, Position 2 = 619
Branch analysis from position: 613
2 jumps found. (Code = 43) Position 1 = 620, Position 2 = 703
Branch analysis from position: 620
2 jumps found. (Code = 43) Position 1 = 625, Position 2 = 654
Branch analysis from position: 625
2 jumps found. (Code = 43) Position 1 = 659, Position 2 = 702
Branch analysis from position: 659
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 702
Branch analysis from position: 654
Branch analysis from position: 703
Branch analysis from position: 619
Branch analysis from position: 602
2 jumps found. (Code = 46) Position 1 = 613, Position 2 = 619
Branch analysis from position: 613
Branch analysis from position: 619
Branch analysis from position: 704
Branch analysis from position: 550
Branch analysis from position: 540
Branch analysis from position: 538
Branch analysis from position: 495
2 jumps found. (Code = 47) Position 1 = 534, Position 2 = 538
Branch analysis from position: 534
Branch analysis from position: 538
Branch analysis from position: 463
Branch analysis from position: 452
Branch analysis from position: 559
Branch analysis from position: 127
1 jumps found. (Code = 42) Position 1 = 417
Branch analysis from position: 417
2 jumps found. (Code = 44) Position 1 = 420, Position 2 = 131
Branch analysis from position: 420
2 jumps found. (Code = 44) Position 1 = 427, Position 2 = 127
Branch analysis from position: 427
Branch analysis from position: 127
Branch analysis from position: 131
2 jumps found. (Code = 43) Position 1 = 138, Position 2 = 170
Branch analysis from position: 138
2 jumps found. (Code = 43) Position 1 = 148, Position 2 = 152
Branch analysis from position: 148
2 jumps found. (Code = 43) Position 1 = 175, Position 2 = 207
Branch analysis from position: 175
2 jumps found. (Code = 43) Position 1 = 185, Position 2 = 189
Branch analysis from position: 185
2 jumps found. (Code = 43) Position 1 = 212, Position 2 = 244
Branch analysis from position: 212
2 jumps found. (Code = 43) Position 1 = 222, Position 2 = 226
Branch analysis from position: 222
2 jumps found. (Code = 43) Position 1 = 249, Position 2 = 281
Branch analysis from position: 249
2 jumps found. (Code = 43) Position 1 = 259, Position 2 = 263
Branch analysis from position: 259
2 jumps found. (Code = 43) Position 1 = 286, Position 2 = 323
Branch analysis from position: 286
2 jumps found. (Code = 43) Position 1 = 293, Position 2 = 297
Branch analysis from position: 293
2 jumps found. (Code = 43) Position 1 = 313, Position 2 = 322
Branch analysis from position: 313
2 jumps found. (Code = 43) Position 1 = 328, Position 2 = 351
Branch analysis from position: 328
2 jumps found. (Code = 43) Position 1 = 335, Position 2 = 339
Branch analysis from position: 335
2 jumps found. (Code = 43) Position 1 = 356, Position 2 = 409
Branch analysis from position: 356
2 jumps found. (Code = 43) Position 1 = 366, Position 2 = 370
Branch analysis from position: 366
2 jumps found. (Code = 44) Position 1 = 420, Position 2 = 131
Branch analysis from position: 420
Branch analysis from position: 131
Branch analysis from position: 370
Branch analysis from position: 409
Branch analysis from position: 339
Branch analysis from position: 351
Branch analysis from position: 322
Branch analysis from position: 297
Branch analysis from position: 323
Branch analysis from position: 263
Branch analysis from position: 281
Branch analysis from position: 226
Branch analysis from position: 244
Branch analysis from position: 189
Branch analysis from position: 207
Branch analysis from position: 152
Branch analysis from position: 170
Branch analysis from position: 427
Branch analysis from position: 427
Branch analysis from position: 428
Branch analysis from position: 577
filename:       /in/5i13h
function name:  (null)
number of ops:  725
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    1     0  E >   INIT_FCALL_BY_NAME                                       'get_header'
          1        DO_FCALL                                      0          
    2     2        ECHO                                                     '%0A%09%3Cdiv+id%3D%22content%22%3E%0A%09%09%3Cdiv+class%3D%22padder%22%3E%0A%0A%09%09'
    6     3        INIT_FCALL_BY_NAME                                       'do_action'
          4        SEND_VAL_EX                                              'bp_before_register_page'
          5        DO_FCALL                                      0          
    7     6        ECHO                                                     '%0A%09%09%3Cdiv+class%3D%22page%22+id%3D%22register-page%22%3E%0A%0A%09%09%09%3Cform+action%3D%22%22+name%3D%22signup_form%22+id%3D%22signup_form%22+class%3D%22standard-form%22+method%3D%22post%22+enctype%3D%22multipart%2Fform-data%22%3E%0A%0A%09%09%09'
   12     7        INIT_FCALL_BY_NAME                                       'bp_get_current_signup_step'
          8        DO_FCALL                                      0  $2      
          9        IS_EQUAL                                                 $2, 'request-details'
         10      > JMPZ                                                     ~3, ->577
   13    11    >   ECHO                                                     '%0A%09%09%09%09%3Ch2%3E'
   14    12        INIT_FCALL_BY_NAME                                       '_e'
         13        SEND_VAL_EX                                              'Create+an+Account'
         14        SEND_VAL_EX                                              'buddypress'
         15        DO_FCALL                                      0          
         16        ECHO                                                     '%3C%2Fh2%3E%0A%0A%09%09%09%09'
   16    17        INIT_FCALL_BY_NAME                                       'do_action'
         18        SEND_VAL_EX                                              'template_notices'
         19        DO_FCALL                                      0          
   17    20        ECHO                                                     '%0A%09%09%09%09%3Cp%3E'
   18    21        INIT_FCALL_BY_NAME                                       '_e'
         22        SEND_VAL_EX                                              'Registering+for+this+site+is+easy%2C+just+fill+in+the+fields+below+and+we%27ll+get+a+new+account+set+up+for+you+in+no+time.'
         23        SEND_VAL_EX                                              'buddypress'
         24        DO_FCALL                                      0          
         25        ECHO                                                     '%3C%2Fp%3E%0A%0A%09%09%09%09'
   20    26        INIT_FCALL_BY_NAME                                       'do_action'
         27        SEND_VAL_EX                                              'bp_before_account_details_fields'
         28        DO_FCALL                                      0          
   21    29        ECHO                                                     '%0A%09%09%09%09%3Cdiv+class%3D%22register-section%22+id%3D%22basic-details-section%22%3E%0A%0A%09%09%09%09%09'
   25    30        ECHO                                                     '%0A%09%09%09%09%09%3Ch4%3E'
   26    31        INIT_FCALL_BY_NAME                                       '_e'
         32        SEND_VAL_EX                                              'Account+Details'
         33        SEND_VAL_EX                                              'buddypress'
         34        DO_FCALL                                      0          
         35        ECHO                                                     '%3C%2Fh4%3E%0A%0A%09%09%09%09%09%3Clabel+for%3D%22signup_username%22%3E'
   28    36        INIT_FCALL_BY_NAME                                       '_e'
         37        SEND_VAL_EX                                              'Username'
         38        SEND_VAL_EX                                              'buddypress'
         39        DO_FCALL                                      0          
         40        ECHO                                                     '+'
         41        INIT_FCALL_BY_NAME                                       '_e'
         42        SEND_VAL_EX                                              '%2A'
         43        SEND_VAL_EX                                              'buddypress'
         44        DO_FCALL                                      0          
         45        ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09'
   29    46        INIT_FCALL_BY_NAME                                       'do_action'
         47        SEND_VAL_EX                                              'bp_signup_username_errors'
         48        DO_FCALL                                      0          
   30    49        ECHO                                                     '%09%09%09%09%09%3Cinput+type%3D%22text%22+name%3D%22signup_username%22+id%3D%22signup_username%22+value%3D%22'
         50        INIT_FCALL_BY_NAME                                       'bp_signup_username_value'
         51        DO_FCALL                                      0          
         52        ECHO                                                     '%22+%2F%3E%0A%0A%09%09%09%09%09%3Clabel+for%3D%22signup_email%22%3E'
   32    53        INIT_FCALL_BY_NAME                                       '_e'
         54        SEND_VAL_EX                                              'Email+Address'
         55        SEND_VAL_EX                                              'buddypress'
         56        DO_FCALL                                      0          
         57        ECHO                                                     '+'
         58        INIT_FCALL_BY_NAME                                       '_e'
         59        SEND_VAL_EX                                              '%2A'
         60        SEND_VAL_EX                                              'buddypress'
         61        DO_FCALL                                      0          
         62        ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09'
   33    63        INIT_FCALL_BY_NAME                                       'do_action'
         64        SEND_VAL_EX                                              'bp_signup_email_errors'
         65        DO_FCALL                                      0          
   34    66        ECHO                                                     '%09%09%09%09%09%3Cinput+type%3D%22text%22+name%3D%22signup_email%22+id%3D%22signup_email%22+value%3D%22'
         67        INIT_FCALL_BY_NAME                                       'bp_signup_email_value'
         68        DO_FCALL                                      0          
         69        ECHO                                                     '%22+%2F%3E%0A%0A%09%09%09%09%09%3Clabel+for%3D%22signup_password%22%3E'
   36    70        INIT_FCALL_BY_NAME                                       '_e'
         71        SEND_VAL_EX                                              'Choose+a+Password'
         72        SEND_VAL_EX                                              'buddypress'
         73        DO_FCALL                                      0          
         74        ECHO                                                     '+'
         75        INIT_FCALL_BY_NAME                                       '_e'
         76        SEND_VAL_EX                                              '%2A'
         77        SEND_VAL_EX                                              'buddypress'
         78        DO_FCALL                                      0          
         79        ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09'
   37    80        INIT_FCALL_BY_NAME                                       'do_action'
         81        SEND_VAL_EX                                              'bp_signup_password_errors'
         82        DO_FCALL                                      0          
   38    83        ECHO                                                     '%09%09%09%09%09%3Cinput+type%3D%22password%22+name%3D%22signup_password%22+id%3D%22signup_password%22+value%3D%22%22+%2F%3E%0A%0A%09%09%09%09%09%3Clabel+for%3D%22signup_password_confirm%22%3E'
   40    84        INIT_FCALL_BY_NAME                                       '_e'
         85        SEND_VAL_EX                                              'Confirm+Password'
         86        SEND_VAL_EX                                              'buddypress'
         87        DO_FCALL                                      0          
         88        ECHO                                                     '+'
         89        INIT_FCALL_BY_NAME                                       '_e'
         90        SEND_VAL_EX                                              '%28%2A%29'
         91        SEND_VAL_EX                                              'buddypress'
         92        DO_FCALL                                      0          
         93        ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09'
   41    94        INIT_FCALL_BY_NAME                                       'do_action'
         95        SEND_VAL_EX                                              'bp_signup_password_confirm_errors'
         96        DO_FCALL                                      0          
   42    97        ECHO                                                     '%09%09%09%09%09%3Cinput+type%3D%22password%22+name%3D%22signup_password_confirm%22+id%3D%22signup_password_confirm%22+value%3D%22%22+%2F%3E%0A%0A%09%09%09%09%3C%2Fdiv%3E%3C%21--+%23basic-details-section+--%3E%0A%0A%09%09%09%09'
   46    98        INIT_FCALL_BY_NAME                                       'do_action'
         99        SEND_VAL_EX                                              'bp_after_account_details_fields'
        100        DO_FCALL                                      0          
   47   101        ECHO                                                     '%0A%09%09%09%09'
   48   102        INIT_FCALL_BY_NAME                                       'do_action'
        103        SEND_VAL_EX                                              'bp_before_blog_details_fields'
        104        DO_FCALL                                      0          
   49   105        ECHO                                                     '%0A%0A%09%09%09%09'
   52   106        ECHO                                                     '%0A%09%09%09%09'
   53   107        INIT_FCALL_BY_NAME                                       'bp_is_active'
        108        SEND_VAL_EX                                              'xprofile'
        109        DO_FCALL                                      0  $25     
        110      > JMPZ                                                     $25, ->428
   54   111    >   ECHO                                                     '%09%09%09%09%3Cdiv+class%3D%22register-section%22+id%3D%22profile-details-section%22%3E%0A%0A%09%09%09%09%09%3Ch4%3E'
   56   112        INIT_FCALL_BY_NAME                                       '_e'
        113        SEND_VAL_EX                                              'Profile+Details'
        114        SEND_VAL_EX                                              'buddypress'
        115        DO_FCALL                                      0          
        116        ECHO                                                     '%3C%2Fh4%3E%0A%0A%09%09%09%09%09'
   59   117        ECHO                                                     '%09%09%09%09%09'
        118        INIT_FCALL                                               'function_exists'
        119        SEND_VAL                                                 'bp_has_profile'
        120        DO_ICALL                                         $27     
        121      > JMPZ                                                     $27, ->427
        122    >   INIT_FCALL_BY_NAME                                       'bp_has_profile'
        123        SEND_VAL_EX                                              'profile_group_id%3D1'
        124        DO_FCALL                                      0  $28     
        125      > JMPZ                                                     $28, ->427
        126    > > JMP                                                      ->424
        127    >   INIT_FCALL_BY_NAME                                       'bp_the_profile_group'
        128        DO_FCALL                                      0          
   60   129        ECHO                                                     '%0A%09%09%09%09%09'
   61   130      > JMP                                                      ->417
        131    >   INIT_FCALL_BY_NAME                                       'bp_the_profile_field'
        132        DO_FCALL                                      0          
   62   133        ECHO                                                     '%0A%09%09%09%09%09%09%3Cdiv+class%3D%22editfield%22%3E%0A%0A%09%09%09%09%09%09%09'
   65   134        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_type'
        135        DO_FCALL                                      0  $31     
        136        IS_EQUAL                                                 $31, 'textbox'
        137      > JMPZ                                                     ~32, ->170
   66   138    >   ECHO                                                     '%0A%09%09%09%09%09%09%09%09%3Clabel+for%3D%22'
   67   139        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        140        DO_FCALL                                      0          
        141        ECHO                                                     '%22%3E'
        142        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_name'
        143        DO_FCALL                                      0          
        144        ECHO                                                     '+'
        145        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_is_required'
        146        DO_FCALL                                      0  $35     
        147      > JMPZ                                                     $35, ->152
        148    >   INIT_FCALL_BY_NAME                                       '_e'
        149        SEND_VAL_EX                                              '%2A'
        150        SEND_VAL_EX                                              'buddypress'
        151        DO_FCALL                                      0          
        152    >   ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09%09%09%09'
   68   153        INIT_FCALL_BY_NAME                                       'do_action'
        154        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_input_name'
        155        DO_FCALL                                      0  $37     
        156        CONCAT                                           ~38     'bp_', $37
        157        CONCAT                                           ~39     ~38, '_errors'
        158        SEND_VAL_EX                                              ~39
        159        DO_FCALL                                      0          
   69   160        ECHO                                                     '%09%09%09%09%09%09%09%09%3Cinput+type%3D%22text%22+name%3D%22'
        161        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        162        DO_FCALL                                      0          
        163        ECHO                                                     '%22+id%3D%22'
        164        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        165        DO_FCALL                                      0          
        166        ECHO                                                     '%22+value%3D%22'
        167        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_edit_value'
        168        DO_FCALL                                      0          
        169        ECHO                                                     '%22+%2F%3E%0A%0A%09%09%09%09%09%09%09'
   72   170    >   ECHO                                                     '%0A%09%09%09%09%09%09%09'
   73   171        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_type'
        172        DO_FCALL                                      0  $44     
        173        IS_EQUAL                                                 $44, 'textarea'
        174      > JMPZ                                                     ~45, ->207
   74   175    >   ECHO                                                     '%0A%09%09%09%09%09%09%09%09%3Clabel+for%3D%22'
   75   176        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        177        DO_FCALL                                      0          
        178        ECHO                                                     '%22%3E'
        179        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_name'
        180        DO_FCALL                                      0          
        181        ECHO                                                     '+'
        182        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_is_required'
        183        DO_FCALL                                      0  $48     
        184      > JMPZ                                                     $48, ->189
        185    >   INIT_FCALL_BY_NAME                                       '_e'
        186        SEND_VAL_EX                                              '%2A'
        187        SEND_VAL_EX                                              'buddypress'
        188        DO_FCALL                                      0          
        189    >   ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09%09%09%09'
   76   190        INIT_FCALL_BY_NAME                                       'do_action'
        191        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_input_name'
        192        DO_FCALL                                      0  $50     
        193        CONCAT                                           ~51     'bp_', $50
        194        CONCAT                                           ~52     ~51, '_errors'
        195        SEND_VAL_EX                                              ~52
        196        DO_FCALL                                      0          
   77   197        ECHO                                                     '%09%09%09%09%09%09%09%09%3Ctextarea+rows%3D%225%22+cols%3D%2240%22+name%3D%22'
        198        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        199        DO_FCALL                                      0          
        200        ECHO                                                     '%22+id%3D%22'
        201        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        202        DO_FCALL                                      0          
        203        ECHO                                                     '%22%3E'
        204        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_edit_value'
        205        DO_FCALL                                      0          
        206        ECHO                                                     '%3C%2Ftextarea%3E%0A%0A%09%09%09%09%09%09%09'
   80   207    >   ECHO                                                     '%0A%09%09%09%09%09%09%09'
   81   208        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_type'
        209        DO_FCALL                                      0  $57     
        210        IS_EQUAL                                                 $57, 'selectbox'
        211      > JMPZ                                                     ~58, ->244
   82   212    >   ECHO                                                     '%0A%09%09%09%09%09%09%09%09%3Clabel+for%3D%22'
   83   213        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        214        DO_FCALL                                      0          
        215        ECHO                                                     '%22%3E'
        216        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_name'
        217        DO_FCALL                                      0          
        218        ECHO                                                     '+'
        219        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_is_required'
        220        DO_FCALL                                      0  $61     
        221      > JMPZ                                                     $61, ->226
        222    >   INIT_FCALL_BY_NAME                                       '_e'
        223        SEND_VAL_EX                                              '%2A'
        224        SEND_VAL_EX                                              'buddypress'
        225        DO_FCALL                                      0          
        226    >   ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09%09%09%09'
   84   227        INIT_FCALL_BY_NAME                                       'do_action'
        228        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_input_name'
        229        DO_FCALL                                      0  $63     
        230        CONCAT                                           ~64     'bp_', $63
        231        CONCAT                                           ~65     ~64, '_errors'
        232        SEND_VAL_EX                                              ~65
        233        DO_FCALL                                      0          
   85   234        ECHO                                                     '%09%09%09%09%09%09%09%09%3Cselect+name%3D%22'
        235        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        236        DO_FCALL                                      0          
        237        ECHO                                                     '%22+id%3D%22'
        238        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        239        DO_FCALL                                      0          
        240        ECHO                                                     '%22%3E%0A%09%09%09%09%09%09%09%09%09'
   86   241        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_options'
        242        DO_FCALL                                      0          
   87   243        ECHO                                                     '%09%09%09%09%09%09%09%09%3C%2Fselect%3E%0A%0A%09%09%09%09%09%09%09'
   90   244    >   ECHO                                                     '%0A%09%09%09%09%09%09%09'
   91   245        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_type'
        246        DO_FCALL                                      0  $70     
        247        IS_EQUAL                                                 $70, 'multiselectbox'
        248      > JMPZ                                                     ~71, ->281
   92   249    >   ECHO                                                     '%0A%09%09%09%09%09%09%09%09%3Clabel+for%3D%22'
   93   250        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        251        DO_FCALL                                      0          
        252        ECHO                                                     '%22%3E'
        253        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_name'
        254        DO_FCALL                                      0          
        255        ECHO                                                     '+'
        256        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_is_required'
        257        DO_FCALL                                      0  $74     
        258      > JMPZ                                                     $74, ->263
        259    >   INIT_FCALL_BY_NAME                                       '_e'
        260        SEND_VAL_EX                                              '%2A'
        261        SEND_VAL_EX                                              'buddypress'
        262        DO_FCALL                                      0          
        263    >   ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09%09%09%09'
   94   264        INIT_FCALL_BY_NAME                                       'do_action'
        265        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_input_name'
        266        DO_FCALL                                      0  $76     
        267        CONCAT                                           ~77     'bp_', $76
        268        CONCAT                                           ~78     ~77, '_errors'
        269        SEND_VAL_EX                                              ~78
        270        DO_FCALL                                      0          
   95   271        ECHO                                                     '%09%09%09%09%09%09%09%09%3Cselect+name%3D%22'
        272        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        273        DO_FCALL                                      0          
        274        ECHO                                                     '%22+id%3D%22'
        275        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        276        DO_FCALL                                      0          
        277        ECHO                                                     '%22+multiple%3D%22multiple%22%3E%0A%09%09%09%09%09%09%09%09%09'
   96   278        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_options'
        279        DO_FCALL                                      0          
   97   280 

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
274.17 ms | 1432 KiB | 16 Q