File: /var/www/html/ielts-store/wp-content/plugins/automatewoo/includes/Frontend.php
<?php
// phpcs:ignoreFile
namespace AutomateWoo;
/**
 * Checkout hooks class.
 *
 * Only loads on the checkout page.
 *
 * @since 4.0
 */
class Frontend {
	/**
	 * @return string
	 */
	static function get_communication_page_legal_text() {
		$text = Options::communication_page_legal_text();
		if ( function_exists( 'wc_replace_policy_page_link_placeholders' ) ) {
			$text = wc_replace_policy_page_link_placeholders( $text );
		}
		$find_replace = [
			'[terms]' => '',
			'[privacy_policy]' => '',
		];
		$text = str_replace( array_keys( $find_replace ), array_values( $find_replace ), $text );
		return apply_filters( 'automatewoo/communication_page/legal_text', $text );
	}
	/**
	 * @return Customer|false
	 */
	static function get_current_customer() {
		if ( is_user_logged_in() ) {
			return Customer_Factory::get_by_user_id( get_current_user_id() );
		}
		return false;
	}
	/**
	 * If $customer is set the customer key will be added to the link.
	 *
	 * @param Customer|false $customer
	 * @param bool|string $intent
	 * @return bool|string
	 */
	static function get_communication_page_permalink( $customer = false, $intent = false ) {
		if ( ! $url = get_permalink( Options::communication_page_id() ) ) {
			return false;
		}
		$args = [];
		if ( $customer ) {
			$args['customer_key'] = urlencode( $customer->get_key() );
		}
		if ( $intent ) {
			$args['intent'] = urlencode( $intent );
		}
		return add_query_arg( $args, $url );
	}
	/**
	 * Only shows when using optin mode
	 */
	static function output_signup_optin_checkbox() {
		if ( ! Options::optin_enabled() || ! Options::account_optin_enabled() ) {
			return;
		}
		aw_get_template( 'optin-checkbox.php' );
	}
	/**
	 * Only shows when using optin mode
	 */
	static function output_checkout_optin_checkbox() {
		if ( ! Options::optin_enabled() || ! Options::checkout_optin_enabled() ) {
			return;
		}
		$customer = Frontend::get_current_customer();
		if ( $customer && $customer->get_is_subscribed() ) {
			return; // customer already opted in
		}
		aw_get_template( 'optin-checkbox.php' );
	}
	/**
	 * @param int $order_id
	 */
	static function process_checkout_optin( $order_id ) {
		if ( ! Options::optin_enabled() || ! Options::checkout_optin_enabled() ) {
			return;
		}
		if ( ! $order = wc_get_order( $order_id ) ) {
			return;
		}
		if ( ! isset( $_POST[ 'automatewoo_optin' ] ) ) {
			return;
		}
		$customer = Customer_Factory::get_by_order( $order );
		$customer->opt_in();
	}
	/**
	 * @param int $user_id
	 */
	static function process_account_signup_optin( $user_id ) {
		if ( ! Options::optin_enabled() || ! Options::account_optin_enabled() ) {
			return;
		}
		if ( ! isset( $_POST['woocommerce-register-nonce'] ) ) {
			return; // signup not from registration form
		}
		if ( isset( $_POST[ 'automatewoo_optin' ] ) ) {
			$customer = Customer_Factory::get_by_user_id( $user_id );
			$customer->opt_in();
		}
	}
}