interface EmailInterface in Commerce Email 8
@todo Add CC and BCC (and support multiple). @todo Support a plain-text version of the body?
Hierarchy
- interface \Drupal\Core\Entity\EntityInterface; interface \Drupal\Core\Config\Entity\ThirdPartySettingsInterface; interface \Drupal\Core\Entity\SynchronizableInterface
- interface \Drupal\Core\Config\Entity\ConfigEntityInterface
- interface \Drupal\commerce_email\Entity\EmailInterface
- interface \Drupal\Core\Config\Entity\ConfigEntityInterface
Expanded class hierarchy of EmailInterface
All classes that implement EmailInterface
2 files declare their use of EmailInterface
File
- src/
Entity/ EmailInterface.php, line 12
Namespace
Drupal\commerce_email\EntityView source
interface EmailInterface extends ConfigEntityInterface {
/**
* Gets the email event.
*
* @return \Drupal\commerce_email\Plugin\Commerce\EmailEvent\EmailEventInterface
* The email event.
*/
public function getEvent();
/**
* Gets the email event ID.
*
* @return string
* The email event ID.
*/
public function getEventId();
/**
* Sets the email event ID.
*
* @param string $event_id
* The email event ID.
*
* @return $this
*/
public function setEventId($event_id);
/**
* Gets the target entity type ID.
*
* This is the entity type for which the email will be built.
* For example, "commerce_order".
*
* @return string
* The target entity type ID.
*/
public function getTargetEntityTypeId();
/**
* Sets the target entity type ID.
*
* @param string $entity_type_id
* The target entity type ID.
*
* @return $this
*/
public function setTargetEntityTypeId($entity_type_id);
/**
* Gets the "from" address.
*
* @return string
* The "from" address.
*/
public function getFrom();
/**
* Sets the "from" address.
*
* @param string $from
* The "from" address.
*
* @return $this
*/
public function setFrom($from);
/**
* Gets the "to" address.
*
* @return string
* The "to" address.
*/
public function getTo();
/**
* Sets the "to" address.
*
* @param string $to
* The "to" address.
*
* @return $this
*/
public function setTo($to);
/**
* Gets the "CC" address.
*
* @return string
* The "CC" address.
*/
public function getCc();
/**
* Sets the "CC" address.
*
* @param string $cc
* The "CC" address.
*
* @return $this
*/
public function setCc($cc);
/**
* Gets the "BCC" address.
*
* @return string
* The "BCC" address.
*/
public function getBcc();
/**
* Sets the "BCC" address.
*
* @param string $bcc
* The "BCC" address.
*
* @return $this
*/
public function setBcc($bcc);
/**
* Gets the subject.
*
* @return string
* The subject.
*/
public function getSubject();
/**
* Sets the subject.
*
* @param string $subject
* The subject.
*
* @return $this
*/
public function setSubject($subject);
/**
* Gets the body.
*
* @return string
* The body.
*/
public function getBody();
/**
* Sets the body.
*
* @param string $body
* The body.
*
* @return $this
*/
public function setBody($body);
/**
* Gets the email conditions.
*
* @return \Drupal\commerce\Plugin\Commerce\Condition\ConditionInterface[]
* The email conditions.
*/
public function getConditions();
/**
* Gets the email condition operator.
*
* @return string
* The condition operator. Possible values: AND, OR.
*/
public function getConditionOperator();
/**
* Sets the email condition operator.
*
* @param string $condition_operator
* The condition operator.
*
* @return $this
*/
public function setConditionOperator($condition_operator);
/**
* Checks whether the email applies to the given entity.
*
* Ensures that the conditions pass.
*
* @param \Drupal\Core\Entity\ContentEntityInterface $entity
* The entity.
*
* @return bool
* TRUE if email applies, FALSE otherwise.
*/
public function applies(ContentEntityInterface $entity);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AccessibleInterface:: |
public | function | Checks data value access. | 9 |
CacheableDependencyInterface:: |
public | function | The cache contexts associated with this object. | 34 |
CacheableDependencyInterface:: |
public | function | The maximum age for which this object may be cached. | 34 |
CacheableDependencyInterface:: |
public | function | The cache tags associated with this object. | 27 |
ConfigEntityInterface:: |
public | function | Calculates dependencies and stores them in the dependency property. | 2 |
ConfigEntityInterface:: |
public | function | Disables the configuration entity. | 2 |
ConfigEntityInterface:: |
public | function | Enables the configuration entity. | 2 |
ConfigEntityInterface:: |
public | function | Returns the value of a property. | 2 |
ConfigEntityInterface:: |
public | function | Gets the configuration dependencies. | 2 |
ConfigEntityInterface:: |
public | function | Gets whether on not the data is trusted. | 2 |
ConfigEntityInterface:: |
public | function | Checks whether this entity is installable. | 2 |
ConfigEntityInterface:: |
public | function | Returns whether this entity is being changed during the uninstall process. | 2 |
ConfigEntityInterface:: |
public | function | Informs the entity that entities it depends on will be deleted. | 2 |
ConfigEntityInterface:: |
public | function | Sets the value of a property. | 2 |
ConfigEntityInterface:: |
public | function | Sets the status of the configuration entity. | 2 |
ConfigEntityInterface:: |
public | function | Returns whether the configuration entity is enabled. | 2 |
ConfigEntityInterface:: |
public | function | Sets that the data should be trusted. | 2 |
EmailInterface:: |
public | function | Checks whether the email applies to the given entity. | 1 |
EmailInterface:: |
public | function | Gets the "BCC" address. | 1 |
EmailInterface:: |
public | function | Gets the body. | 1 |
EmailInterface:: |
public | function | Gets the "CC" address. | 1 |
EmailInterface:: |
public | function | Gets the email condition operator. | 1 |
EmailInterface:: |
public | function | Gets the email conditions. | 1 |
EmailInterface:: |
public | function | Gets the email event. | 1 |
EmailInterface:: |
public | function | Gets the email event ID. | 1 |
EmailInterface:: |
public | function | Gets the "from" address. | 1 |
EmailInterface:: |
public | function | Gets the subject. | 1 |
EmailInterface:: |
public | function | Gets the target entity type ID. | 1 |
EmailInterface:: |
public | function | Gets the "to" address. | 1 |
EmailInterface:: |
public | function | Sets the "BCC" address. | 1 |
EmailInterface:: |
public | function | Sets the body. | 1 |
EmailInterface:: |
public | function | Sets the "CC" address. | 1 |
EmailInterface:: |
public | function | Sets the email condition operator. | 1 |
EmailInterface:: |
public | function | Sets the email event ID. | 1 |
EmailInterface:: |
public | function | Sets the "from" address. | 1 |
EmailInterface:: |
public | function | Sets the subject. | 1 |
EmailInterface:: |
public | function | Sets the target entity type ID. | 1 |
EmailInterface:: |
public | function | Sets the "to" address. | 1 |
EntityInterface:: |
public | function | Gets the bundle of the entity. | 2 |
EntityInterface:: |
public static | function | Constructs a new entity object, without permanently saving it. | 2 |
EntityInterface:: |
public | function | Creates a duplicate of the entity. | 2 |
EntityInterface:: |
public | function | Deletes an entity permanently. | 2 |
EntityInterface:: |
public | function | Enforces an entity to be new. | 2 |
EntityInterface:: |
public | function | Returns the cache tags that should be used to invalidate caches. | 2 |
EntityInterface:: |
public | function | Gets the key that is used to store configuration dependencies. | 2 |
EntityInterface:: |
public | function | Gets the configuration dependency name. | 2 |
EntityInterface:: |
public | function | Gets the configuration target identifier for the entity. | 2 |
EntityInterface:: |
public | function | Gets the entity type definition. | 2 |
EntityInterface:: |
public | function | Gets the ID of the type of the entity. | 2 |
EntityInterface:: |
public | function | Gets the original ID. | 2 |
EntityInterface:: |
public | function | Gets a typed data object for this entity object. | 2 |
EntityInterface:: |
public | function | Indicates if a link template exists for a given key. | 2 |
EntityInterface:: |
public | function | Gets the identifier. | 2 |
EntityInterface:: |
public | function | Determines whether the entity is new. | 2 |
EntityInterface:: |
public | function | Gets the label of the entity. | 2 |
EntityInterface:: |
public | function | Gets the language of the entity. | 2 |
EntityInterface:: |
public | function | Deprecated way of generating a link to the entity. See toLink(). | 2 |
EntityInterface:: |
public static | function | Loads an entity. | 2 |
EntityInterface:: |
public static | function | Loads one or more entities. | 2 |
EntityInterface:: |
public | function | Acts on a created entity before hooks are invoked. | 2 |
EntityInterface:: |
public static | function | Acts on deleted entities before the delete hook is invoked. | 2 |
EntityInterface:: |
public static | function | Acts on loaded entities. | 3 |
EntityInterface:: |
public | function | Acts on a saved entity before the insert or update hook is invoked. | 2 |
EntityInterface:: |
public static | function | Changes the values of an entity before it is created. | 2 |
EntityInterface:: |
public static | function | Acts on entities before they are deleted and before hooks are invoked. | 2 |
EntityInterface:: |
public | function | Acts on an entity before the presave hook is invoked. | 2 |
EntityInterface:: |
public | function | Gets a list of entities referenced by this entity. | 2 |
EntityInterface:: |
public | function | Saves an entity permanently. | 2 |
EntityInterface:: |
public | function | Sets the original ID. | 2 |
EntityInterface:: |
public | function | Gets an array of all property values. | 3 |
EntityInterface:: |
public | function | Generates the HTML for a link to this entity. | 2 |
EntityInterface:: |
public | function | Gets the URL object for the entity. | 2 |
EntityInterface:: |
public | function | Gets a list of URI relationships supported by this entity. | 2 |
EntityInterface:: |
public | function | Gets the public URL for this entity. | 2 |
EntityInterface:: |
public | function | Gets the URL object for the entity. | 2 |
EntityInterface:: |
public | function | Gets the entity UUID (Universally Unique Identifier). | 2 |
RefinableCacheableDependencyInterface:: |
public | function | Adds a dependency on an object: merges its cacheability metadata. | 1 |
RefinableCacheableDependencyInterface:: |
public | function | Adds cache contexts. | 1 |
RefinableCacheableDependencyInterface:: |
public | function | Adds cache tags. | 1 |
RefinableCacheableDependencyInterface:: |
public | function | Merges the maximum age (in seconds) with the existing maximum age. | 1 |
SynchronizableInterface:: |
public | function | Returns whether this entity is being changed as part of a synchronization. | 1 |
SynchronizableInterface:: |
public | function | Sets the status of the synchronization flag. | 1 |
ThirdPartySettingsInterface:: |
public | function | Gets the list of third parties that store information. | 5 |
ThirdPartySettingsInterface:: |
public | function | Gets the value of a third-party setting. | 5 |
ThirdPartySettingsInterface:: |
public | function | Gets all third-party settings of a given module. | 5 |
ThirdPartySettingsInterface:: |
public | function | Sets the value of a third-party setting. | 5 |
ThirdPartySettingsInterface:: |
public | function | Unsets a third-party setting. | 5 |