Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/admin-views/order_modifiers/coupon-edit.php
<?php
/**
 * Coupon Edit Screen for Order Modifiers.
 *
 * This file handles the HTML form rendering for editing or creating a coupon.
 * The form includes fields for coupon name, code, discount type, amount, status, and coupon limit.
 * It also includes a nonce field for security.
 *
 * @since 5.18.0
 * @since 5.21.0 Updated the form to change how the raw amount field is handled.
 *
 * @version 5.21.0
 *
 * @var string                 $order_modifier_display_name The coupon name (display name).
 * @var string                 $order_modifier_slug         The coupon code (slug).
 * @var string                 $order_modifier_sub_type     The discount type (percentage/flat).
 * @var Value_Interface|string $order_modifier_amount       The amount.
 * @var string                 $order_modifier_status       The status of the coupon (active, inactive, draft).
 * @var int                    $order_modifier_coupon_limit The coupon limit.
 *
 * @package TEC\Tickets\Commerce\Order_Modifiers
 */

use TEC\Tickets\Commerce\Values\Value_Interface;

if ( ! empty( $order_modifier_display_name ) ) {
	$heading = __( 'Edit Coupon', 'event-tickets' );
} else {
	$heading = __( 'New Coupon', 'event-tickets' );
}

$limit_error_text = __( 'Coupon Limit must be a positive number. Use 0 or leave empty for no limit.', 'event-tickets' );

?>
<div class="wrap">
	<h1><?php echo esc_html( $heading ); ?></h1>
	<div class="form-wrap">
		<form method="post" class="tribe-validation tec-settings-order_modifier">
			<div class="tribe-settings-form-wrap">

				<?php wp_nonce_field( 'order_modifier_save_action', 'order_modifier_save_action' ); ?>

				<div class="form-field form-required">
					<label for="order_modifier_display_name">
						<?php esc_html_e( 'Coupon Name', 'event-tickets' ); ?>
					</label>
					<input
						type="text"
						name="order_modifier_display_name"
						id="order_modifier_display_name"
						maxlength="255"
						data-validation-required="true"
						data-validation-error="<?php esc_attr_e( 'Fee Name is required', 'event-tickets' ); ?>"
						value="<?php echo esc_attr( $order_modifier_display_name ?? '' ); ?>" />
				</div>

				<div class="form-field form-required">
					<label for="order_modifier_slug">
						<?php esc_html_e( 'Coupon Code', 'event-tickets' ); ?>
					</label>
					<input
						type="text"
						name="order_modifier_slug"
						id="order_modifier_slug"
						class="tribe-field"
						maxlength="255"
						data-validation-required="true"
						data-validation-error="<?php esc_attr_e( 'Coupon Code is required', 'event-tickets' ); ?>"
						value="<?php echo esc_attr( $order_modifier_slug ?? '' ); ?>" />
					<p>
						<?php esc_html_e( 'A unique code has been created for this coupon. You can override this code by replacing it with your own unique code (ex. SUMMERSAVINGS25).', 'event-tickets' ); ?>
					</p>
				</div>

				<div class="form-field form-required">
					<label for="order_modifier_sub_type">
						<?php esc_html_e( 'Discount Type', 'event-tickets' ); ?>
					</label>
					<select name="order_modifier_sub_type" id="order_modifier_sub_type">
						<option value="percent" <?php selected( $order_modifier_sub_type ?? '', 'percent' ); ?>>
							<?php esc_html_e( 'Percent Off', 'event-tickets' ); ?>
						</option>
						<option value="flat" <?php selected( $order_modifier_sub_type ?? '', 'flat' ); ?>>
							<?php esc_html_e( 'Flat', 'event-tickets' ); ?>
						</option>
					</select>
				</div>

				<div class="form-field form-required">
					<label for="order_modifier_amount">
						<?php esc_html_e( 'Amount', 'event-tickets' ); ?>
					</label>
					<input
						type="text"
						name="order_modifier_amount"
						id="order_modifier_amount"
						class="tribe-field tec_order_modifier_amount_field"
						data-validation-error="<?php esc_attr_e( 'Amount is required. A Percentage amount cannot be more than 100%.', 'event-tickets' ); ?>"
						value="<?php echo esc_attr( (string) $order_modifier_amount ); ?>" />
				</div>

				<?php $this->template( 'order_modifiers/modifier-status-dropdown', [ 'order_modifier_status' => $order_modifier_status ] ); ?>

				<div class="form-field form-required">
					<label for="order_modifier_coupon_limit">
						<?php esc_html_e( 'Coupon Limit', 'event-tickets' ); ?>
					</label>
					<input
						type="number"
						name="order_modifier_coupon_limit"
						id="order_modifier_coupon_limit"
						maxlength="15"
						class="tribe-field tec_order_modifier_amount_field"
						data-validation-is-greater-or-equal-to="0"
						data-validation-error="<?php echo esc_attr( $limit_error_text ); ?>"
						value="<?php echo esc_attr( $order_modifier_coupon_limit ?? '' ); ?>" />
					<p>
						<?php esc_html_e( 'Leave field blank to allow for unlimited coupon redemption.', 'event-tickets' ); ?>
					</p>
				</div>

				<p class="submit">
					<input
						type="submit"
						id="order_modifier_form_save"
						class="button-primary"
						name="order_modifier_form_save"
						value="<?php echo esc_attr__( 'Save Coupon', 'event-tickets' ); ?>"
					/>
				</p>
			</div>
		</form>
	</div>
</div>