Support Entity Clone

Created on 12 February 2024, about 1 year ago

Does the module support Entity Clone → module?

e.g. after cloning an entity that has a registration, we should have a clone of registration for the new entity.

💬 Support request
Status

Active

Version

3.1

Component

Registration Core

Created by

🇺🇦Ukraine AstonVictor

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @AstonVictor
  • 🇺🇦Ukraine AstonVictor

    I guess as a solution we can use a custom clone callback:

      /**
       * {@inheritdoc}
       */
      public function cloneEntity(EntityInterface $entity, EntityInterface $cloned_entity, array $properties = [], array &$already_cloned = []) {
        $cloned_entity = parent::cloneEntity($entity, $cloned_entity);
    
        $registration_storage = \Drupal::entityTypeManager()->getStorage('registration_settings');
    
        $registration_query = $registration_storage->getQuery();
        $registration_query->accessCheck(FALSE);
        $registration_query->condition('entity_type_id', $entity->getEntityTypeId());
        $registration_query->condition('entity_id', $entity->id());
    
        if ($results = $registration_query->execute()) {
          $registration_id = reset($results);
          $registration = $registration_storage->load($registration_id);
    
          $duplicate = $registration->createDuplicate();
          $duplicate->set('entity_id', $cloned_entity->id());
          $duplicate->save();
        }
    
        return $cloned_entity;
      }
    
  • 🇮🇳India Raveen Kumar

    @Aston, yes, Overall, this code ensures that when an entity is cloned, any associated registration settings are also cloned and associated with the new entity. This allows for consistent behavior when cloning entities with registration settings

  • 🇺🇦Ukraine AstonVictor

    yeah,
    but my question: is it possible to do it without writing custom code? e.g. a new submodule

  • 🇮🇳India Raveen Kumar

    @Aston, I think depending on the specific requirements and intricacies of your use case, you may still need to implement custom code or configuration to achieve the desired outcome.

  • First commit to issue fork.
  • Pipeline finished with Failed
    about 1 year ago
    Total: 218s
    #98884
  • Pipeline finished with Failed
    about 1 year ago
    Total: 237s
    #98930
  • Pipeline finished with Failed
    about 1 year ago
    Total: 245s
    #98933
  • Pipeline finished with Canceled
    about 1 year ago
    Total: 57s
    #98940
  • Pipeline finished with Failed
    about 1 year ago
    Total: 237s
    #98941
  • Pipeline finished with Success
    about 1 year ago
    Total: 316s
    #98944
  • Pipeline finished with Success
    about 1 year ago
    Total: 318s
    #98946
  • Pipeline finished with Success
    about 1 year ago
    Total: 326s
    #99703
  • Status changed to Postponed about 1 year ago
  • 🇬🇧United Kingdom jonathanshaw Stroud, UK

    Unfortunately the approach here is blocked by an upstream issue ✨ Add PRE_CLONE/POST_CLONE event dispatch handling to sub referenced entities Needs work . So we should postpone this on that.

Production build 0.71.5 2024