You are here

public function RecipientTypeBase::isEnabled in Workbench Email 8

Same name and namespace in other branches
  1. 2.x src/Plugin/RecipientTypeBase.php \Drupal\workbench_email\Plugin\RecipientTypeBase::isEnabled()

Checks status.

Return value

bool TRUE if enabled.

Overrides RecipientTypeInterface::isEnabled

1 call to RecipientTypeBase::isEnabled()
Author::prepareRecipients in src/Plugin/RecipientType/Author.php
Returns email address(s) matching this recipient type's configuration.

File

src/Plugin/RecipientTypeBase.php, line 143

Class

RecipientTypeBase
Provides a base class for Recipient type plugins.

Namespace

Drupal\workbench_email\Plugin

Code

public function isEnabled() {
  return $this->status;
}