Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jsarnowski/wp-simple-pay-pro / core / class-cache-helper.php
Size: Mime:
<?php
/**
 * Cache helper
 *
 * @package SimplePay\Core
 * @copyright Copyright (c) 2020, Sandhills Development, LLC
 * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since 3.0.0
 */

namespace SimplePay\Core;

/**
 * Cache_Helper class
 *
 * @since 3.0.0
 */
class Cache_Helper {

	/**
	 * Hooks in to WordPress.
	 *
	 * @since 3.0.0
	 */
	public function __construct() {
		add_action( 'init', array( $this, 'stop_caching' ), 0 );
	}

	/**
	 * Sets nocache headers for specific pages.
	 *
	 * @since 3.0.0
	 */
	public function stop_caching() {
		/**
		 * Filters the page slugs to set nocache headers.
		 *
		 * @since 3.0.0
		 *
		 * @param array $page_slugs Page slugs.
		 */
		$excluded_uris = apply_filters(
			'simpay_cache_exclusion_uris',
			array(
				'payment-confirmation',
				'payment-failed',
			)
		);

		if ( is_array( $excluded_uris ) && ! empty( $excluded_uris ) ) {
			foreach ( $excluded_uris as $uri ) {
				if ( stristr( trailingslashit( $_SERVER['REQUEST_URI'] ), $uri ) ) {
					$this->set_nocache();
				}
			}
		}
	}

	/**
	 * Sets the nocache constants to true.
	 *
	 * @since 3.0.0
	 */
	public function set_nocache() {
		if ( ! defined( 'DONOTCACHEPAGE' ) ) {
			define( 'DONOTCACHEPAGE', true );
		}

		if ( ! defined( 'DONOTCACHEOBJECT' ) ) {
			define( 'DONOTCACHEOBJECT', true );
		}

		if ( ! defined( 'DONOTCACHEDB' ) ) {
			define( 'DONOTCACHEDB', true );
		}

		nocache_headers();
	}
}