EntityType::setFormClass

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

public function setFormClass($operation, $class) {
  $this->handlers['form'][$operation] = $class;
  return $this;
}
doc_Drupal
2016-10-29 09:08:07
Comments
Leave a Comment

Please login to continue.