You are here

public function LingotekIntelligenceService::setContactEmail in Lingotek Translation 3.5.x

Same name and namespace in other branches
  1. 8.2 src/LingotekIntelligenceService.php \Drupal\lingotek\LingotekIntelligenceService::setContactEmail()
  2. 4.0.x src/LingotekIntelligenceService.php \Drupal\lingotek\LingotekIntelligenceService::setContactEmail()
  3. 3.0.x src/LingotekIntelligenceService.php \Drupal\lingotek\LingotekIntelligenceService::setContactEmail()
  4. 3.1.x src/LingotekIntelligenceService.php \Drupal\lingotek\LingotekIntelligenceService::setContactEmail()
  5. 3.2.x src/LingotekIntelligenceService.php \Drupal\lingotek\LingotekIntelligenceService::setContactEmail()
  6. 3.3.x src/LingotekIntelligenceService.php \Drupal\lingotek\LingotekIntelligenceService::setContactEmail()
  7. 3.4.x src/LingotekIntelligenceService.php \Drupal\lingotek\LingotekIntelligenceService::setContactEmail()
  8. 3.6.x src/LingotekIntelligenceService.php \Drupal\lingotek\LingotekIntelligenceService::setContactEmail()
  9. 3.7.x src/LingotekIntelligenceService.php \Drupal\lingotek\LingotekIntelligenceService::setContactEmail()
  10. 3.8.x src/LingotekIntelligenceService.php \Drupal\lingotek\LingotekIntelligenceService::setContactEmail()

Sets the Contact Email for the Contact Person responsible for this content.

Parameters

string $contact_email: The Contact Email.

Return value

$this

Overrides LingotekIntelligenceMetadataInterface::setContactEmail

File

src/LingotekIntelligenceService.php, line 152

Class

LingotekIntelligenceService
Service for managing Lingotek Intelligence related configuration.

Namespace

Drupal\lingotek

Code

public function setContactEmail($contact_email) {
  return $this
    ->setValue('contact_email', $contact_email);
}