protected function GatsbyAdminForm::getEditableConfigNames in Gatsby Live Preview & Incremental Builds 8
Same name and namespace in other branches
- 2.0.x src/Form/GatsbyAdminForm.php \Drupal\gatsby\Form\GatsbyAdminForm::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/ GatsbyAdminForm.php, line 70
Class
- GatsbyAdminForm
- Defines a config form to store Gatsby configuration.
Namespace
Drupal\gatsby\FormCode
protected function getEditableConfigNames() {
return [
'gatsby.settings',
];
}