public function LingotekContentMetadata::setContentEntityTypeId in Lingotek Translation 8.2
Same name and namespace in other branches
- 4.0.x src/Entity/LingotekContentMetadata.php \Drupal\lingotek\Entity\LingotekContentMetadata::setContentEntityTypeId()
- 3.0.x src/Entity/LingotekContentMetadata.php \Drupal\lingotek\Entity\LingotekContentMetadata::setContentEntityTypeId()
- 3.1.x src/Entity/LingotekContentMetadata.php \Drupal\lingotek\Entity\LingotekContentMetadata::setContentEntityTypeId()
- 3.2.x src/Entity/LingotekContentMetadata.php \Drupal\lingotek\Entity\LingotekContentMetadata::setContentEntityTypeId()
- 3.3.x src/Entity/LingotekContentMetadata.php \Drupal\lingotek\Entity\LingotekContentMetadata::setContentEntityTypeId()
- 3.4.x src/Entity/LingotekContentMetadata.php \Drupal\lingotek\Entity\LingotekContentMetadata::setContentEntityTypeId()
- 3.5.x src/Entity/LingotekContentMetadata.php \Drupal\lingotek\Entity\LingotekContentMetadata::setContentEntityTypeId()
- 3.6.x src/Entity/LingotekContentMetadata.php \Drupal\lingotek\Entity\LingotekContentMetadata::setContentEntityTypeId()
- 3.7.x src/Entity/LingotekContentMetadata.php \Drupal\lingotek\Entity\LingotekContentMetadata::setContentEntityTypeId()
- 3.8.x src/Entity/LingotekContentMetadata.php \Drupal\lingotek\Entity\LingotekContentMetadata::setContentEntityTypeId()
Sets the content entity type ID.
Parameters
string $value: The content entity type ID.
Return value
$this
File
- src/
Entity/ LingotekContentMetadata.php, line 239
Class
- LingotekContentMetadata
- Defines the Lingotek content metadata entity.
Namespace
Drupal\lingotek\EntityCode
public function setContentEntityTypeId($value) {
$this->content_entity_type_id = $value;
return $this;
}