/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/EntityManager/Operation/CheckIfExists.php
81 строка
2 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2016 Adobe * All Rights Reserved. */ namespace Magento\Framework\EntityManager\Operation; use Magento\Framework\EntityManager\Operation\CheckIfExistsInterface; use Magento\Framework\EntityManager\MetadataPool; use Magento\Framework\EntityManager\HydratorPool; use Magento\Framework\EntityManager\TypeResolver; use Magento\Framework\App\ResourceConnection; /** * Class CheckIfExists */ class CheckIfExists implements CheckIfExistsInterface { /** * @var ResourceConnection */ private $resourceConnection; /** * @var MetadataPool */ private $metadataPool; /** * @var HydratorPool */ private $hydratorPool; /** * @var TypeResolver */ private $typeResolver; /** * @param MetadataPool $metadataPool * @param HydratorPool $hydratorPool * @param TypeResolver $typeResolver * @param ResourceConnection $resourceConnection */ public function __construct( TypeResolver $typeResolver, MetadataPool $metadataPool, HydratorPool $hydratorPool, ResourceConnection $resourceConnection ) { $this->metadataPool = $metadataPool; $this->hydratorPool = $hydratorPool; $this->typeResolver = $typeResolver; $this->resourceConnection = $resourceConnection; } /** * @param object $entity * @param array $arguments * @return bool * @throws \Exception * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function execute($entity, $arguments = []) { $entityType = $this->typeResolver->resolve($entity); $metadata = $this->metadataPool->getMetadata($entityType); $hydrator = $this->hydratorPool->getHydrator($entityType); $connection = $this->resourceConnection->getConnectionByName($metadata->getEntityConnectionName()); $entityData = $hydrator->extract($entity); if (!isset($entityData[$metadata->getIdentifierField()])) { return false; } return (bool)$connection->fetchOne( $connection->select() ->from($metadata->getEntityTable(), [$metadata->getIdentifierField()]) ->where($metadata->getIdentifierField() . ' = ?', $entityData[$metadata->getIdentifierField()]) ->limit(1) ); } }