public function LingotekProfile::setDefaultAuthorEmail in Lingotek Translation 3.5.x
Same name and namespace in other branches
- 8.2 src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
- 4.0.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
- 3.0.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
- 3.1.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
- 3.2.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
- 3.3.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
- 3.4.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
- 3.6.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
- 3.7.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
- 3.8.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
Sets the Default Author Email that should be used.
Parameters
string $default_author_email: The Default Author Email.
Return value
$this
Overrides LingotekIntelligenceMetadataInterface::setDefaultAuthorEmail
File
- src/
Entity/ LingotekProfile.php, line 417
Class
- LingotekProfile
- Defines the LingotekProfile entity.
Namespace
Drupal\lingotek\EntityCode
public function setDefaultAuthorEmail($default_author_email) {
$this->intelligence_metadata['default_author_email'] = $default_author_email;
return $this;
}