You are here

public function EasyEmail::removeCCAddress in Easy Email 8

Same name and namespace in other branches
  1. 2.0.x src/Entity/EasyEmail.php \Drupal\easy_email\Entity\EasyEmail::removeCCAddress()

@inheritDoc

Overrides EasyEmailInterface::removeCCAddress

File

src/Entity/EasyEmail.php, line 403

Class

EasyEmail
Defines the Email entity.

Namespace

Drupal\easy_email\Entity

Code

public function removeCCAddress($address) {
  if ($this
    ->hasField('cc_address')) {
    return $this
      ->removeTextValueFromList($address, 'cc_address');
  }
  return $this;
}