entity_hierarchy-8.x-2.24/src/Storage/ParentEntityDeleteUpdater.php
src/Storage/ParentEntityDeleteUpdater.php
<?php
namespace Drupal\entity_hierarchy\Storage;
use Drupal\Core\Entity\ContentEntityInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Defines a class for updating the tree when a parent is deleted.
*/
class ParentEntityDeleteUpdater extends ParentEntityReactionBase {
/**
* Tree node mapper.
*
* @var \Drupal\entity_hierarchy\Storage\EntityTreeNodeMapperInterface
*/
protected $treeNodeMapper;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
$instance = (new static(
$container->get('entity_hierarchy.nested_set_storage_factory'),
$container->get('entity_hierarchy.nested_set_node_factory'),
$container->get('entity_hierarchy.information.parent_candidate'),
))->setLockBackend($container->get('lock'));
$instance->treeNodeMapper = $container->get('entity_hierarchy.entity_tree_node_mapper');
return $instance;
}
/**
* Moves children to their grandparent or root.
*
* @param \Drupal\Core\Entity\ContentEntityInterface $parent
* Parent being deleted.
*/
public function moveChildren(ContentEntityInterface $parent) {
if (!$parent->isDefaultRevision()) {
// We don't do anything here.
return;
}
if (!$fields = $this->parentCandidate->getCandidateFields($parent)) {
// There are no fields that could point to this entity.
return;
}
$stubNode = $this->nodeKeyFactory->fromEntity($parent);
foreach ($fields as $field_name) {
/** @var \Pnx\NestedSet\NestedSetInterface $storage */
$storage = $this->nestedSetStorageFactory->get($field_name, $parent->getEntityTypeId());
if ($children = $storage->findChildren($stubNode)) {
$parentNode = $storage->findParent($stubNode);
$childEntities = $this->treeNodeMapper->loadEntitiesForTreeNodesWithoutAccessChecks($parent->getEntityTypeId(), $children);
foreach ($childEntities as $child_node) {
if (!$childEntities->offsetExists($child_node)) {
continue;
}
$child_entity = $childEntities->offsetGet($child_node);
$child_entity->{$field_name}->target_id = ($parentNode ? $parentNode->getId() : NULL);
if ($child_entity->getEntityType()->hasKey('revision')) {
// We don't want a new revision here.
$child_entity->setNewRevision(FALSE);
}
$child_entity->save();
}
}
$this->lockTree($field_name, $parent->getEntityTypeId());
if ($existingNode = $storage->getNode($stubNode)) {
$storage->deleteNode($existingNode);
}
$this->releaseLock($field_name, $parent->getEntityTypeId());
}
}
}
