ECA content: the condition to compare field values doesn't work correctly with boolean fields

Created on 12 February 2025, about 2 months ago

Problem/Motivation

When comparing a boolean field (e.g. the field in_draft in webform submissions) with something (usually "0" or "1"), that always fails because \Drupal\eca_content\Plugin\ECA\Condition\EntityFieldValue::getFieldValues always returns an empty value for boolean fields.

The reason for that is that the property is a \Drupal\Core\TypedData\Plugin\DataType\BooleanData and that return a boolean which gets casted to string with this:

if ($property instanceof PrimitiveInterface) {
  $values[] = (string) $property->getValue();
}

Proposed resolution

For boolean data, let's cats to integer first and then cast to string.

🐛 Bug report
Status

Active

Version

2.1

Component

Code

Created by

🇩🇪Germany jurgenhaas Gottmadingen

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024