function StandardHooks::formInstallConfigureFormAlter

Implements hook_form_FORM_ID_alter() for install_configure_form().

Allows the profile to alter the site configuration form.

File

core/profiles/standard/src/Hook/StandardHooks.php, line 19

Class

StandardHooks
Hook implementations for standard.

Namespace

Drupal\standard\Hook

Code

public function formInstallConfigureFormAlter(&$form, FormStateInterface $form_state) : void {
    $form['#submit'][] = [
        $this,
        'installConfigureSubmit',
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.