public EntityConfirmFormBase::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
- core/lib/Drupal/Core/Entity/EntityConfirmFormBase.php, line 19
Class
- EntityConfirmFormBase
- Provides a generic base class for an entity-based confirmation form.
Namespace
Drupal\Core\Entity
Code
public function getBaseFormId() { return $this->entity->getEntityTypeId() . '_confirm_form'; }
Please login to continue.