public function UpdateUtils::__construct in Scheduled Updates 8
UpdateUtils constructor.
Parameters
\Drupal\Core\Entity\EntityFieldManagerInterface $entityFieldManager:
\Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager:
\Drupal\Core\Entity\EntityTypeBundleInfoInterface $bundleInfo:
File
- src/
UpdateUtils.php, line 45
Class
- UpdateUtils
- Service to determine information about Scheduled Update Types.
Namespace
Drupal\scheduled_updatesCode
public function __construct(EntityFieldManagerInterface $entityFieldManager, EntityTypeManagerInterface $entityTypeManager, EntityTypeBundleInfoInterface $bundleInfo) {
$this->entityFieldManager = $entityFieldManager;
$this->entityTypeManager = $entityTypeManager;
$this->bundleInfo = $bundleInfo;
}