function thunder_form_install_configure_form_alter in Thunder 8.4
Same name and namespace in other branches
- 8.5 thunder.profile \thunder_form_install_configure_form_alter()
- 8.2 thunder.profile \thunder_form_install_configure_form_alter()
- 8.3 thunder.profile \thunder_form_install_configure_form_alter()
- 6.2.x thunder.profile \thunder_form_install_configure_form_alter()
- 6.0.x thunder.profile \thunder_form_install_configure_form_alter()
- 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 21 - 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');
}