You are here

function createTranslationRequestDemo in TMGMT Translator Smartling 8.4

Same name and namespace in other branches
  1. 8.3 vendor/smartling/api-sdk-php/examples/translation-requests-example.php \createTranslationRequestDemo()

Parameters

\Smartling\AuthApi\AuthApiInterface $authProvider:

$projectId:

$demoBucketName:

$demoCreateParams:

Return value

array

1 call to createTranslationRequestDemo()
translation-requests-example.php in vendor/smartling/api-sdk-php/examples/translation-requests-example.php

File

vendor/smartling/api-sdk-php/examples/translation-requests-example.php, line 51

Code

function createTranslationRequestDemo($authProvider, $projectId, $demoBucketName, $demoCreateParams) {
  echo "--- Create Translation Request ---\n";
  $response = [];
  $translationRequestsApi = \Smartling\TranslationRequests\TranslationRequestsApi::create($authProvider, $projectId);
  $st = microtime(true);
  try {
    $response = $translationRequestsApi
      ->createTranslationRequest($demoBucketName, $demoCreateParams);
  } catch (\Smartling\Exceptions\SmartlingApiException $e) {
    var_dump($e
      ->getErrors());
  }
  $et = microtime(true);
  $time = $et - $st;
  echo vsprintf('Request took %s seconds.%s', [
    round($time, 3),
    "\n\r",
  ]);
  if (!empty($response)) {
    var_dump($response);
  }
  return $response;
}