You are here

public function UserAccessForm::getEditableConfigNames in Taxonomy Access Control Lite 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/UserAccessForm.php, line 24

Class

UserAccessForm
Builds the form for User Access.

Namespace

Drupal\tac_lite\Form

Code

public function getEditableConfigNames() {
  return [
    'tac_lite.settings',
  ];
}