You are here

class LingotekSettingsTabAccountForm in Lingotek Translation 3.4.x

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

Configure Lingotek

Hierarchy

Expanded class hierarchy of LingotekSettingsTabAccountForm

2 files declare their use of LingotekSettingsTabAccountForm
LingotekSettingsController.php in src/Controller/LingotekSettingsController.php
LingotekSettingsTabAccountFormTest.php in tests/src/Unit/Form/LingotekSettingsTabAccountFormTest.php

File

src/Form/LingotekSettingsTabAccountForm.php, line 19

Namespace

Drupal\lingotek\Form
View source
class LingotekSettingsTabAccountForm extends LingotekConfigFormBase {

  /**
   * The Lingotek Filter manager.
   *
   * @var \Drupal\lingotek\LingotekFilterManagerInterface
   */
  protected $lingotekFilterManager;

  /**
   * Constructs a LingotekSettingsTabAccountForm object.
   *
   * @param \Drupal\lingotek\LingotekInterface $lingotek
   *   The Lingotek service.
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config
   *   The factory for configuration objects.
   * @param \Drupal\lingotek\LingotekFilterManagerInterface $lingotek_filter_manager
   *   The Lingotek Filter manager.
   * @param \Drupal\Core\Routing\UrlGeneratorInterface $url_generator
   *   The url generator.
   * @param \Drupal\Core\Utility\LinkGeneratorInterface $link_generator
   *   The link generator.
   */
  public function __construct(LingotekInterface $lingotek, ConfigFactoryInterface $config, LingotekFilterManagerInterface $lingotek_filter_manager, UrlGeneratorInterface $url_generator = NULL, LinkGeneratorInterface $link_generator = NULL) {
    parent::__construct($lingotek, $config, $url_generator, $link_generator);
    $this->lingotekFilterManager = $lingotek_filter_manager;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('lingotek'), $container
      ->get('config.factory'), $container
      ->get('lingotek.filter_manager'), $container
      ->get('url_generator'), $container
      ->get('link_generator'));
  }

  /**
   * {@inheritdoc}
   */
  public function getFormID() {
    return 'lingotek.settings_tab_account_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $config = $this
      ->config('lingotek.settings');
    $isEnterprise = $this
      ->t('Yes');
    $connectionStatus = $this
      ->t('Inactive');
    if ($config
      ->get('account.plan_type') == 'basic') {
      $isEnterprise = $this
        ->t('No');
    }
    try {
      if ($this->lingotek
        ->getAccountInfo()) {
        $connectionStatus = $this
          ->t('Active');
      }
    } catch (LingotekApiException $exception) {
      $this
        ->messenger()
        ->addWarning($this
        ->t('There was a problem checking your account status.'));
    }
    $statusRow = [
      [
        '#markup' => $this
          ->t('Status:'),
        '#prefix' => '<b>',
        '#suffix' => '</b>',
      ],
      [
        '#markup' => $connectionStatus,
      ],
      [
        '#markup' => '',
      ],
    ];
    $planRow = [
      [
        '#markup' => $this
          ->t('Enterprise:'),
        '#prefix' => '<b>',
        '#suffix' => '</b>',
      ],
      [
        '#markup' => $isEnterprise,
      ],
      [
        '#markup' => '',
      ],
    ];
    $activationRow = [
      [
        '#markup' => $this
          ->t('Activation Name:'),
        '#prefix' => '<b>',
        '#suffix' => '</b>',
      ],
      [
        '#markup' => $config
          ->get('account.login_id'),
      ],
      [],
    ];
    $tokenRow = [
      [
        '#markup' => $this
          ->t('Access Token:'),
        '#prefix' => '<b>',
        '#suffix' => '</b>',
      ],
      [
        '#markup' => $config
          ->get('account.access_token'),
      ],
      [
        '#markup' => '',
      ],
    ];
    $resources = $this->lingotek
      ->getResources();
    $default_community = $config
      ->get('default.community');
    $default_community_name = isset($resources['community'][$default_community]) ? $resources['community'][$default_community] : '';
    $communityRow = [
      [
        '#markup' => $this
          ->t('Community:'),
        '#prefix' => '<b>',
        '#suffix' => '</b>',
      ],
      [
        '#markup' => new FormattableMarkup('@name (@id)', [
          '@name' => $default_community_name,
          '@id' => $default_community,
        ]),
      ],
      [
        '#markup' => $this->linkGenerator
          ->generate($this
          ->t('Edit defaults'), Url::fromRoute('lingotek.edit_defaults')),
      ],
    ];
    $default_workflow = $config
      ->get('default.workflow');
    if ($default_workflow === 'project_default') {
      $default_workflow_name = $this
        ->t('Project Default');
    }
    else {
      $default_workflow_name = isset($resources['workflow'][$default_workflow]) ? $resources['workflow'][$default_workflow] : '';
    }
    $workflowRow = [
      [
        '#markup' => $this
          ->t('Default Workflow:'),
        '#prefix' => '<b>',
        '#suffix' => '</b>',
      ],
      [
        '#markup' => new FormattableMarkup('@name (@id)', [
          '@name' => $default_workflow_name,
          '@id' => $default_workflow,
        ]),
      ],
      [
        '#markup' => $this->linkGenerator
          ->generate($this
          ->t('Edit defaults'), Url::fromRoute('lingotek.edit_defaults')),
      ],
    ];
    $default_project = $config
      ->get('default.project');
    $default_project_name = isset($resources['project'][$default_project]) ? $resources['project'][$default_project] : '';
    $projectRow = [
      [
        '#markup' => $this
          ->t('Default Project:'),
        '#prefix' => '<b>',
        '#suffix' => '</b>',
      ],
      [
        '#markup' => new FormattableMarkup('@name (@id)', [
          '@name' => $default_project_name,
          '@id' => $default_project,
        ]),
      ],
      [
        '#markup' => $this->linkGenerator
          ->generate($this
          ->t('Edit defaults'), Url::fromRoute('lingotek.edit_defaults')),
      ],
    ];
    $filters = $this->lingotekFilterManager
      ->getLocallyAvailableFilters();
    if ($filters > 0) {
      $default_filter = $this->lingotekFilterManager
        ->getDefaultFilter();
      $default_filter_label = $this->lingotekFilterManager
        ->getDefaultFilterLabel();
      $default_subfilter = $this->lingotekFilterManager
        ->getDefaultSubfilter();
      $default_subfilter_label = $this->lingotekFilterManager
        ->getDefaultSubfilterLabel();
      $filterRow = [
        [
          '#markup' => $this
            ->t('Default Filter:'),
          '#prefix' => '<b>',
          '#suffix' => '</b>',
        ],
        [
          '#markup' => new FormattableMarkup('@name (@id)', [
            '@name' => $default_filter_label,
            '@id' => $default_filter,
          ]),
        ],
        [
          '#markup' => $this->linkGenerator
            ->generate($this
            ->t('Edit defaults'), Url::fromRoute('lingotek.edit_defaults')),
        ],
      ];
      $subfilterRow = [
        [
          '#markup' => $this
            ->t('Default Subfilter:'),
          '#prefix' => '<b>',
          '#suffix' => '</b>',
        ],
        [
          '#markup' => new FormattableMarkup('@name (@id)', [
            '@name' => $default_subfilter_label,
            '@id' => $default_subfilter,
          ]),
        ],
        [
          '#markup' => $this->linkGenerator
            ->generate($this
            ->t('Edit defaults'), Url::fromRoute('lingotek.edit_defaults')),
        ],
      ];
    }
    $default_vault = $config
      ->get('default.vault');
    $default_vault_name = isset($resources['vault'][$default_vault]) ? $resources['vault'][$default_vault] : '';
    $vaultRow = [
      [
        '#markup' => $this
          ->t('Default Vault:'),
        '#prefix' => '<b>',
        '#suffix' => '</b>',
      ],
      [
        '#markup' => $default_vault ? new FormattableMarkup('@name (@id)', [
          '@name' => $default_vault_name,
          '@id' => $default_vault,
        ]) : '',
      ],
      [
        '#markup' => $this->linkGenerator
          ->generate($this
          ->t('Edit defaults'), Url::fromRoute('lingotek.edit_defaults')),
      ],
    ];
    $tmsRow = [
      [
        '#markup' => $this
          ->t('Lingotek TMS Server:'),
        '#prefix' => '<b>',
        '#suffix' => '</b>',
      ],
      [
        '#markup' => $config
          ->get('account.use_production') ? $config
          ->get('account.host') : $config
          ->get('account.sandbox_host'),
      ],
      [
        '#markup' => '',
      ],
    ];
    $gmcRow = [
      [
        '#markup' => $this
          ->t('Lingotek GMC Server:'),
        '#prefix' => '<b>',
        '#suffix' => '</b>',
      ],
      [
        '#markup' => 'https://gmc.lingotek.com',
      ],
      [
        '#markup' => '',
      ],
    ];
    $accountTable = [
      '#type' => 'table',
      '#empty' => $this
        ->t('No Entries'),
    ];
    $accountTable['status_row'] = $statusRow;
    $accountTable['plan_row'] = $planRow;
    $accountTable['activation_row'] = $activationRow;
    $accountTable['token_row'] = $tokenRow;
    $accountTable['community_row'] = $communityRow;
    $accountTable['workflow_row'] = $workflowRow;
    $accountTable['project_row'] = $projectRow;
    $accountTable['vault_row'] = $vaultRow;
    $accountTable['filter_row'] = $filterRow;
    $accountTable['subfilter_row'] = $subfilterRow;
    $accountTable['tms_row'] = $tmsRow;
    $accountTable['gmc_row'] = $gmcRow;
    $form['account'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Account'),
    ];
    $form['account']['account_table'] = $accountTable;
    $form['account']['actions']['#type'] = 'actions';
    $form['account']['actions']['disconnect'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Disconnect'),
      '#button_type' => 'danger',
      '#submit' => [
        [
          $this,
          'disconnect',
        ],
      ],
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function disconnect(array &$form, FormStateInterface $form_state) {

    // Redirect to the confirmation form.
    $form_state
      ->setRedirect('lingotek.account_disconnect');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigFormBase::submitForm public function Form submission handler. Overrides FormInterface::submitForm 32
ConfigFormBaseTrait::config protected function Retrieves a configuration object.
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 3
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::configFactory protected function Gets the config factory for this form. 3
FormBase::container private function Returns the service container.
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route.
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::validateForm public function Form validation handler. Overrides FormInterface::validateForm 72
FormInterface::getFormId public function Returns a unique string identifying the form. 264
LingotekConfigFormBase::$lingotek protected property
LingotekConfigFormBase::$linkGenerator protected property The link generator.
LingotekConfigFormBase::$urlGenerator protected property The URL generator.
LingotekConfigFormBase::getEditableConfigNames public function Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait::getEditableConfigNames
LingotekSettingsTabAccountForm::$lingotekFilterManager protected property The Lingotek Filter manager.
LingotekSettingsTabAccountForm::buildForm public function Form constructor. Overrides ConfigFormBase::buildForm
LingotekSettingsTabAccountForm::create public static function Instantiates a new instance of this class. Overrides LingotekConfigFormBase::create
LingotekSettingsTabAccountForm::disconnect public function
LingotekSettingsTabAccountForm::getFormID public function
LingotekSettingsTabAccountForm::__construct public function Constructs a LingotekSettingsTabAccountForm object. Overrides LingotekConfigFormBase::__construct
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.