You are here

public function OrderCustomer::evaluate in Commerce Core 8.2

Evaluates the condition.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity.

Return value

bool TRUE if the condition has been met, FALSE otherwise.

Overrides ConditionInterface::evaluate

File

modules/order/src/Plugin/Commerce/Condition/OrderCustomer.php, line 127

Class

OrderCustomer
Provides the customer condition for orders.

Namespace

Drupal\commerce_order\Plugin\Commerce\Condition

Code

public function evaluate(EntityInterface $entity) {
  $this
    ->assertEntity($entity);
  assert($entity instanceof OrderInterface);
  return in_array($entity
    ->getCustomer()
    ->uuid(), $this->configuration['entities'], TRUE);
}