protected function LingotekConfigSet::updateLingotekDocument in Lingotek Translation 7.6
Updates the existing Lingotek Documemnt for this config set.
Return value
bool TRUE if the document create operation was successful, FALSE on error.
1 call to LingotekConfigSet::updateLingotekDocument()
- LingotekConfigSet::contentUpdated in lib/
Drupal/ lingotek/ LingotekConfigSet.php - Event handler for updates to the config set's data.
File
- lib/
Drupal/ lingotek/ LingotekConfigSet.php, line 589 - Defines LingotekConfigSet.
Class
- LingotekConfigSet
- A class wrapper for Lingotek-specific behavior on ConfigSets.
Code
protected function updateLingotekDocument() {
$result = $this->api
->updateContentDocument($this);
return $result ? TRUE : FALSE;
}