protected function NewRelicRpmSettings::getEditableConfigNames in New Relic 8
Same name and namespace in other branches
- 2.x src/Form/NewRelicRpmSettings.php \Drupal\new_relic_rpm\Form\NewRelicRpmSettings::getEditableConfigNames()
- 2.0.x src/Form/NewRelicRpmSettings.php \Drupal\new_relic_rpm\Form\NewRelicRpmSettings::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/ NewRelicRpmSettings.php, line 24
Class
- NewRelicRpmSettings
- Provides a settings form to configure the New Relic RPM module.
Namespace
Drupal\new_relic_rpm\FormCode
protected function getEditableConfigNames() {
return [
'new_relic_rpm.settings',
];
}