You are here

public function Email::getConditionOperator in Commerce Email 8

Gets the email condition operator.

Return value

string The condition operator. Possible values: AND, OR.

Overrides EmailInterface::getConditionOperator

1 call to Email::getConditionOperator()
Email::applies in src/Entity/Email.php
Checks whether the email applies to the given entity.

File

src/Entity/Email.php, line 305

Class

Email
Defines the email entity class.

Namespace

Drupal\commerce_email\Entity

Code

public function getConditionOperator() {
  return $this->conditionOperator;
}