Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/EntityTypeInterface.php \Drupal\Core\Entity\EntityTypeInterface::getFormClass()
  2. 9 core/lib/Drupal/Core/Entity/EntityTypeInterface.php \Drupal\Core\Entity\EntityTypeInterface::getFormClass()

Gets the form class for a specific operation.

Parameters

string $operation: The name of the operation to use, e.g., 'default'.

Return value

string|null The class for this operation's form for this entity type or NULL if the entity type does not have a form class for this operation.

See also

\Drupal\Core\Entity\EntityFormBuilderInterface

1 method overrides EntityTypeInterface::getFormClass()
EntityType::getFormClass in core/lib/Drupal/Core/Entity/EntityType.php
Gets the form class for a specific operation.

File

core/lib/Drupal/Core/Entity/EntityTypeInterface.php, line 241

Class

EntityTypeInterface
Provides an interface for an entity type and its metadata.

Namespace

Drupal\Core\Entity

Code

public function getFormClass($operation);