PHP 8.2.31
Preview: EvaluateAndGetStatus.php Size: 1.52 KB
/home/nshryvcy/himaltourism.com/wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/EvaluateAndGetStatus.php

<?php
/**
 * Evaluates the spec and returns a status.
 */

namespace Automattic\WooCommerce\Admin\RemoteInboxNotifications;

defined( 'ABSPATH' ) || exit;

use \Automattic\WooCommerce\Admin\Notes\Note;

/**
 * Evaluates the spec and returns a status.
 */
class EvaluateAndGetStatus {
	/**
	 * Evaluates the spec and returns a status.
	 *
	 * @param array  $spec The spec to evaluate.
	 * @param string $current_status The note's current status.
	 * @param object $stored_state Stored state.
	 * @param object $rule_evaluator Evaluates rules into true/false.
	 *
	 * @return string The evaluated status.
	 */
	public static function evaluate( $spec, $current_status, $stored_state, $rule_evaluator ) {
		// No rules should leave the note alone.
		if ( ! isset( $spec->rules ) ) {
			return $current_status;
		}

		$evaluated_result = $rule_evaluator->evaluate(
			$spec->rules,
			$stored_state,
			array(
				'slug'   => $spec->slug,
				'source' => 'remote-inbox-notifications',
			)
		);

		// Pending notes should be the spec status if the spec passes,
		// left alone otherwise.
		if ( Note::E_WC_ADMIN_NOTE_PENDING === $current_status ) {
			return $evaluated_result
				? $spec->status
				: Note::E_WC_ADMIN_NOTE_PENDING;
		}

		// When allow_redisplay isn't set, just leave the note alone.
		if ( ! isset( $spec->allow_redisplay ) || ! $spec->allow_redisplay ) {
			return $current_status;
		}

		// allow_redisplay is set, unaction the note if eval to true.
		return $evaluated_result
			? Note::E_WC_ADMIN_NOTE_UNACTIONED
			: $current_status;
	}
}

Directory Contents

Dirs: 1 × Files: 34

Name Size Perms Modified Actions
- drwxr-xr-x 2026-03-03 06:10:19
Edit Download
1.58 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.17 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.13 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
5.20 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.52 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.73 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
689 B lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.97 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.11 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.29 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.21 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.38 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
2.22 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.22 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
703 B lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.39 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
775 B lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.48 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.75 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.48 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.26 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.26 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
6.13 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
2.21 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
657 B lrw-r--r-- 2026-03-03 06:10:19
Edit Download
4.60 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.22 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
3.63 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.76 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
788 B lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.98 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
503 B lrw-r--r-- 2026-03-03 06:10:19
Edit Download
1.60 KB lrw-r--r-- 2026-03-03 06:10:19
Edit Download
881 B lrw-r--r-- 2026-03-03 06:10:19
Edit Download

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