public function Email::exportTemplate in Courier 8
Same name and namespace in other branches
- 2.x src/Entity/Email.php \Drupal\courier\Entity\Email::exportTemplate()
Export the message values from this template to configuration values, as found in the 'courier.template.TYPE' config type. Where TYPE is the entity type ID of this entity.
This method is the reverse of {@link importTemplate()}
Return value
mixed Values from this entity converted to 'courier.template.TYPE' configuration.
Overrides ChannelInterface::exportTemplate
File
- src/
Entity/ Email.php, line 193 - Contains \Drupal\courier\Entity\Email.
Class
- Defines storage for a composed email.
Namespace
Drupal\courier\EntityCode
public function exportTemplate() {
return [
'subject' => $this
->getSubject(),
'body' => $this
->getBody(),
];
}