You are here

protected function JsonapiExtrasSettingsForm::getEditableConfigNames in JSON:API Extras 8.3

Same name and namespace in other branches
  1. 8 src/Form/JsonapiExtrasSettingsForm.php \Drupal\jsonapi_extras\Form\JsonapiExtrasSettingsForm::getEditableConfigNames()
  2. 8.2 src/Form/JsonapiExtrasSettingsForm.php \Drupal\jsonapi_extras\Form\JsonapiExtrasSettingsForm::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

src/Form/JsonapiExtrasSettingsForm.php, line 47

Class

JsonapiExtrasSettingsForm
Configure JSON:API settings for this site.

Namespace

Drupal\jsonapi_extras\Form

Code

protected function getEditableConfigNames() {
  return [
    'jsonapi_extras.settings',
  ];
}