You are here

protected function AutoEntityLabelForm::getConfigName in Automatic Entity Label 8.2

Same name and namespace in other branches
  1. 8.3 src/Form/AutoEntityLabelForm.php \Drupal\auto_entitylabel\Form\AutoEntityLabelForm::getConfigName()

Get the config name for this entity & bundle.

Return value

string The compiled config name.

2 calls to AutoEntityLabelForm::getConfigName()
AutoEntityLabelForm::buildForm in src/Form/AutoEntityLabelForm.php
Form constructor.
AutoEntityLabelForm::submitForm in src/Form/AutoEntityLabelForm.php
Form submission handler.

File

src/Form/AutoEntityLabelForm.php, line 151

Class

AutoEntityLabelForm
Class AutoEntityLabelForm.

Namespace

Drupal\auto_entitylabel\Form

Code

protected function getConfigName() {
  return 'auto_entitylabel.settings.' . $this->entityTypeBundleOf . '.' . $this->entityBundle;
}