VarbaseGeneralSettingsForm.php in Varbase Core 8.7        
                          
                  
                        
  
  
  
  
File
  src/Form/VarbaseGeneralSettingsForm.php
  
    View source  
  <?php
namespace Drupal\varbase_core\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
class VarbaseGeneralSettingsForm extends ConfigFormBase {
  
  public function getFormId() {
    return 'varbase_core_general_settings';
  }
  
  protected function getEditableConfigNames() {
    return [
      'varbase_core.general_settings',
    ];
  }
  
  public function buildForm(array $form, FormStateInterface $form_state) {
    global $base_url;
    $front_page_with_welcome = $base_url . '/?welcome';
    $config = $this
      ->config('varbase_core.general_settings');
    $form['settings']['welcome_status'] = [
      '#type' => 'checkbox',
      '#default_value' => $config
        ->get('welcome_status'),
      '#title' => $this
        ->t('Allow site to show welcome message'),
      '#description' => $this
        ->t('This option will allow to display Varbase\'s welcome message on the homepage by adding <code>?welcome</code> to the URL. This option is automatically disabled after closing the welcome message. Check this then navigate to <a href="@front_page_with_welcome">@front_page_with_welcome</a> to see the welcome message again.', [
        '@front_page_with_welcome' => $front_page_with_welcome,
      ]),
    ];
    return parent::buildForm($form, $form_state);
  }
  
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $config = $this
      ->config('varbase_core.general_settings');
    $config
      ->set('welcome_status', $form_state
      ->getValue('welcome_status'));
    $config
      ->save();
    parent::submitForm($form, $form_state);
  }
}