You are here

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

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

Set if the profile overrides settings for Intelligence metadata.

Parameters

bool $value: TRUE if there are Lingotek Intelligence customizations, FALSE if not.

Return value

$this

Overrides LingotekProfileInterface::setIntelligenceMetadataOverrides

File

src/Entity/LingotekProfile.php, line 878

Class

LingotekProfile
Defines the LingotekProfile entity.

Namespace

Drupal\lingotek\Entity

Code

public function setIntelligenceMetadataOverrides($value) {
  $this->intelligence_metadata['override'] = $value;
  return $this;
}