File ManagerCurrent Directory: wp-content/plugins/profile-builder/assets/misc/divi/includes/modules/registerLinux appserver-0d5e4f1e-php-cc8da225320a42ba9b7d66cba40b1f03 6.6.123+ #1 SMP PREEMPT_DYNAMIC Wed Mar 11 09:04:28 UTC 2026 x86_64Edit File: register.php <?php class WPPB_Register extends ET_Builder_Module { public $slug = 'wppb_register'; public $vb_support = 'on'; protected $module_credits = array( 'module_uri' => 'https://wordpress.org/plugins/profile-builder/', 'author' => 'Cozmoslabs', 'author_uri' => 'https://www.cozmoslabs.com/', ); public function init() { $this->name = esc_html__( 'PB Register', 'profile-builder' ); $this->settings_modal_toggles = array( 'general' => array( 'toggles' => array( 'main_content' => esc_html__( 'Form Settings', 'profile-builder' ), ), ), ); $this->advanced_fields = array( 'link_options' => false, 'background' => false, 'admin_label' => false, ); } public function get_fields() { $args = array( 'post_type' => 'page', 'posts_per_page' => -1 ); if( function_exists( 'wc_get_page_id' ) ) $args['exclude'] = wc_get_page_id( 'shop' ); $all_pages = get_posts( $args ); $pages ['default'] = 'None'; if( !empty( $all_pages ) ){ foreach ( $all_pages as $page ){ $pages [ esc_url( get_page_link( $page->ID ) ) ] = esc_html( $page->post_title ); } } $wppb_module_settings = get_option( 'wppb_module_settings', 'not_found' ); $registration_forms ['default'] = esc_html__( 'Default' , 'profile-builder' ); if ( !( ( $wppb_module_settings !== 'not_found' && ( !isset( $wppb_module_settings['wppb_multipleRegistrationForms'] ) || $wppb_module_settings['wppb_multipleRegistrationForms'] !== 'show' ) ) || $wppb_module_settings === 'not_found' ) ){ $args = array( 'post_type' => 'wppb-rf-cpt', 'posts_per_page' => -1 ); $the_query = new WP_Query( $args ); if ( $the_query->have_posts() ) { foreach ( $the_query->posts as $post ) { $registration_forms [esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $post->post_title ) )] = esc_html( $post->post_title ); } wp_reset_postdata(); } } if (!function_exists('get_editable_roles')) { require_once ABSPATH . 'wp-admin/includes/user.php'; } $user_roles ['default'] = esc_html__( 'Default' , 'profile-builder' ); $editable_roles = get_editable_roles(); foreach ($editable_roles as $key => $role) { $user_roles [$key] = $role['name']; } $fields = array( 'form_name' => array( 'label' => esc_html__( 'Form', 'profile-builder' ), 'type' => 'select', 'options' => $registration_forms, 'default' => 'default', 'option_category' => 'basic_option', 'description' => esc_html__( 'Select the desired Registration form.', 'profile-builder' ), 'toggle_slug' => 'main_content', ), 'role' => array( 'label' => esc_html__( 'Assigned Role', 'profile-builder' ), 'type' => 'select', 'options' => $user_roles, 'default' => 'default', 'option_category' => 'basic_option', 'description' => esc_html__( 'Select a Role to be assigned to users that register via this form.', 'profile-builder' ), 'toggle_slug' => 'main_content', 'show_if' => array( 'form_name' => 'default', ), ), 'toggle_automatic_login' => array( 'label' => esc_html__( 'Automatic Login', 'profile-builder' ), 'type' => 'yes_no_button', 'options' => array( 'on' => esc_html__( 'Yes', 'profile-builder'), 'off' => esc_html__( 'No', 'profile-builder'), ), 'option_category' => 'basic_option', 'description' => esc_html__( 'Automatically log in users after they register.', 'profile-builder' ), 'toggle_slug' => 'main_content', 'show_if' => array( 'form_name' => 'default', ), ), 'redirect_url' => array( 'label' => esc_html__( 'Redirect After Registration', 'profile-builder' ), 'type' => 'select', 'options' => $pages, 'default' => 'default', 'option_category' => 'basic_option', 'description' => esc_html__( 'Select a page for an After Registration Redirect.', 'profile-builder' ), 'toggle_slug' => 'main_content', 'show_if' => array( 'form_name' => 'default', ), ), 'logout_redirect_url' => array( 'label' => esc_html__( 'Redirect After Logout', 'profile-builder' ), 'type' => 'select', 'options' => $pages, 'default' => 'default', 'option_category' => 'basic_option', 'description' => esc_html__( 'Select a page for an After Logout Redirect.', 'profile-builder' ), 'toggle_slug' => 'main_content', ), ); if( defined( 'WPPB_PAID_PLUGIN_DIR' ) ) { $fields['toggle_ajax_validation'] = array( 'label' => esc_html__( 'AJAX Validation', 'profile-builder' ), 'type' => 'yes_no_button', 'options' => array( 'on' => esc_html__( 'Yes', 'profile-builder'), 'off' => esc_html__( 'No', 'profile-builder'), ), 'option_category' => 'basic_option', 'description' => esc_html__( 'Use AJAX to Validate the Register Form without reloading the page.', 'profile-builder' ), 'toggle_slug' => 'main_content', 'show_if' => array( 'form_name' => 'default', ), ); } return $fields; } public function render( $attrs, $content, $render_slug ) { if ( !is_array( $attrs ) ) { return; } include_once(WPPB_PLUGIN_DIR . '/front-end/register.php'); include_once(WPPB_PLUGIN_DIR . '/front-end/class-formbuilder.php'); $form_name = 'unspecified'; if ( array_key_exists( 'form_name', $attrs ) ) { $form_name = sanitize_text_field($attrs['form_name']); if ( $form_name === 'default' ) { $form_name = 'unspecified'; } } if ( !$form_name || $form_name === 'unspecified' ) { $atts = [ 'role' => array_key_exists( 'role', $attrs ) && $attrs['role'] !== '' ? sanitize_text_field( $attrs['role'] ) : '', 'form_name' => '', 'redirect_url' => array_key_exists( 'redirect_url', $attrs ) && $attrs['redirect_url'] !== '' ? pb_divi_parse_url( $attrs['redirect_url'] ) : '', 'logout_redirect_url' => array_key_exists( 'logout_redirect_url', $attrs ) && $attrs['logout_redirect_url'] !== '' ? pb_divi_parse_url( $attrs['logout_redirect_url'] ) : '', 'ajax' => array_key_exists( 'toggle_ajax_validation', $attrs ) && $attrs['toggle_ajax_validation'] === 'on' ? 'true' : false, 'automatic_login' => array_key_exists( 'toggle_automatic_login', $attrs ) && $attrs['toggle_automatic_login'] ? 'yes' : '', ]; } else { $atts = [ 'role' => '', 'form_name' => $form_name, 'redirect_url' => '', 'logout_redirect_url' => array_key_exists( 'logout_redirect_url', $attrs ) && $attrs['logout_redirect_url'] !== '' ? pb_divi_parse_url( $attrs['logout_redirect_url'] ) : '', 'ajax' => false, 'automatic_login' => '', ]; } return '<div class="wppb-divi-front-end-container">' . wppb_front_end_register( $atts ) . '</div>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } } new WPPB_Register; Upload File Directory Listing NameTypeSizeActions.. (Parent Directory)Dirregister.jsxFile1.44 KB Rename | Delete | Editregister.phpFile8.86 KB Rename | Delete | Editstyle.cssFile4.76 KB Rename | Delete | Edit