Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/Tickets/Commerce/Traits/Has_Mode.php
<?php

namespace TEC\Tickets\Commerce\Traits;

/**
 * Trait Has_Mode.
 *
 * @since 5.1.9
 *
 * @package TEC\Tickets\Commerce\Traits
 */
trait Has_Mode {

	/**
	 * The current working mode: live or sandbox.
	 *
	 * @since 5.1.9
	 *
	 * @var string
	 */
	protected $mode;

	/**
	 * Valid modes.
	 *
	 * @since 5.1.9
	 *
	 * @var array
	 */
	protected $valid_modes = [
		'sandbox', // Default.
		'live',
	];

	/**
	 * Sets the mode for the Merchant for handling operations.
	 *
	 * @since 5.1.9
	 *
	 * @param string $mode
	 *
	 * @return $this
	 */
	public function set_mode( $mode ) {
		if ( ! in_array( $mode, $this->valid_modes, true ) ) {
			$mode = reset( $this->valid_modes );
		}

		$this->mode = $mode;

		return $this;
	}

	/**
	 * Gets the mode for Merchant for handling operations.
	 *
	 * @since 5.1.9
	 *
	 * @return string Which mode we are using the Merchant.
	 */
	public function get_mode() {
		if ( null === $this->mode ) {
			$this->set_mode( tec_tickets_commerce_is_sandbox_mode() ? 'sandbox' : 'live' );
		}

		return $this->mode;
	}

	/**
	 * Determines if we are using sandbox mode.
	 *
	 * @since 5.1.9
	 *
	 * @return bool
	 */
	public function is_sandbox() {
		return 'sandbox' === $this->get_mode();
	}
}