You are here

protected function SimplePopupBlocksEditForm::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 SimplePopupBlocksAddForm::getEditableConfigNames

File

src/Form/SimplePopupBlocksEditForm.php, line 21

Class

SimplePopupBlocksEditForm
Form to add a database entry, with all the interesting fields.

Namespace

Drupal\simple_popup_blocks\Form

Code

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