You are here

protected function NodejsConfigSettingsForm::getEditableConfigNames in Node.js integration 8

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

nodejs_config/src/Form/NodejsConfigSettingsForm.php, line 224

Class

NodejsConfigSettingsForm
Node.js server configuration form.

Namespace

Drupal\nodejs_config\Form

Code

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