public function 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 507

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;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!EntityType.php/function/EntityType::setFormClass/8.1.x