public function EntityHelper::__construct in Simple XML sitemap 8.3
Same name and namespace in other branches
- 8.2 src/EntityHelper.php \Drupal\simple_sitemap\EntityHelper::__construct()
EntityHelper constructor.
Parameters
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager:
\Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info:
\Drupal\Core\Config\ConfigFactoryInterface $configFactory:
File
- src/
EntityHelper.php, line 43
Class
- EntityHelper
- Helper class for working with entities.
Namespace
Drupal\simple_sitemapCode
public function __construct(EntityTypeManagerInterface $entity_type_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info, ConfigFactoryInterface $configFactory) {
$this->entityTypeManager = $entity_type_manager;
$this->entityTypeBundleInfo = $entity_type_bundle_info;
$this->configFactory = $configFactory;
}