public function ContentEntityConfirmFormBase::getBaseFormId in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php \Drupal\Core\Entity\ContentEntityConfirmFormBase::getBaseFormId()
- 10 core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php \Drupal\Core\Entity\ContentEntityConfirmFormBase::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/ ContentEntityConfirmFormBase.php, line 17
Class
- ContentEntityConfirmFormBase
- Provides a generic base class for an entity-based confirmation form.
Namespace
Drupal\Core\EntityCode
public function getBaseFormId() {
return $this->entity
->getEntityTypeId() . '_confirm_form';
}