Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
test
/
wp-content
/
plugins
/
woocommerce
/
src
/
Admin
/
RemoteInboxNotifications
:
ProductCountRuleProcessor.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Rule processor that performs a comparison operation against the number of * products. */ namespace Automattic\WooCommerce\Admin\RemoteInboxNotifications; defined( 'ABSPATH' ) || exit; /** * Rule processor that performs a comparison operation against the number of * products. */ class ProductCountRuleProcessor implements RuleProcessorInterface { /** * The product query. * * @var WC_Product_Query */ protected $product_query; /** * Constructor. * * @param object $product_query The product query. */ public function __construct( $product_query = null ) { $this->product_query = null === $product_query ? new \WC_Product_Query( array( 'limit' => 1, 'paginate' => true, 'return' => 'ids', 'status' => array( 'publish' ), ) ) : $product_query; } /** * Performs a comparison operation against the number of products. * * @param object $rule The specific rule being processed by this rule processor. * @param object $stored_state Stored state. * * @return bool The result of the operation. */ public function process( $rule, $stored_state ) { $products = $this->product_query->get_products(); return ComparisonOperation::compare( $products->total, $rule->value, $rule->operation ); } /** * Validates the rule. * * @param object $rule The rule to validate. * * @return bool Pass/fail. */ public function validate( $rule ) { if ( ! isset( $rule->value ) ) { return false; } if ( ! isset( $rule->operation ) ) { return false; } return true; } }