You are here

protected function SimplePopupBlocksAddForm::getEditableConfigNames in Simple Popup Blocks 8.2

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

1 method overrides SimplePopupBlocksAddForm::getEditableConfigNames()
SimplePopupBlocksEditForm::getEditableConfigNames in src/Form/SimplePopupBlocksEditForm.php
Gets the configuration names that will be editable.

File

src/Form/SimplePopupBlocksAddForm.php, line 78

Class

SimplePopupBlocksAddForm
Form to add a popup entry.

Namespace

Drupal\simple_popup_blocks\Form

Code

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