public function SmartTitleConfigForm::__construct in Smart Title 8
Constructs a new UpdateSettingsForm.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.
\Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager: The entity field manager.
\Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bunde_info: The entity type bundle info service.
Overrides ConfigFormBase::__construct
File
- modules/
smart_title_ui/ src/ Form/ SmartTitleConfigForm.php, line 56
Class
- SmartTitleConfigForm
- SmartTitleConfigForm.
Namespace
Drupal\smart_title_ui\FormCode
public function __construct(ConfigFactoryInterface $config_factory, EntityTypeManagerInterface $entity_type_manager, EntityFieldManagerInterface $entity_field_manager, EntityTypeBundleInfoInterface $entity_type_bunde_info) {
parent::__construct($config_factory);
$this->entityTypeManager = $entity_type_manager;
$this->entityFieldManager = $entity_field_manager;
$this->entityTypeBundleInfo = $entity_type_bunde_info;
}