You are here

public function FrontPageSettingsForm::buildForm in Front Page 8

Same name and namespace in other branches
  1. 9.1.x src/Form/FrontPageSettingsForm.php \Drupal\front_page\Form\FrontPageSettingsForm::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/FrontPageSettingsForm.php, line 30

Class

FrontPageSettingsForm
Configure site information settings for this site.

Namespace

Drupal\front_page\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $config = \Drupal::configFactory()
    ->get('front_page.settings');
  $form['front_page_enable'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Front Page Override'),
    '#description' => $this
      ->t('Enable this if you want the front page module to manage the home page.'),
    '#default_value' => $config
      ->get('enable') ?: FALSE,
  ];

  // Load any existing settings and build the by redirect by role form.
  $form['roles'] = [
    '#tree' => TRUE,
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Roles'),
  ];

  // Build the form for roles.
  $roles = user_roles();

  // Iterate each role.
  foreach ($roles as $rid => $role) {
    $role_config = $config
      ->get('rid_' . $rid);
    $form['roles'][$rid] = [
      '#type' => 'details',
      '#open' => FALSE,
      '#title' => $this
        ->t('Front Page for @rolename', [
        '@rolename' => $role
          ->label(),
      ]),
    ];
    $form['roles'][$rid]['enabled'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enable'),
      '#value' => isset($role_config['enabled']) ? $role_config['enabled'] : FALSE,
    ];
    $form['roles'][$rid]['weigth'] = [
      '#type' => 'number',
      '#title' => $this
        ->t('Weigth'),
      '#value' => isset($role_config['weigth']) ? $role_config['weigth'] : 0,
    ];
    $form['roles'][$rid]['path'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Path'),
      '#default_value' => isset($role_config['path']) ? $role_config['path'] : '',
      '#cols' => 20,
      '#rows' => 1,
      '#description' => $this
        ->t('A redirect path can contain a full URL including get parameters and fragment string (eg "/node/51?page=5#anchor").'),
    ];
  }
  $form['submit'] = [
    '#type' => 'submit',
    '#value' => $this
      ->t('Save Settings'),
  ];
  return $form;
}