You are here

protected function MailchimpListsWebhookSettingsForm::getEditableConfigNames in Mailchimp 8

Same name and namespace in other branches
  1. 2.x modules/mailchimp_lists/src/Form/MailchimpListsWebhookSettingsForm.php \Drupal\mailchimp_lists\Form\MailchimpListsWebhookSettingsForm::getEditableConfigNames()

Gets the configuration names that will be editable.

Return value

array An array of configuration object names that are editable if called in conjunction with the trait's config() method.

Overrides ConfigFormBaseTrait::getEditableConfigNames

File

modules/mailchimp_lists/src/Form/MailchimpListsWebhookSettingsForm.php, line 57

Class

MailchimpListsWebhookSettingsForm
Configure settings for a Mailchimp list webhook.

Namespace

Drupal\mailchimp_lists\Form

Code

protected function getEditableConfigNames() {
  return [
    'mailchimp_lists.webhook',
  ];
}