%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/emergentqj/jugement/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/
Upload File :
Create Path :
Current File : /home/emergentqj/jugement/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/ecommerce/easy-digital-downloads.php

<?php
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );

if ( function_exists( 'EDD' ) ) :
	add_filter( 'rocket_cache_reject_uri', 'rocket_exclude_edd_pages' );
	add_action( 'update_option_edd_settings', 'rocket_after_update_array_options', 10, 2 );
endif;

/**
 * Exclude EDD pages from cache
 *
 * @param array $urls Array of URLs to exclude from cache.
 * @return array Updated array of URLs
 */
function rocket_exclude_edd_pages( $urls ) {
	$edd_settings = get_option( 'edd_settings' );
	if ( isset( $edd_settings['purchase_page'] ) ) {
		$checkout_urls = get_rocket_i18n_translated_post_urls( $edd_settings['purchase_page'], 'page', '(.*)' );
		$urls          = array_merge( $urls, $checkout_urls );
	}

	return $urls;
}

/**
 * Exclude EDD pages from cache on EDD activation.
 */
function rocket_activate_edd() {
	add_filter( 'rocket_cache_reject_uri', 'rocket_exclude_edd_pages' );

	// Update .htaccess file rules.
	flush_rocket_htaccess();

	// Regenerate the config file.
	rocket_generate_config_file();
}
add_action( 'activate_easy-digital-downloads/easy-digital-downloads.php', 'rocket_activate_edd', 11 );

/**
 * Remove EDD pages from cache exclusion on EDD deactivation.
 */
function rocket_deactivate_edd() {
	remove_filter( 'rocket_cache_reject_uri', 'rocket_exclude_edd_pages' );

	// Update .htaccess file rules.
	flush_rocket_htaccess();

	// Regenerate the config file.
	rocket_generate_config_file();
}
add_action( 'deactivate_easy-digital-downloads/easy-digital-downloads.php', 'rocket_deactivate_edd', 11 );

Zerion Mini Shell 1.0