You are here

public function RestExampleClientSettings::getEditableConfigNames in Examples for Developers 3.x

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/rest_example/src/Form/RestExampleClientSettings.php, line 73

Class

RestExampleClientSettings
Setup form for a Drupal REST client.

Namespace

Drupal\rest_example\Form

Code

public function getEditableConfigNames() {
  return [
    'rest_example.settings',
  ];
}