You are here

protected function GatsbyAdminForm::getEditableConfigNames in Gatsby Live Preview & Incremental Builds 2.0.x

Same name and namespace in other branches
  1. 8 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\Form

Code

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