STRATO-apps/wordpress_03/app/wp-content/plugins/paid-memberships-pro/includes/scripts.php

SHA-256: d36bb91700e04f436b5f827f886163847c94603c67c27e9ab8147e54f8e25356
<?php
/**
 * Enqueue frontend JavaScript and CSS
 */
function pmpro_enqueue_scripts() {
	global $pmpro_level, $pmpro_pages;

	// Load the base stylesheet.
	wp_enqueue_style( 'pmpro_frontend_base', plugins_url( 'css/frontend/base.css', dirname(__FILE__) ), array(), PMPRO_VERSION, 'all' );

	// Load the style variation stylesheet.
	$pmpro_style_variation = get_option( 'pmpro_style_variation' );
	$pmpro_style_variation = ! empty( $pmpro_style_variation ) ? $pmpro_style_variation : 'variation_1';

	if ( $pmpro_style_variation !== 'variation_minimal' ) {
		wp_enqueue_style( 'pmpro_frontend_' . esc_attr( $pmpro_style_variation ), plugins_url( 'css/frontend/' . esc_attr( $pmpro_style_variation ) . '.css', dirname(__FILE__) ), array(), PMPRO_VERSION, 'all' );
	}

	// Load the base RTL stylesheet.
	if ( is_rtl() ) {
		wp_enqueue_style( 'pmpro_frontend_base_rtl', plugins_url( 'css/frontend/base-rtl.css', dirname(__FILE__) ), array(), PMPRO_VERSION, 'screen' );
	}

	// Checkout page JS
	if ( pmpro_is_checkout() ) {
		wp_register_script( 'pmpro_checkout',
							plugins_url( 'js/pmpro-checkout.js', dirname(__FILE__) ),
							array( 'jquery' ),
							PMPRO_VERSION );

		wp_localize_script(
			'pmpro_checkout',
			'pmpro',
			array(
				'ajaxurl' => admin_url( 'admin-ajax.php' ),
				'ajax_timeout' => apply_filters( 'pmpro_ajax_timeout', 5000, 'applydiscountcode' ),
				'show_discount_code' => pmpro_show_discount_code(),
				'discount_code_passed_in' => !empty( $_REQUEST['pmpro_discount_code'] ) && !empty( $_REQUEST['discount_code'] ),
				'sensitiveCheckoutRequestVars' => pmpro_get_sensitive_checkout_request_vars(),
				'update_nonce' => apply_filters( 'pmpro_update_nonce_at_checkout', false ),
				'hide_password_text' =>  __( 'Hide Password', 'paid-memberships-pro' ),
				'show_password_text' =>  __( 'Show Password', 'paid-memberships-pro' ),
			)
		);
		wp_enqueue_script( 'pmpro_checkout' );
	}

	// Change Password page JS
	$is_change_pass_page = ! empty( $pmpro_pages['member_profile_edit'] )
							&& is_page( $pmpro_pages['member_profile_edit'] )
							&& ! empty( $_REQUEST['view'] )
							&& $_REQUEST['view'] === 'change-password';
	$is_reset_pass_page = ! empty( $pmpro_pages['login'] )
							&& is_page( $pmpro_pages['login'] )
							&& ! empty( $_REQUEST['action'] )
							&& $_REQUEST['action'] === 'rp';
		
	if ( $is_change_pass_page || $is_reset_pass_page ) {
		wp_register_script( 'pmpro_login',
							plugins_url( 'js/pmpro-login.js', dirname(__FILE__) ),
							array( 'jquery', 'password-strength-meter' ),
							PMPRO_VERSION );

		/**
		 * Filter to allow weak passwords on the
		 * change password and reset password forms.
		 * At this time, this only disables the JS check on the frontend.
		 * There is no backend check for weak passwords on those forms.
		 *
		 * @since 2.3.3
		 *
		 * @param bool $allow_weak_passwords    Whether to allow weak passwords.
		 */
		$allow_weak_passwords = apply_filters( 'pmpro_allow_weak_passwords', false );

		wp_localize_script(
			'pmpro_login',
			'pmpro',
			array(
				'pmpro_login_page' => 'changepassword',
				'strength_indicator_text' => __( 'Strength Indicator', 'paid-memberships-pro' ),
				'allow_weak_passwords' => $allow_weak_passwords,
				'hide_password_text' =>  __( 'Hide Password', 'paid-memberships-pro' ),
				'show_password_text' =>  __( 'Show Password', 'paid-memberships-pro' )
			)
		);
		wp_enqueue_script( 'pmpro_login' );
	}

	// Enqueue select2 on front end and user profiles
	if( pmpro_is_checkout() || 
		! empty( $_REQUEST['pmpro_level'] ) ||
		! empty( $pmpro_level ) ||
		( class_exists("Theme_My_Login") && method_exists('Theme_My_Login', 'is_tml_page') && Theme_My_Login::is_tml_page("profile") ) ||
		( isset( $pmpro_pages['member_profile_edit'] ) && is_page( $pmpro_pages['member_profile_edit'] ) ) ) {
		wp_enqueue_style( 'select2', plugins_url('css/select2.min.css', dirname(__FILE__)), '', '4.1.0-beta.0', 'screen' );
		wp_enqueue_script( 'select2', plugins_url('js/select2.min.js', dirname(__FILE__)), array( 'jquery' ), '4.1.0-beta.0' );
	}
}
add_action( 'wp_enqueue_scripts', 'pmpro_enqueue_scripts' );

