You are here

public function FieldStorageAddForm::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/field_ui/src/Form/FieldStorageAddForm.php \Drupal\field_ui\Form\FieldStorageAddForm::__construct()

Constructs a new FieldStorageAddForm object.

Parameters

\Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager.

\Drupal\Core\Field\FieldTypePluginManagerInterface $field_type_plugin_manager: The field type plugin manager.

\Drupal\Core\Entity\Query\QueryFactory $query_factory: The entity query factory.

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The configuration factory.

File

core/modules/field_ui/src/Form/FieldStorageAddForm.php, line 80
Contains \Drupal\field_ui\Form\FieldStorageAddForm.

Class

FieldStorageAddForm
Provides a form for the "field storage" add page.

Namespace

Drupal\field_ui\Form

Code

public function __construct(EntityManagerInterface $entity_manager, FieldTypePluginManagerInterface $field_type_plugin_manager, QueryFactory $query_factory, ConfigFactoryInterface $config_factory) {
  $this->entityManager = $entity_manager;
  $this->fieldTypePluginManager = $field_type_plugin_manager;
  $this->queryFactory = $query_factory;
  $this->configFactory = $config_factory;
}