PATH:
home
/
lab2454c
/
archswipe.com
/
wp-content
/
plugins
/
user-registration-pro
/
templates
/
pro
<?php /** * User Registration Pro Popup * * Shows user registration popup form * * @author WPEverest * @package UserRegistrationPro/Templates * @version 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } $popup_title = $popup_content->popup_title; $popup_type = $popup_content->popup_type; $popup_status = $popup_content->popup_status; $popup_header = $popup_content->popup_header; $popup_footer = $popup_content->popup_footer; $popup_size = $popup_content->popup_size; $popup_size_class = ''; if ( 'large' === $popup_size ) { $popup_size_class = 'user-registration-modal__content--lg'; } elseif ( 'extra_large' === $popup_size ) { $popup_size_class = 'user-registration-modal__content--xl'; } if ( isset( $attributes['type'] ) && 'button' === $attributes['type'] ) { $display = 'display:none;'; ?> <button class="user-registration-modal-link user-registration-modal-link-<?php echo esc_attr( $popup_id ); ?> user-registration-popup-button "> <?php echo isset( $attributes['button_text'] ) ? sprintf( /* translators: %s - Popup botton text from shortcode atts */ __( '%s', 'user-registration' ), $attributes['button_text'] ) : sprintf( /* translators: $s - Popup botton text from popup title. */ __( 'Open %s', 'user-registration' ), $popup_title ); ?> </button> <?php } ?> <div class="user-registration-modal user-registration-modal-<?php echo esc_attr( $popup_id ); ?>" style="<?php echo esc_attr( $display ); ?>"> <div class="user-registration-modal__backdrop"></div> <div class="user-registration-modal__content <?php echo esc_attr( $popup_size_class ); ?>"> <?php if ( '' !== $popup_header ) { ?> <div class="user-registration-modal__header"> <h4 class="user-registration-modal__title"><?php echo wp_kses_post( $popup_header ); ?></h4> <span class="user-registration-modal__close-icon"></span> </div> <?php } ?> <div class="user-registration-modal__body"> <?php if ( 'registration' === $popup_type ) { echo do_shortcode( '[user_registration_form id="' . $popup_content->form . '"]' ); } else { echo do_shortcode( '[user_registration_login]' ); } ?> </div> <?php if ( '' !== $popup_header ) { ?> <div class="user-registration-modal__footer"> <p><?php echo wp_kses_post( $popup_footer ); ?></p> </div> <?php } ?> </div> </div>
[-] popup-registration.php
[edit]
[+]
..
[-] dashboard.php
[edit]
[-] .htaccess
[edit]
[-] user-registration-pro-view-user.php
[edit]