/**
 * Enqueue admin JavaScript and CSS
 */
function pmpro_admin_enqueue_scripts() {
    // Enqueue Select2.  
    wp_register_script( 'select2',
                        plugins_url( 'js/select2.min.js', dirname(__FILE__) ),
                        array( 'jquery', 'jquery-ui-sortable' ),
                        '4.0.3' );
    wp_enqueue_style( 'select2', plugins_url('css/select2.min.css', dirname(__FILE__)), '', '4.0.3', 'screen' );
    wp_enqueue_script( 'select2' );


    if ( ( isset( $_REQUEST['page'] ) && $_REQUEST['page'] == 'pmpro-wizard' ) && ( isset( $_REQUEST['step'] ) && $_REQUEST['step'] == 'done' ) ) {
        wp_register_script( 'pmpro_confetti', plugins_url( 'js/pmpro-confetti.js', __DIR__ ), [
                'jquery',
            ], PMPRO_VERSION );

        wp_enqueue_script( 'pmpro_confetti' );
    }
   
	$all_levels = pmpro_getAllLevels( true, true );
	$all_level_values_and_labels = array();
	$all_levels_formatted_text = array();

    // Enqueue pmpro-admin.js.
    wp_register_script( 'pmpro_admin',
                        plugins_url( 'js/pmpro-admin.js', dirname(__FILE__) ),
                        array( 'jquery', 'jquery-ui-sortable', 'select2' ),
                        PMPRO_VERSION );

    $all_levels = pmpro_getAllLevels( true, true );
    $all_level_values_and_labels = array();
    foreach( $all_levels as $level ) {
        $all_level_values_and_labels[] = array( 'value' => $level->id, 'label' => $level->name );
		$level->formatted_price = trim( pmpro_no_quotes( pmpro_getLevelCost( $level, true, true ) ) );
        $level->formatted_expiration = trim( pmpro_no_quotes( pmpro_getLevelExpiration( $level ) ) );
		$level->formatted_description = apply_filters( 'pmpro_level_description', $level->description, $level );
        $all_levels_formatted_text[$level->id] = $level;
    }
    // Get HTML for empty field group.
    ob_start();
    pmpro_get_field_group_html();
    $empty_field_group_html = ob_get_clean();
    // Get HTML for empty field.
    ob_start();
    pmpro_get_field_html();
    $empty_field_html = ob_get_clean();

	wp_localize_script(
		'pmpro_admin',
		'pmpro',
		array(
			'all_levels' => $all_levels,
			'all_levels_formatted_text' => $all_levels_formatted_text,
			'all_level_values_and_labels' => $all_level_values_and_labels,
			'checkout_url' => pmpro_url( 'checkout' ),
			'user_fields_blank_group' => $empty_field_group_html,
			'user_fields_blank_field' => $empty_field_html,
			// We want the core WP translation so we can check for it in JS.
			'plugin_updated_successfully_text' => __( 'Plugin updated successfully.', 'paid-memberships-pro' ),
		)
	);
	wp_enqueue_script( 'pmpro_admin' );

    // Enqueue styles.
	// Figure out which admin.css to load.
	if ( file_exists( get_stylesheet_directory() . '/paid-memberships-pro/css/admin.css' ) ) {
		$admin_css = get_stylesheet_directory_uri() . '/paid-memberships-pro/css/admin.css';
	} elseif ( file_exists( get_template_directory() . '/paid-memberships-pro/admin.css' ) ) {
		$admin_css = get_template_directory_uri() . '/paid-memberships-pro/admin.css';
	} else {
		$admin_css = plugins_url( 'css/admin.css', __DIR__ );
	}
    
    // Figure out which admin-rtl.css to load if applicable.
    if ( file_exists( get_stylesheet_directory() . '/paid-memberships-pro/css/admin-rtl.css' ) ) {
		$admin_css_rtl = get_stylesheet_directory_uri() . '/paid-memberships-pro/css/admin-rtl.css';
	} elseif( file_exists( get_template_directory() . '/paid-memberships-pro/css/admin-rtl.css' ) ) {
		$admin_css_rtl = get_template_directory_uri() . '/paid-memberships-pro/css/admin-rtl.css';
	} else {
		$admin_css_rtl = plugins_url( 'css/admin-rtl.css', __DIR__ );
	}        

	wp_register_style( 'pmpro_admin', $admin_css, [], PMPRO_VERSION, 'screen' );
	wp_register_style( 'pmpro_admin_rtl', $admin_css_rtl, [], PMPRO_VERSION, 'screen' );

	wp_enqueue_style( 'pmpro_admin' );

	if ( is_rtl() ) {
		wp_enqueue_style( 'pmpro_admin_rtl' );
	}
}
add_action( 'admin_enqueue_scripts', 'pmpro_admin_enqueue_scripts' );