You are here

protected function LazyForm::getEditableConfigNames in Lazy-load 8.3

Same name and namespace in other branches
  1. 8 src/Form/LazyForm.php \Drupal\lazy\Form\LazyForm::getEditableConfigNames()
  2. 8.2 src/Form/LazyForm.php \Drupal\lazy\Form\LazyForm::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/LazyForm.php, line 100

Class

LazyForm
Configure Lazy settings for this site.

Namespace

Drupal\lazy\Form

Code

protected function getEditableConfigNames() : array {
  return [
    'lazy.settings',
    'image.settings',
  ];
}