You are here

public function EntityForm::getFormId in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/EntityForm.php \Drupal\Core\Entity\EntityForm::getFormId()

Returns a unique string identifying the form.

Return value

string The unique string identifying the form.

Overrides FormInterface::getFormId

1 call to EntityForm::getFormId()
EntityForm::getBaseFormId in core/lib/Drupal/Core/Entity/EntityForm.php
Returns a string identifying the base form.
9 methods override EntityForm::getFormId()
BreakLockForm::getFormId in core/modules/views_ui/src/Form/BreakLockForm.php
Returns a unique string identifying the form.
ContentTranslationDeleteForm::getFormId in core/modules/content_translation/src/Form/ContentTranslationDeleteForm.php
Returns a unique string identifying the form.
LanguageAddForm::getFormId in core/modules/language/src/Form/LanguageAddForm.php
Returns a unique string identifying the form.
LanguageDeleteForm::getFormId in core/modules/language/src/Form/LanguageDeleteForm.php
Returns a unique string identifying the form.
LanguageEditForm::getFormId in core/modules/language/src/Form/LanguageEditForm.php
Returns a unique string identifying the form.

... See full list

File

core/lib/Drupal/Core/Entity/EntityForm.php, line 92
Contains \Drupal\Core\Entity\EntityForm.

Class

EntityForm
Base class for entity forms.

Namespace

Drupal\Core\Entity

Code

public function getFormId() {
  $form_id = $this->entity
    ->getEntityTypeId();
  if ($this->entity
    ->getEntityType()
    ->hasKey('bundle')) {
    $form_id .= '_' . $this->entity
      ->bundle();
  }
  if ($this->operation != 'default') {
    $form_id = $form_id . '_' . $this->operation;
  }
  return $form_id . '_form';
}