You are here

class TranslationSubmissionStates in TMGMT Translator Smartling 8.4

Same name and namespace in other branches
  1. 8.3 vendor/smartling/api-sdk-php/src/TranslationRequests/Params/TranslationSubmissionStates.php \Smartling\TranslationRequests\Params\TranslationSubmissionStates

Class TranslationSubmissionStates @package Smartling\TranslationRequests\Params

Hierarchy

Expanded class hierarchy of TranslationSubmissionStates

3 files declare their use of TranslationSubmissionStates
tmgmt_smartling.module in ./tmgmt_smartling.module
Contains
TranslationRequestManager.php in src/Smartling/Submission/TranslationRequestManager.php
TranslationRequestManagerTest.php in tests/src/Kernel/TranslationRequestManagerTest.php

File

vendor/smartling/api-sdk-php/src/TranslationRequests/Params/TranslationSubmissionStates.php, line 9

Namespace

Smartling\TranslationRequests\Params
View source
class TranslationSubmissionStates {
  const STATE_NEW = 'New';
  const STATE_IN_PROGRESS = 'In Progress';
  const STATE_TRANSLATED = 'Translated';
  const STATE_FAILED = 'Failed';
  const STATE_DELETED = 'Deleted';
  const STATE_COMPLETED = 'Completed';

  /**
   * @var array
   */
  public static $allowedStates = [
    self::STATE_NEW,
    self::STATE_IN_PROGRESS,
    self::STATE_TRANSLATED,
    self::STATE_FAILED,
    self::STATE_DELETED,
    self::STATE_COMPLETED,
  ];

}

Members