You are here

protected function CustomServicesEditForm::getEditableConfigNames in Shorten URLs 8.2

Same name and namespace in other branches
  1. 8 modules/shorten_cs/src/Form/CustomServicesEditForm.php \Drupal\shorten_cs\Form\CustomServicesEditForm::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

modules/shorten_cs/src/Form/CustomServicesEditForm.php, line 85

Class

CustomServicesEditForm
Settings form.

Namespace

Drupal\shorten_cs\Form

Code

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