You are here

function paragraphs_table_entity_type_build in Paragraphs table 8

Implements hook_entity_type_build().

File

./paragraphs_table.module, line 267
Contains paragraphs_table.module.

Code

function paragraphs_table_entity_type_build(array &$entity_types) {
  $entity_types['paragraph']
    ->setFormClass('entity_edit', ParagraphEditForm::class);
  $entity_types['paragraph']
    ->setFormClass('entity_clone', ParagraphCloneForm::class);
  $entity_types['paragraph']
    ->setFormClass('entity_delete', ParagraphDeleteForm::class);
}