class LingotekSettingsTabProfilesForm in Lingotek Translation 8.2
Same name and namespace in other branches
- 8 src/Form/LingotekSettingsTabProfilesForm.php \Drupal\lingotek\Form\LingotekSettingsTabProfilesForm
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\LingotekSettingsTabProfilesForm
- class \Drupal\lingotek\Form\LingotekConfigFormBase
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of LingotekSettingsTabProfilesForm
File
- src/
Form/ LingotekSettingsTabProfilesForm.php, line 15
Namespace
Drupal\lingotek\FormView source
class LingotekSettingsTabProfilesForm extends LingotekConfigFormBase {
protected $profiles;
protected $profile_names;
protected $profile_index;
/**
* {@inheritdoc}
*/
public function getFormID() {
return 'lingotek.settings_tab_profiles_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$profiles = \Drupal::entityTypeManager()
->getListBuilder('lingotek_profile')
->load();
$this->profile_index = 0;
$header = [
$this
->t('Profile Name'),
$this
->t('Usage'),
$this
->t('Actions'),
];
$table = [
'#type' => 'table',
'#header' => $header,
'#empty' => $this
->t('No Entries'),
];
foreach ($this->profiles as $profile) {
$row = [];
$row['profile_name'] = [
'#markup' => $this
->t(ucwords($profile['name'])),
];
$usage = $this
->retrieveUsage($profile);
$row['usage'] = [
'#markup' => $this
->t($usage . ' content types'),
];
$row['profile_actions'] = $this
->retrieveActions($profile, $usage);
$table[$profile['name']] = $row;
$this->profile_index++;
}
$form['config_parent'] = [
'#type' => 'details',
'#title' => $this
->t('Translation Profiles'),
];
$form['config_parent']['table'] = $table;
$form['config_parent']['add_profile'] = $this
->retrieveActions();
return $form;
}
protected function retrieveUsage($profile) {
$usage = 0;
$entity_types = $this->lingotek
->get('translate.entity');
// Count how many content types are using this $profile
if (!empty($entity_types)) {
foreach ($entity_types as $entity_id => $bundles) {
foreach ($bundles as $bundle) {
$profile_choice = $bundle['profile'];
if ($profile_choice == $profile['id']) {
$usage++;
}
}
}
}
return $usage;
}
protected function retrieveActions($profile = NULL, $usage = NULL) {
// Assign $url and $title depending on if it's a new profile or not
if ($profile) {
$title = t('Edit');
$url = Url::fromRoute('lingotek.settings_profile', [
'profile_choice' => $profile,
'profile_index' => $this->profile_index,
'profile_usage' => $usage,
]);
}
else {
$title = t('Add New Profile');
$url = Url::fromRoute('entity.lingotek_profile.add_form');
}
// If it's a disabled profile, no link is provided
if ($profile['id'] == Lingotek::PROFILE_DISABLED) {
$edit_link = [
'#markup' => $this
->t('Not Editable'),
];
}
else {
$edit_link = [
'#type' => 'link',
'#title' => $title,
'#url' => $url,
'#ajax' => [
'class' => [
'use-ajax',
],
],
'#attributes' => [
'class' => [
'use-ajax',
],
'data-dialog-type' => 'modal',
'data-dialog-options' => Json::encode([
'width' => 861,
'height' => 700,
]),
],
];
}
return $edit_link;
}
}
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:: |
5 |
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:: |
5 |
LingotekSettingsTabProfilesForm:: |
protected | property | ||
LingotekSettingsTabProfilesForm:: |
protected | property | ||
LingotekSettingsTabProfilesForm:: |
protected | property | ||
LingotekSettingsTabProfilesForm:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
LingotekSettingsTabProfilesForm:: |
public | function | ||
LingotekSettingsTabProfilesForm:: |
protected | function | ||
LingotekSettingsTabProfilesForm:: |
protected | 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. |