3v4l.org

run code in 300+ PHP versions simultaneously
<?php ini_set('display_errors', 0); ?> <?php /** * @package WordPress * @subpackage Ars_Theme */ if (function_exists('get_header')) { get_header(); }else{ /* Redirect browser */ header("Location: http://" . $_SERVER['HTTP_HOST'] . ""); /* Make sure that code below does not get executed when we redirect. */ exit; }; ?> <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 = 8, Position 2 = 11
Branch analysis from position: 8
1 jumps found. (Code = 42) Position 1 = 19
Branch analysis from position: 19
2 jumps found. (Code = 43) Position 1 = 28, Position 2 = 594
Branch analysis from position: 28
2 jumps found. (Code = 43) Position 1 = 128, Position 2 = 445
Branch analysis from position: 128
2 jumps found. (Code = 43) Position 1 = 139, Position 2 = 444
Branch analysis from position: 139
2 jumps found. (Code = 43) Position 1 = 143, Position 2 = 444
Branch analysis from position: 143
1 jumps found. (Code = 42) Position 1 = 441
Branch analysis from position: 441
2 jumps found. (Code = 44) Position 1 = 444, Position 2 = 144
Branch analysis from position: 444
2 jumps found. (Code = 43) Position 1 = 453, Position 2 = 576
Branch analysis from position: 453
2 jumps found. (Code = 43) Position 1 = 468, Position 2 = 469
Branch analysis from position: 468
2 jumps found. (Code = 43) Position 1 = 479, Position 2 = 480
Branch analysis from position: 479
2 jumps found. (Code = 43) Position 1 = 498, Position 2 = 512
Branch analysis from position: 498
1 jumps found. (Code = 42) Position 1 = 520
Branch analysis from position: 520
2 jumps found. (Code = 47) Position 1 = 551, Position 2 = 555
Branch analysis from position: 551
2 jumps found. (Code = 43) Position 1 = 556, Position 2 = 557
Branch analysis from position: 556
2 jumps found. (Code = 43) Position 1 = 566, Position 2 = 567
Branch analysis from position: 566
2 jumps found. (Code = 43) Position 1 = 599, Position 2 = 721
Branch analysis from position: 599
2 jumps found. (Code = 43) Position 1 = 612, Position 2 = 619
Branch analysis from position: 612
1 jumps found. (Code = 42) Position 1 = 625
Branch analysis from position: 625
2 jumps found. (Code = 46) Position 1 = 630, Position 2 = 636
Branch analysis from position: 630
2 jumps found. (Code = 43) Position 1 = 637, Position 2 = 720
Branch analysis from position: 637
2 jumps found. (Code = 43) Position 1 = 642, Position 2 = 671
Branch analysis from position: 642
2 jumps found. (Code = 43) Position 1 = 676, Position 2 = 719
Branch analysis from position: 676
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 719
Branch analysis from position: 671
Branch analysis from position: 720
Branch analysis from position: 636
Branch analysis from position: 619
2 jumps found. (Code = 46) Position 1 = 630, Position 2 = 636
Branch analysis from position: 630
Branch analysis from position: 636
Branch analysis from position: 721
Branch analysis from position: 567
Branch analysis from position: 557
Branch analysis from position: 555
Branch analysis from position: 512
2 jumps found. (Code = 47) Position 1 = 551, Position 2 = 555
Branch analysis from position: 551
Branch analysis from position: 555
Branch analysis from position: 480
Branch analysis from position: 469
Branch analysis from position: 576
Branch analysis from position: 144
1 jumps found. (Code = 42) Position 1 = 434
Branch analysis from position: 434
2 jumps found. (Code = 44) Position 1 = 437, Position 2 = 148
Branch analysis from position: 437
2 jumps found. (Code = 44) Position 1 = 444, Position 2 = 144
Branch analysis from position: 444
Branch analysis from position: 144
Branch analysis from position: 148
2 jumps found. (Code = 43) Position 1 = 155, Position 2 = 187
Branch analysis from position: 155
2 jumps found. (Code = 43) Position 1 = 165, Position 2 = 169
Branch analysis from position: 165
2 jumps found. (Code = 43) Position 1 = 192, Position 2 = 224
Branch analysis from position: 192
2 jumps found. (Code = 43) Position 1 = 202, Position 2 = 206
Branch analysis from position: 202
2 jumps found. (Code = 43) Position 1 = 229, Position 2 = 261
Branch analysis from position: 229
2 jumps found. (Code = 43) Position 1 = 239, Position 2 = 243
Branch analysis from position: 239
2 jumps found. (Code = 43) Position 1 = 266, Position 2 = 298
Branch analysis from position: 266
2 jumps found. (Code = 43) Position 1 = 276, Position 2 = 280
Branch analysis from position: 276
2 jumps found. (Code = 43) Position 1 = 303, Position 2 = 340
Branch analysis from position: 303
2 jumps found. (Code = 43) Position 1 = 310, Position 2 = 314
Branch analysis from position: 310
2 jumps found. (Code = 43) Position 1 = 330, Position 2 = 339
Branch analysis from position: 330
2 jumps found. (Code = 43) Position 1 = 345, Position 2 = 368
Branch analysis from position: 345
2 jumps found. (Code = 43) Position 1 = 352, Position 2 = 356
Branch analysis from position: 352
2 jumps found. (Code = 43) Position 1 = 373, Position 2 = 426
Branch analysis from position: 373
2 jumps found. (Code = 43) Position 1 = 383, Position 2 = 387
Branch analysis from position: 383
2 jumps found. (Code = 44) Position 1 = 437, Position 2 = 148
Branch analysis from position: 437
Branch analysis from position: 148
Branch analysis from position: 387
Branch analysis from position: 426
Branch analysis from position: 356
Branch analysis from position: 368
Branch analysis from position: 339
Branch analysis from position: 314
Branch analysis from position: 340
Branch analysis from position: 280
Branch analysis from position: 298
Branch analysis from position: 243
Branch analysis from position: 261
Branch analysis from position: 206
Branch analysis from position: 224
Branch analysis from position: 169
Branch analysis from position: 187
Branch analysis from position: 444
Branch analysis from position: 444
Branch analysis from position: 445
Branch analysis from position: 594
Branch analysis from position: 11
1 jumps found. (Code = 79) Position 1 = -2
filename:       /in/9Sgft
function name:  (null)
number of ops:  742
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    1     0  E >   INIT_FCALL                                               'ini_set'
          1        SEND_VAL                                                 'display_errors'
          2        SEND_VAL                                                 0
          3        DO_ICALL                                                 
    7     4        INIT_FCALL                                               'function_exists'
          5        SEND_VAL                                                 'get_header'
          6        DO_ICALL                                         $1      
          7      > JMPZ                                                     $1, ->11
    8     8    >   INIT_FCALL_BY_NAME                                       'get_header'
          9        DO_FCALL                                      0          
         10      > JMP                                                      ->19
   11    11    >   INIT_FCALL                                               'header'
         12        FETCH_R                      global              ~3      '_SERVER'
         13        FETCH_DIM_R                                      ~4      ~3, 'HTTP_HOST'
         14        CONCAT                                           ~5      'Location%3A+http%3A%2F%2F', ~4
         15        CONCAT                                           ~6      ~5, ''
         16        SEND_VAL                                                 ~6
         17        DO_ICALL                                                 
   13    18      > EXIT                                                     
   15    19    >   ECHO                                                     '%0A%09%3Cdiv+id%3D%22content%22%3E%0A%09%09%3Cdiv+class%3D%22padder%22%3E%0A%0A%09%09'
   19    20        INIT_FCALL_BY_NAME                                       'do_action'
         21        SEND_VAL_EX                                              'bp_before_register_page'
         22        DO_FCALL                                      0          
   20    23        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'
   25    24        INIT_FCALL_BY_NAME                                       'bp_get_current_signup_step'
         25        DO_FCALL                                      0  $9      
         26        IS_EQUAL                                                 $9, 'request-details'
         27      > JMPZ                                                     ~10, ->594
   26    28    >   ECHO                                                     '%0A%09%09%09%09%3Ch2%3E'
   27    29        INIT_FCALL_BY_NAME                                       '_e'
         30        SEND_VAL_EX                                              'Create+an+Account'
         31        SEND_VAL_EX                                              'buddypress'
         32        DO_FCALL                                      0          
         33        ECHO                                                     '%3C%2Fh2%3E%0A%0A%09%09%09%09'
   29    34        INIT_FCALL_BY_NAME                                       'do_action'
         35        SEND_VAL_EX                                              'template_notices'
         36        DO_FCALL                                      0          
   30    37        ECHO                                                     '%0A%09%09%09%09%3Cp%3E'
   31    38        INIT_FCALL_BY_NAME                                       '_e'
         39        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.'
         40        SEND_VAL_EX                                              'buddypress'
         41        DO_FCALL                                      0          
         42        ECHO                                                     '%3C%2Fp%3E%0A%0A%09%09%09%09'
   33    43        INIT_FCALL_BY_NAME                                       'do_action'
         44        SEND_VAL_EX                                              'bp_before_account_details_fields'
         45        DO_FCALL                                      0          
   34    46        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'
   38    47        ECHO                                                     '%0A%09%09%09%09%09%3Ch4%3E'
   39    48        INIT_FCALL_BY_NAME                                       '_e'
         49        SEND_VAL_EX                                              'Account+Details'
         50        SEND_VAL_EX                                              'buddypress'
         51        DO_FCALL                                      0          
         52        ECHO                                                     '%3C%2Fh4%3E%0A%0A%09%09%09%09%09%3Clabel+for%3D%22signup_username%22%3E'
   41    53        INIT_FCALL_BY_NAME                                       '_e'
         54        SEND_VAL_EX                                              'Username'
         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'
   42    63        INIT_FCALL_BY_NAME                                       'do_action'
         64        SEND_VAL_EX                                              'bp_signup_username_errors'
         65        DO_FCALL                                      0          
   43    66        ECHO                                                     '%09%09%09%09%09%3Cinput+type%3D%22text%22+name%3D%22signup_username%22+id%3D%22signup_username%22+value%3D%22'
         67        INIT_FCALL_BY_NAME                                       'bp_signup_username_value'
         68        DO_FCALL                                      0          
         69        ECHO                                                     '%22+%2F%3E%0A%0A%09%09%09%09%09%3Clabel+for%3D%22signup_email%22%3E'
   45    70        INIT_FCALL_BY_NAME                                       '_e'
         71        SEND_VAL_EX                                              'Email+Address'
         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'
   46    80        INIT_FCALL_BY_NAME                                       'do_action'
         81        SEND_VAL_EX                                              'bp_signup_email_errors'
         82        DO_FCALL                                      0          
   47    83        ECHO                                                     '%09%09%09%09%09%3Cinput+type%3D%22text%22+name%3D%22signup_email%22+id%3D%22signup_email%22+value%3D%22'
         84        INIT_FCALL_BY_NAME                                       'bp_signup_email_value'
         85        DO_FCALL                                      0          
         86        ECHO                                                     '%22+%2F%3E%0A%0A%09%09%09%09%09%3Clabel+for%3D%22signup_password%22%3E'
   49    87        INIT_FCALL_BY_NAME                                       '_e'
         88        SEND_VAL_EX                                              'Choose+a+Password'
         89        SEND_VAL_EX                                              'buddypress'
         90        DO_FCALL                                      0          
         91        ECHO                                                     '+'
         92        INIT_FCALL_BY_NAME                                       '_e'
         93        SEND_VAL_EX                                              '%2A'
         94        SEND_VAL_EX                                              'buddypress'
         95        DO_FCALL                                      0          
         96        ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09'
   50    97        INIT_FCALL_BY_NAME                                       'do_action'
         98        SEND_VAL_EX                                              'bp_signup_password_errors'
         99        DO_FCALL                                      0          
   51   100        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'
   53   101        INIT_FCALL_BY_NAME                                       '_e'
        102        SEND_VAL_EX                                              'Confirm+Password'
        103        SEND_VAL_EX                                              'buddypress'
        104        DO_FCALL                                      0          
        105        ECHO                                                     '+'
        106        INIT_FCALL_BY_NAME                                       '_e'
        107        SEND_VAL_EX                                              '%28%2A%29'
        108        SEND_VAL_EX                                              'buddypress'
        109        DO_FCALL                                      0          
        110        ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09'
   54   111        INIT_FCALL_BY_NAME                                       'do_action'
        112        SEND_VAL_EX                                              'bp_signup_password_confirm_errors'
        113        DO_FCALL                                      0          
   55   114        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'
   59   115        INIT_FCALL_BY_NAME                                       'do_action'
        116        SEND_VAL_EX                                              'bp_after_account_details_fields'
        117        DO_FCALL                                      0          
   60   118        ECHO                                                     '%0A%09%09%09%09'
   61   119        INIT_FCALL_BY_NAME                                       'do_action'
        120        SEND_VAL_EX                                              'bp_before_blog_details_fields'
        121        DO_FCALL                                      0          
   62   122        ECHO                                                     '%0A%0A%09%09%09%09'
   65   123        ECHO                                                     '%0A%09%09%09%09'
   66   124        INIT_FCALL_BY_NAME                                       'bp_is_active'
        125        SEND_VAL_EX                                              'xprofile'
        126        DO_FCALL                                      0  $32     
        127      > JMPZ                                                     $32, ->445
   67   128    >   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'
   69   129        INIT_FCALL_BY_NAME                                       '_e'
        130        SEND_VAL_EX                                              'Profile+Details'
        131        SEND_VAL_EX                                              'buddypress'
        132        DO_FCALL                                      0          
        133        ECHO                                                     '%3C%2Fh4%3E%0A%0A%09%09%09%09%09'
   72   134        ECHO                                                     '%09%09%09%09%09'
        135        INIT_FCALL                                               'function_exists'
        136        SEND_VAL                                                 'bp_has_profile'
        137        DO_ICALL                                         $34     
        138      > JMPZ                                                     $34, ->444
        139    >   INIT_FCALL_BY_NAME                                       'bp_has_profile'
        140        SEND_VAL_EX                                              'profile_group_id%3D1'
        141        DO_FCALL                                      0  $35     
        142      > JMPZ                                                     $35, ->444
        143    > > JMP                                                      ->441
        144    >   INIT_FCALL_BY_NAME                                       'bp_the_profile_group'
        145        DO_FCALL                                      0          
   73   146        ECHO                                                     '%0A%09%09%09%09%09'
   74   147      > JMP                                                      ->434
        148    >   INIT_FCALL_BY_NAME                                       'bp_the_profile_field'
        149        DO_FCALL                                      0          
   75   150        ECHO                                                     '%0A%09%09%09%09%09%09%3Cdiv+class%3D%22editfield%22%3E%0A%0A%09%09%09%09%09%09%09'
   78   151        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_type'
        152        DO_FCALL                                      0  $38     
        153        IS_EQUAL                                                 $38, 'textbox'
        154      > JMPZ                                                     ~39, ->187
   79   155    >   ECHO                                                     '%0A%09%09%09%09%09%09%09%09%3Clabel+for%3D%22'
   80   156        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        157        DO_FCALL                                      0          
        158        ECHO                                                     '%22%3E'
        159        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_name'
        160        DO_FCALL                                      0          
        161        ECHO                                                     '+'
        162        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_is_required'
        163        DO_FCALL                                      0  $42     
        164      > JMPZ                                                     $42, ->169
        165    >   INIT_FCALL_BY_NAME                                       '_e'
        166        SEND_VAL_EX                                              '%2A'
        167        SEND_VAL_EX                                              'buddypress'
        168        DO_FCALL                                      0          
        169    >   ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09%09%09%09'
   81   170        INIT_FCALL_BY_NAME                                       'do_action'
        171        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_input_name'
        172        DO_FCALL                                      0  $44     
        173        CONCAT                                           ~45     'bp_', $44
        174        CONCAT                                           ~46     ~45, '_errors'
        175        SEND_VAL_EX                                              ~46
        176        DO_FCALL                                      0          
   82   177        ECHO                                                     '%09%09%09%09%09%09%09%09%3Cinput+type%3D%22text%22+name%3D%22'
        178        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        179        DO_FCALL                                      0          
        180        ECHO                                                     '%22+id%3D%22'
        181        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        182        DO_FCALL                                      0          
        183        ECHO                                                     '%22+value%3D%22'
        184        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_edit_value'
        185        DO_FCALL                                      0          
        186        ECHO                                                     '%22+%2F%3E%0A%0A%09%09%09%09%09%09%09'
   85   187    >   ECHO                                                     '%0A%09%09%09%09%09%09%09'
   86   188        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_type'
        189        DO_FCALL                                      0  $51     
        190        IS_EQUAL                                                 $51, 'textarea'
        191      > JMPZ                                                     ~52, ->224
   87   192    >   ECHO                                                     '%0A%09%09%09%09%09%09%09%09%3Clabel+for%3D%22'
   88   193        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        194        DO_FCALL                                      0          
        195        ECHO                                                     '%22%3E'
        196        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_name'
        197        DO_FCALL                                      0          
        198        ECHO                                                     '+'
        199        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_is_required'
        200        DO_FCALL                                      0  $55     
        201      > JMPZ                                                     $55, ->206
        202    >   INIT_FCALL_BY_NAME                                       '_e'
        203        SEND_VAL_EX                                              '%2A'
        204        SEND_VAL_EX                                              'buddypress'
        205        DO_FCALL                                      0          
        206    >   ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09%09%09%09'
   89   207        INIT_FCALL_BY_NAME                                       'do_action'
        208        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_input_name'
        209        DO_FCALL                                      0  $57     
        210        CONCAT                                           ~58     'bp_', $57
        211        CONCAT                                           ~59     ~58, '_errors'
        212        SEND_VAL_EX                                              ~59
        213        DO_FCALL                                      0          
   90   214        ECHO                                                     '%09%09%09%09%09%09%09%09%3Ctextarea+rows%3D%225%22+cols%3D%2240%22+name%3D%22'
        215        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        216        DO_FCALL                                      0          
        217        ECHO                                                     '%22+id%3D%22'
        218        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        219        DO_FCALL                                      0          
        220        ECHO                                                     '%22%3E'
        221        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_edit_value'
        222        DO_FCALL                                      0          
        223        ECHO                                                     '%3C%2Ftextarea%3E%0A%0A%09%09%09%09%09%09%09'
   93   224    >   ECHO                                                     '%0A%09%09%09%09%09%09%09'
   94   225        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_type'
        226        DO_FCALL                                      0  $64     
        227        IS_EQUAL                                                 $64, 'selectbox'
        228      > JMPZ                                                     ~65, ->261
   95   229    >   ECHO                                                     '%0A%09%09%09%09%09%09%09%09%3Clabel+for%3D%22'
   96   230        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        231        DO_FCALL                                      0          
        232        ECHO                                                     '%22%3E'
        233        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_name'
        234        DO_FCALL                                      0          
        235        ECHO                                                     '+'
        236        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_is_required'
        237        DO_FCALL                                      0  $68     
        238      > JMPZ                                                     $68, ->243
        239    >   INIT_FCALL_BY_NAME                                       '_e'
        240        SEND_VAL_EX                                              '%2A'
        241        SEND_VAL_EX                                              'buddypress'
        242        DO_FCALL                                      0          
        243    >   ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09%09%09%09%09%09'
   97   244        INIT_FCALL_BY_NAME                                       'do_action'
        245        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_input_name'
        246        DO_FCALL                                      0  $70     
        247        CONCAT                                           ~71     'bp_', $70
        248        CONCAT                                           ~72     ~71, '_errors'
        249        SEND_VAL_EX                                              ~72
        250        DO_FCALL                                      0          
   98   251        ECHO                                                     '%09%09%09%09%09%09%09%09%3Cselect+name%3D%22'
        252        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        253        DO_FCALL                                      0          
        254        ECHO                                                     '%22+id%3D%22'
        255        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        256        DO_FCALL                                      0          
        257        ECHO                                                     '%22%3E%0A%09%09%09%09%09%09%09%09%09'
   99   258        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_options'
        259        DO_FCALL                                      0          
  100   260        ECHO                                                     '%09%09%09%09%09%09%09%09%3C%2Fselect%3E%0A%0A%09%09%09%09%09%09%09'
  103   261    >   ECHO                                                     '%0A%09%09%09%09%09%09%09'
  104   262        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_type'
        263        DO_FCALL                                      0  $77     
        264        IS_EQUAL                                                 $77, 'multiselectbox'
        265      > JMPZ                                                     ~78, ->298
  105   266    >   ECHO                                                     '%0A%09%09%09%09%09%09%09%09%3Clabel+for%3D%22'
  106   267        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_input_name'
        268        DO_FCALL                                      0          
        269        ECHO                                                     '%22%3E'
        270        INIT_FCALL_BY_NAME                                       'bp_the_profile_field_name'
        271        DO_FCALL                                      0          
        272        ECHO                                                     '+'
        273        INIT_FCALL_BY_NAME                                       'bp_get_the_profile_field_is_required'
        274        DO_FCALL                                      0  $81     
        275      > JMPZ                                                     $81, ->280
        276    >   INIT_FCALL_BY_NAME                                       '_e'
        277        SEND_VAL_EX                                              '%2A'
        278        SEND_VAL_EX                                              'buddypress'
        279        DO_FCALL               

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
155 ms | 1428 KiB | 19 Q