You are here

public function EasyEmail::removeAttachmentPath in Easy Email 8

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

@inheritDoc

Overrides EasyEmailInterface::removeAttachmentPath

File

src/Entity/EasyEmail.php, line 738

Class

EasyEmail
Defines the Email entity.

Namespace

Drupal\easy_email\Entity

Code

public function removeAttachmentPath($path) {
  if ($this
    ->hasField('attachment_path')) {
    return $this
      ->removeTextValueFromList($path, 'attachment_path');
  }
  return $this;
}