You are here

protected function LogStdoutConfigForm::getEditableConfigNames in log_stdout 8

Same name and namespace in other branches
  1. 8.2 src/Form/LogStdoutConfigForm.php \Drupal\log_stdout\Form\LogStdoutConfigForm::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/LogStdoutConfigForm.php, line 82

Class

LogStdoutConfigForm
Provides a settings form for stdout logging.

Namespace

Drupal\log_stdout\Form

Code

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