public function LingotekConfigChunk::lingotekDocumentId in Lingotek Translation 7.4
Same name and namespace in other branches
- 7.3 lib/Drupal/lingotek/LingotekConfigChunk.php \LingotekConfigChunk::lingotekDocumentId()
- 7.5 lib/Drupal/lingotek/LingotekConfigChunk.php \LingotekConfigChunk::lingotekDocumentId()
Get the Lingotek document ID for this entity.
Return value
mixed The integer document ID if the entity is associated with a Lingotek document. FALSE otherwise.
Overrides LingotekTranslatableEntity::lingotekDocumentId
File
- lib/
Drupal/ lingotek/ LingotekConfigChunk.php, line 840 - Defines LingotekConfigChunk.
Class
- LingotekConfigChunk
- A class wrapper for Lingotek-specific behavior on ConfigChunks.
Code
public function lingotekDocumentId() {
return $this
->getMetadataValue('document_id');
}