You are here

public function ConfigForm::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_notify/src/Form/ConfigForm.php, line 59

Class

ConfigForm
Class ConfigForm

Namespace

Drupal\nodejs_notify\Form

Code

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