You are here

protected function BlazySettingsForm::getEditableConfigNames in Blazy 8

Same name and namespace in other branches
  1. 8.2 blazy_ui/src/Form/BlazySettingsForm.php \Drupal\blazy_ui\Form\BlazySettingsForm::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

blazy_ui/src/Form/BlazySettingsForm.php, line 24

Class

BlazySettingsForm
Defines blazy admin settings form.

Namespace

Drupal\blazy_ui\Form

Code

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