public EntityType::setFormClass($operation, $class)
Sets a form class for a specific operation.
Parameters
string $operation: The operation to use this form class for.
string $class: The form class implementing \Drupal\Core\Entity\EntityFormInterface.
Return value
$this
Overrides EntityTypeInterface::setFormClass
See also
\Drupal\Core\Entity\EntityFormBuilderInterface
File
- core/lib/Drupal/Core/Entity/EntityType.php, line 508
Class
- EntityType
- Provides an implementation of an entity type and its metadata.
Namespace
Drupal\Core\Entity
Code
1 2 3 4 | public function setFormClass( $operation , $class ) { $this ->handlers[ 'form' ][ $operation ] = $class ; return $this ; } |
Please login to continue.