You are here

public function BehaviorForm::getConfigName in Synonyms 2.0.x

Helper function to generate form element names.

1 call to BehaviorForm::getConfigName()
BehaviorForm::getEditableConfigNames in src/Form/BehaviorForm.php
Gets the configuration names that will be editable.

File

src/Form/BehaviorForm.php, line 242

Class

BehaviorForm
The behavior form for given entity type.

Namespace

Drupal\synonyms\Form

Code

public function getConfigName($service_id) {
  return 'synonyms_' . $service_id . '.behavior.' . $this->entityType . '.' . $this->bundle;
}