public function EmaillogConfigForm::getEditableConfigNames in Logging and alerts 8
Same name and namespace in other branches
- 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\FormCode
public function getEditableConfigNames() {
return [
'emaillog.settings',
];
}