You are here

protected function TaxonomiesSyncForm::getEditableConfigNames in Structure Sync 8

Same name and namespace in other branches
  1. 2.x src/Form/TaxonomiesSyncForm.php \Drupal\structure_sync\Form\TaxonomiesSyncForm::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/TaxonomiesSyncForm.php, line 52

Class

TaxonomiesSyncForm
Import and export form for content in structure, like taxonomy terms.

Namespace

Drupal\structure_sync\Form

Code

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