You are here

public function ActionEditFieldForm::__construct in Paragraphs table 8

Constructs a new EditFieldForm.

Parameters

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.

\Drupal\Core\Entity\EntityStorageInterface $node_type_storage: The node type storage.

File

src/Form/ActionEditFieldForm.php, line 45

Class

ActionEditFieldForm
Builds and process a form for editing a single entity field.

Namespace

Drupal\paragraphs_table\Form

Code

public function __construct(ModuleHandlerInterface $module_handler, EntityStorageInterface $node_type_storage) {
  $this->moduleHandler = $module_handler;
  $this->nodeTypeStorage = $node_type_storage;
}