You are here

public function SocialTourSettings::buildForm in Open Social 10.0.x

Same name and namespace in other branches
  1. 8.9 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  2. 8 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  3. 8.2 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  4. 8.3 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  5. 8.4 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  6. 8.5 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  7. 8.6 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  8. 8.7 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  9. 8.8 modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  10. 10.3.x modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  11. 10.1.x modules/custom/social_tour/src/Form/SocialTourSettings.php \Drupal\social_tour\Form\SocialTourSettings::buildForm()
  12. 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\Form

Code

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 whether the tour is enabled or not.'),
    '#default_value' => $config
      ->get('social_tour_enabled'),
  ];
  return parent::buildForm($form, $form_state);
}