protected function LingotekWorkbenchRedirectController::generateWorkbenchUri in Lingotek Translation 3.2.x
Same name and namespace in other branches
- 8.2 src/Controller/LingotekWorkbenchRedirectController.php \Drupal\lingotek\Controller\LingotekWorkbenchRedirectController::generateWorkbenchUri()
- 4.0.x src/Controller/LingotekWorkbenchRedirectController.php \Drupal\lingotek\Controller\LingotekWorkbenchRedirectController::generateWorkbenchUri()
- 3.0.x src/Controller/LingotekWorkbenchRedirectController.php \Drupal\lingotek\Controller\LingotekWorkbenchRedirectController::generateWorkbenchUri()
- 3.1.x src/Controller/LingotekWorkbenchRedirectController.php \Drupal\lingotek\Controller\LingotekWorkbenchRedirectController::generateWorkbenchUri()
- 3.3.x src/Controller/LingotekWorkbenchRedirectController.php \Drupal\lingotek\Controller\LingotekWorkbenchRedirectController::generateWorkbenchUri()
- 3.4.x src/Controller/LingotekWorkbenchRedirectController.php \Drupal\lingotek\Controller\LingotekWorkbenchRedirectController::generateWorkbenchUri()
- 3.5.x src/Controller/LingotekWorkbenchRedirectController.php \Drupal\lingotek\Controller\LingotekWorkbenchRedirectController::generateWorkbenchUri()
- 3.6.x src/Controller/LingotekWorkbenchRedirectController.php \Drupal\lingotek\Controller\LingotekWorkbenchRedirectController::generateWorkbenchUri()
- 3.7.x src/Controller/LingotekWorkbenchRedirectController.php \Drupal\lingotek\Controller\LingotekWorkbenchRedirectController::generateWorkbenchUri()
- 3.8.x src/Controller/LingotekWorkbenchRedirectController.php \Drupal\lingotek\Controller\LingotekWorkbenchRedirectController::generateWorkbenchUri()
Generates a workbench uri for this account given a document id and locale.
Parameters
string $document_id: The document id.
string $locale: Lingotek translation language.
array $account: Array describing the account.
Return value
string The uri of the workbench for this account for editing this translation.
1 call to LingotekWorkbenchRedirectController::generateWorkbenchUri()
- LingotekWorkbenchRedirectController::redirectToWorkbench in src/
Controller/ LingotekWorkbenchRedirectController.php - Redirects to the workbench of the given document and locale in the TMS.
File
- src/
Controller/ LingotekWorkbenchRedirectController.php, line 92
Class
- LingotekWorkbenchRedirectController
- Controller for redirecting to the Lingotek TMS workbench.
Namespace
Drupal\lingotek\ControllerCode
protected function generateWorkbenchUri($document_id, $locale, $account) {
$base_url = $account['host'];
// https://{environment}/workbench/document/{uuid}/locale/{es-MX}
$workbench_uri = $base_url . '/workbench/document/' . $document_id . '/locale/' . $locale;
return $workbench_uri;
}