You are here

protected function TaxRateMethodsForm::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_tax/src/Form/TaxRateMethodsForm.php, line 24

Class

TaxRateMethodsForm
Displays a list of tax methods and rates.

Namespace

Drupal\uc_tax\Form

Code

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