You are here

public function Email::setConditionOperator in Commerce Email 8

Sets the email condition operator.

Parameters

string $condition_operator: The condition operator.

Return value

$this

Overrides EmailInterface::setConditionOperator

File

src/Entity/Email.php, line 312

Class

Email
Defines the email entity class.

Namespace

Drupal\commerce_email\Entity

Code

public function setConditionOperator($condition_operator) {
  $this->conditionOperator = $condition_operator;
  return $this;
}