public function RegionalForm::buildForm in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/src/Form/RegionalForm.php \Drupal\system\Form\RegionalForm::buildForm()
- 10 core/modules/system/src/Form/RegionalForm.php \Drupal\system\Form\RegionalForm::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
- core/
modules/ system/ src/ Form/ RegionalForm.php, line 65
Class
- RegionalForm
- Configure regional settings for this site.
Namespace
Drupal\system\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$countries = $this->countryManager
->getList();
$system_date = $this
->config('system.date');
// Date settings:
$zones = system_time_zones(NULL, TRUE);
$form['locale'] = [
'#type' => 'details',
'#title' => t('Locale'),
'#open' => TRUE,
];
$form['locale']['site_default_country'] = [
'#type' => 'select',
'#title' => t('Default country'),
'#empty_value' => '',
'#default_value' => $system_date
->get('country.default'),
'#options' => $countries,
'#attributes' => [
'class' => [
'country-detect',
],
],
];
$form['locale']['date_first_day'] = [
'#type' => 'select',
'#title' => t('First day of week'),
'#default_value' => $system_date
->get('first_day'),
'#options' => [
0 => t('Sunday'),
1 => t('Monday'),
2 => t('Tuesday'),
3 => t('Wednesday'),
4 => t('Thursday'),
5 => t('Friday'),
6 => t('Saturday'),
],
];
$form['timezone'] = [
'#type' => 'details',
'#title' => t('Time zones'),
'#open' => TRUE,
];
$form['timezone']['date_default_timezone'] = [
'#type' => 'select',
'#title' => t('Default time zone'),
'#default_value' => $system_date
->get('timezone.default') ?: date_default_timezone_get(),
'#options' => $zones,
];
return parent::buildForm($form, $form_state);
}