You are here

protected function FixedBlockContentForm::getEditableConfigNames in Fixed Block Content 8

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/FixedBlockContentForm.php, line 23

Class

FixedBlockContentForm
Fixed block content form.

Namespace

Drupal\fixed_block_content\Form

Code

protected function getEditableConfigNames() {
  return [
    'fixed_block_content.fixed_block_content.' . $this->entity
      ->id(),
  ];
}