You are here

public function LingotekInterface::updateDocument in Lingotek Translation 8

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

Updates a document in the Lingotek service.

Parameters

string $doc_id: The document id to update.

$content: The content of the document

string $url: (optional) The document url in the site if any. This allows support for in-context review.

string $title: (optional) The title of the document as it will be seen in the TMS.

Return value

boolean

2 methods override LingotekInterface::updateDocument()
Lingotek::updateDocument in src/Lingotek.php
Updates a document in the Lingotek service.
LingotekFake::updateDocument in tests/modules/lingotek_test/src/LingotekFake.php
Updates a document in the Lingotek service.

File

src/LingotekInterface.php, line 73

Class

LingotekInterface

Namespace

Drupal\lingotek

Code

public function updateDocument($doc_id, $content, $url = NULL, $title = NULL);