You are here

protected function AddressFieldsForm::getEditableConfigNames in Ubercart 8.4

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

uc_store/src/Form/AddressFieldsForm.php, line 23

Class

AddressFieldsForm
Configure address field settings for this store.

Namespace

Drupal\uc_store\Form

Code

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