public function TmgmtExtensionSuitSettingsForm::buildForm in TMGMT Extension Suite 8
Same name and namespace in other branches
- 8.3 src/Form/TmgmtExtensionSuitSettingsForm.php \Drupal\tmgmt_extension_suit\Form\TmgmtExtensionSuitSettingsForm::buildForm()
- 8.2 src/Form/TmgmtExtensionSuitSettingsForm.php \Drupal\tmgmt_extension_suit\Form\TmgmtExtensionSuitSettingsForm::buildForm()
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides ConfigFormBase::buildForm
File
- src/
Form/ TmgmtExtensionSuitSettingsForm.php, line 53
Class
- TmgmtExtensionSuitSettingsForm
- TMGMT Extension Suit settings form.
Namespace
Drupal\tmgmt_extension_suit\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('tmgmt_extension_suit.settings');
$form['do_track_changes'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Track changes of the translatable entities.'),
'#description' => 'If checked, all the entities that once were submitted for translation, would be re-sent automatically.',
'#default_value' => $config
->get('do_track_changes'),
'#required' => FALSE,
];
return parent::buildForm($form, $form_state);
}