public function SettingsForm::buildForm in DrupalAuth for SimpleSAMLphp 8
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/ SettingsForm.php, line 31
Class
- SettingsForm
- Configure DrupalAuth for SimpleSAMLphp settings for this site.
Namespace
Drupal\drupalauth4ssp\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['authsource'] = [
'#type' => 'textfield',
'#title' => $this
->t('Authsource'),
'#default_value' => $this
->config('drupalauth4ssp.settings')
->get('authsource'),
'#description' => $this
->t('The machine name of the authsource used in SimpleSAMLphp.'),
'#required' => TRUE,
];
$form['returnto_list'] = [
'#type' => 'textarea',
'#title' => $this
->t('Allowed list of URLs for ReturnTo Parameter for service provider initiated logout'),
'#default_value' => $this
->config('drupalauth4ssp.settings')
->get('returnto_list'),
'#description' => $this
->t('Enter one URL per line. The "*"(wildcard) character is allowed. Example URLs are www.example.com/specific-path for a certain path and www.example.com* for all the URLs for www.example.com domain (like www.example.com; www.example.com/path1; www.example.com/path2/path3 etc.) and *example.com* for all subdomain paths (like a.example.com; a.example.com/path etc.)'),
'#required' => TRUE,
];
$form['idp_logout_returnto'] = [
'#type' => 'textfield',
'#title' => $this
->t('IdP-initiated logout redirect URL'),
'#default_value' => $this
->config('drupalauth4ssp.settings')
->get('idp_logout_returnto'),
'#description' => $this
->t('URL where to return the user after SimpleSAMLphp will finish logout process. Leave empty to return to the home page.'),
];
return parent::buildForm($form, $form_state);
}