public function MailCacheInterface::set in Simplenews 8.2
Same name and namespace in other branches
- 8 src/Mail/MailCacheInterface.php \Drupal\simplenews\Mail\MailCacheInterface::set()
- 3.x src/Mail/MailCacheInterface.php \Drupal\simplenews\Mail\MailCacheInterface::set()
Write an element to the cache.
Although group and key can be used to identify the requested cache, the implementations are responsible to create a unique cache key themself using the $mail. For example based on the entity id and the language.
Parameters
\Drupal\simplenews\Mail\MailInterface $mail: The mail object.
string $group: Group of the cache key, which allows cache implementations to decide what they want to cache. Currently used groups:
- data: Raw data, e.g. attachments.
- build: Built and themed content, before personalizations like tokens.
- final: The final returned data. Caching this means that newsletter can not be personalized anymore.
string $key: Identifies the requested element, e.g. body or attachments.
mixed $data: The data to be saved in the cache.
1 method overrides MailCacheInterface::set()
- MailCacheStatic::set in src/
Mail/ MailCacheStatic.php - Write an element to the cache.
File
- src/
Mail/ MailCacheInterface.php, line 57
Class
- MailCacheInterface
- Interface for a simplenews mail cache implementation.
Namespace
Drupal\simplenews\MailCode
public function set(MailInterface $mail, $group, $key, $data);