You are here

protected function ConfigForm::getEditableConfigNames in MongoDB 8.2

Gets the configuration names that will be editable.

Return value

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

Overrides ConfigFormBaseTrait::getEditableConfigNames

File

modules/mongodb_watchdog/src/Form/ConfigForm.php, line 110

Class

ConfigForm
Class ConfigForm provides configuration for the MongoDB watchdog module.

Namespace

Drupal\mongodb_watchdog\Form

Code

protected function getEditableConfigNames() : array {
  return [
    'mongodb_watchdog.settings',
  ];
}