File: /var/www/html/ielts-store/wp-content/plugins/automatewoo/includes/Rules/Order_Shipping_Method.php
<?php
// phpcs:ignoreFile
namespace AutomateWoo\Rules;
use AutomateWoo\Compat;
defined( 'ABSPATH' ) || exit;
/**
 * @class Order_Shipping_Method
 */
class Order_Shipping_Method extends Preloaded_Select_Rule_Abstract {
	public $data_item = 'order';
	public $is_multi = true;
	function init() {
		parent::init();
		$this->title = __( 'Order - Shipping Method', 'automatewoo' );
	}
	/**
	 * @return array
	 */
	function load_select_choices() {
		$choices = [];
		foreach ( WC()->shipping()->get_shipping_methods() as $method_id => $method ) {
			$choices[ $method_id ] = $method->get_method_title();
		}
		return $choices;
	}
	/**
	 * @param $order \WC_Order
	 * @param $compare
	 * @param $value
	 * @return bool
	 */
	function validate( $order, $compare, $value ) {
		$methods = [];
		foreach( $order->get_shipping_methods() as $shipping_line_item ) {
			$methods[] = Compat\Order_Item::get_shipping_method_id( $shipping_line_item, true );
		}
		return $this->validate_select( $methods, $compare, $value );
	}
}