You are here

public function LingotekProfile::setDefaultAuthorEmail in Lingotek Translation 3.1.x

Same name and namespace in other branches
  1. 8.2 src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
  2. 4.0.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
  3. 3.0.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
  4. 3.2.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
  5. 3.3.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
  6. 3.4.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
  7. 3.5.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
  8. 3.6.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
  9. 3.7.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setDefaultAuthorEmail()
  10. 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 400

Class

LingotekProfile
Defines the LingotekProfile entity.

Namespace

Drupal\lingotek\Entity

Code

public function setDefaultAuthorEmail($default_author_email) {
  $this->intelligence_metadata['default_author_email'] = $default_author_email;
  return $this;
}