You are here

public function LingotekIntelligenceService::setBaseDomainPermission in Lingotek Translation 3.2.x

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

Sets the Permission setting for whether or not to include the Base Domain in the metadata.

Parameters

bool $use_base_domain: Flag indicating if we want to indicate the Base Domain.

Return value

$this

Overrides LingotekIntelligenceMetadataInterface::setBaseDomainPermission

File

src/LingotekIntelligenceService.php, line 445

Class

LingotekIntelligenceService
Service for managing Lingotek Intelligence related configuration.

Namespace

Drupal\lingotek

Code

public function setBaseDomainPermission($use_base_domain) {
  return $this
    ->setValue('use_base_domain', $use_base_domain);
}