Skip to content

SimpleMeasurementAttribute Criterion

The SimpleMeasurementAttribute Search Criterion searches for products by the value of their measurement (single) attribute.

Arguments

  • identifier - string representing the attribute
  • value - Ibexa\Contracts\Measurement\Value\SimpleValueInterface object representing the attribute value

Example

1
2
$value = $this->measurementService->buildSimpleValue('length', 120, 'centimeter');
$criteria = new Criterion\SimpleMeasurementAttribute('width', $value);