You are here

public function LingotekInterface::uploadDocument in Lingotek Translation 8

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

Uploads a document to the Lingotek service.

Parameters

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

$content: The content of the document

string $locale: The Lingotek locale.

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

\Drupal\lingotek\LingotekProfileInterface $profile: The profile being used.

Return value

mixed

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

File

src/LingotekInterface.php, line 57

Class

LingotekInterface

Namespace

Drupal\lingotek

Code

public function uploadDocument($title, $content, $locale, $url = NULL, LingotekProfileInterface $profile = NULL);