class LingotekSettingsTabAccountForm in Lingotek Translation 8
Same name and namespace in other branches
- 8.2 src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- 4.0.x src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- 3.0.x src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- 3.1.x src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- 3.2.x src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- 3.3.x src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- 3.4.x src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- 3.5.x src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- 3.6.x src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- 3.7.x src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- 3.8.x src/Form/LingotekSettingsTabAccountForm.php \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
Configure Lingotek
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
- class \Drupal\lingotek\Form\LingotekConfigFormBase
- class \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
- class \Drupal\lingotek\Form\LingotekConfigFormBase
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of LingotekSettingsTabAccountForm
1 string reference to 'LingotekSettingsTabAccountForm'
- LingotekSettingsController::content in src/
Controller/ LingotekSettingsController.php
File
- src/
Form/ LingotekSettingsTabAccountForm.php, line 18 - Contains \Drupal\lingotek\Form\LingotekSettingsAccountForm.
Namespace
Drupal\lingotek\FormView source
class LingotekSettingsTabAccountForm extends LingotekConfigFormBase {
/**
* {@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) {
drupal_set_message($this
->t('There was a problem checking your account status.'), 'warning');
}
$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' => '',
],
];
$default_community = $config
->get('default.community');
$default_community_name = $config
->get('account.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
->getLinkGenerator()
->generate($this
->t('Edit defaults'), Url::fromRoute('lingotek.edit_defaults')),
],
];
$default_workflow = $config
->get('default.workflow');
$default_workflow_name = $config
->get('account.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
->getLinkGenerator()
->generate($this
->t('Edit defaults'), Url::fromRoute('lingotek.edit_defaults')),
],
];
$default_project = $config
->get('default.project');
$default_project_name = $config
->get('account.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
->getLinkGenerator()
->generate($this
->t('Edit defaults'), Url::fromRoute('lingotek.edit_defaults')),
],
];
$default_vault = $config
->get('default.vault');
$default_vault_name = $config
->get('account.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
->getLinkGenerator()
->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['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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFormBase:: |
public | function |
Form submission handler. Overrides FormInterface:: |
26 |
ConfigFormBaseTrait:: |
protected | function | Retrieves a configuration object. | |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
FormInterface:: |
public | function | Returns a unique string identifying the form. | 236 |
LingotekConfigFormBase:: |
public static | function |
Instantiates a new instance of this class. Overrides ConfigFormBase:: |
3 |
LingotekConfigFormBase:: |
public | function |
Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait:: |
|
LingotekConfigFormBase:: |
public | function |
Constructs a \Drupal\lingotek\Form\LingotekConfigFormBase object. Overrides ConfigFormBase:: |
3 |
LingotekSettingsTabAccountForm:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
LingotekSettingsTabAccountForm:: |
public | function | ||
LingotekSettingsTabAccountForm:: |
public | function | ||
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |