PHP 8.2.31
Preview: PointOfSaleOrderUtil.php Size: 1.46 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/woocommerce/src/Internal/Orders/PointOfSaleOrderUtil.php

<?php
/**
 * PointOfSaleOrderUtil class file.
 */

declare( strict_types = 1 );

namespace Automattic\WooCommerce\Internal\Orders;

use WC_Abstract_Order;

/**
 * Helper class for POS order related functionality.
 *
 * @internal Just for internal use.
 */
class PointOfSaleOrderUtil {
	/**
	 * Check if the order is a POS (Point of Sale) order.
	 *
	 * This method determines if an order was created via the POS REST API
	 * by checking the 'created_via' property of the order.
	 *
	 * @param WC_Abstract_Order $order Order instance.
	 * @return bool True if the order is a POS order, false otherwise.
	 */
	public static function is_pos_order( WC_Abstract_Order $order ): bool {
		return 'pos-rest-api' === $order->get_created_via();
	}

	/**
	 * Check if the order was paid at POS, regardless of where it was created.
	 *
	 * An order is considered paid at POS if:
	 * - It was created via the POS REST API, OR
	 * - It was paid via card terminal (_wcpay_ipp_channel = mobile_pos), OR
	 * - It was paid via cash at POS (_cash_change_amount meta present).
	 *
	 * @param WC_Abstract_Order $order Order instance.
	 * @return bool
	 *
	 * @since 10.6.0
	 */
	public static function is_order_paid_at_pos( WC_Abstract_Order $order ): bool {
		if ( self::is_pos_order( $order ) ) {
			return true;
		}

		if ( 'mobile_pos' === $order->get_meta( '_wcpay_ipp_channel' ) ) {
			return true;
		}

		if ( '' !== $order->get_meta( '_cash_change_amount' ) ) {
			return true;
		}

		return false;
	}
}

Directory Contents

Dirs: 1 × Files: 12

Name Size Perms Modified Actions
CardIcons DIR
- drwxr-xr-x 2026-05-29 02:43:21
Edit Download
3.57 KB lrw-r--r-- 2025-11-24 23:10:10
Edit Download
2.19 KB lrw-r--r-- 2025-01-21 18:53:44
Edit Download
5.50 KB lrw-r--r-- 2024-04-10 16:54:10
Edit Download
24.32 KB lrw-r--r-- 2026-03-30 17:12:24
Edit Download
4.37 KB lrw-r--r-- 2025-03-03 22:28:12
Edit Download
16.55 KB lrw-r--r-- 2026-01-19 14:46:18
Edit Download
1.58 KB lrw-r--r-- 2026-03-30 17:12:24
Edit Download
2.55 KB lrw-r--r-- 2026-01-19 14:46:18
Edit Download
4.67 KB lrw-r--r-- 2025-09-01 23:44:48
Edit Download
1.80 KB lrw-r--r-- 2026-03-30 17:12:24
Edit Download
1.46 KB lrw-r--r-- 2026-03-30 17:12:24
Edit Download
1.80 KB lrw-r--r-- 2022-08-24 02:07:06
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).