You are here

protected function MenuImportForm::getEditableConfigNames in Menu Import and Export 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/MenuImportForm.php, line 25

Class

MenuImportForm
Configure Menu Export settings.

Namespace

Drupal\menu_export\Form

Code

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