Automattic\WooCommerce\Admin\RemoteSpecs\RuleProcessors
EvaluateAndGetStatus::evaluate
Evaluates the spec and returns a status.
Метод класса: EvaluateAndGetStatus{}
Хуков нет.
Возвращает
Строку. The evaluated status.
Использование
$result = EvaluateAndGetStatus::evaluate( $spec, $current_status, $stored_state, $rule_evaluator );
- $spec(массив) (обязательный)
- The spec to evaluate.
- $current_status(строка) (обязательный)
- The note's current status.
- $stored_state(объект) (обязательный)
- Stored state.
- $rule_evaluator(объект) (обязательный)
- Evaluates rules into true/false.
Код EvaluateAndGetStatus::evaluate() EvaluateAndGetStatus::evaluate WC 10.3.6
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;
}
// If the spec is an alert type and the note is unactioned, set to pending if the spec no longer applies.
if ( isset( $spec->type ) && in_array( $spec->type, array( 'error', 'update' ), true )
&& Note::E_WC_ADMIN_NOTE_UNACTIONED === $current_status
&& ! $evaluated_result ) {
return 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;
}