public function YamlFormAdminThirdPartySettingsForm::buildForm in YAML Form 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/ YamlFormAdminThirdPartySettingsForm.php, line 63
Class
- YamlFormAdminThirdPartySettingsForm
- Configure form third party settings for this site.
Namespace
Drupal\yamlform\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form = $this->thirdPartySettingsManager
->buildForm($form, $form_state);
return parent::buildForm($form, $form_state);
}