You are here

public function WebformConfigEntityDeleteFormBase::getBaseFormId in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Form/WebformConfigEntityDeleteFormBase.php \Drupal\webform\Form\WebformConfigEntityDeleteFormBase::getBaseFormId()

Returns a string identifying the base form.

Return value

string|null The string identifying the base form or NULL if this is not a base form.

Overrides EntityForm::getBaseFormId

File

src/Form/WebformConfigEntityDeleteFormBase.php, line 30

Class

WebformConfigEntityDeleteFormBase
Provides a generic base class for a webform entity deletion form.

Namespace

Drupal\webform\Form

Code

public function getBaseFormId() {
  return $this->entity
    ->getEntityTypeId() . '_confirm_form';
}