You are here

protected function CartLinksSettingsForm::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_cart_links/src/Form/CartLinksSettingsForm.php, line 52

Class

CartLinksSettingsForm
Configure general shopping cart settings for this site.

Namespace

Drupal\uc_cart_links\Form

Code

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