You are here

public function EmaillogConfigForm::getEditableConfigNames in Logging and alerts 8

Same name and namespace in other branches
  1. 2.0.x emaillog/src/Form/EmaillogConfigForm.php \Drupal\emaillog\Form\EmaillogConfigForm::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

emaillog/src/Form/EmaillogConfigForm.php, line 27

Class

EmaillogConfigForm
Provides a setting UI for emaillog.

Namespace

Drupal\emaillog\Form

Code

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