public function SocialTourSettings::buildForm in Open Social 8
Same name and namespace in other branches
- 8.9 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 8.2 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 8.3 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 8.4 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 8.5 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 8.6 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 8.7 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 8.8 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 10.3.x modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 10.0.x modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 10.1.x modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
- 10.2.x modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::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
- modules/
custom/ social_tour/ src/ Form/ SocialTourSettings.php, line 34
Class
- SocialTourSettings
- Class SocialTourSettings.
Namespace
Drupal\social_tour\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('social_tour.settings');
$form['social_tour_enabled'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Enable the social tour'),
'#description' => $this
->t('Set wether the tour is enabled or not.'),
'#default_value' => $config
->get('social_tour_enabled'),
];
return parent::buildForm($form, $form_state);
}