public function EasyEmail::getCCAddresses in Easy Email 8
Same name and namespace in other branches
- 2.0.x src/Entity/EasyEmail.php \Drupal\easy_email\Entity\EasyEmail::getCCAddresses()
@inheritDoc
Overrides EasyEmailInterface::getCCAddresses
File
- src/
Entity/ EasyEmail.php, line 373
Class
- EasyEmail
- Defines the Email entity.
Namespace
Drupal\easy_email\EntityCode
public function getCCAddresses() {
if ($this
->hasField('cc_address')) {
return $this
->getListTextValues($this
->get('cc_address'));
}
return NULL;
}