public FieldStorageAddForm::__construct(EntityManagerInterface $entity_manager, FieldTypePluginManagerInterface $field_type_plugin_manager, QueryFactory $query_factory, ConfigFactoryInterface $config_factory)
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 75
Class
- FieldStorageAddForm
- Provides a form for the "field storage" add page.
Namespace
Drupal\field_ui\Form
Code
1 2 3 4 5 6 | 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 ; } |
Please login to continue.