You are here

function thunder_form_install_configure_form_alter in Thunder 8.3

Same name and namespace in other branches
  1. 8.5 thunder.profile \thunder_form_install_configure_form_alter()
  2. 8.2 thunder.profile \thunder_form_install_configure_form_alter()
  3. 8.4 thunder.profile \thunder_form_install_configure_form_alter()
  4. 6.2.x thunder.profile \thunder_form_install_configure_form_alter()
  5. 6.0.x thunder.profile \thunder_form_install_configure_form_alter()
  6. 6.1.x thunder.profile \thunder_form_install_configure_form_alter()

Implements hook_form_FORM_ID_alter() for install_configure_form().

Allows the profile to alter the site configuration form.

File

./thunder.profile, line 20
Enables modules and site configuration for a thunder site installation.

Code

function thunder_form_install_configure_form_alter(&$form, FormStateInterface $form_state) {

  // Add a value as example that one can choose an arbitrary site name.
  $form['site_information']['site_name']['#placeholder'] = t('Thunder');
}