Same name and namespace in other branches
  1. 8.x-1.x src/EntityClone/Content/TaxonomyTermEntityClone.php \Drupal\entity_clone\EntityClone\Content\TaxonomyTermEntityClone 1 comment

Class Taxonomy Term Entity Clone.

Hierarchy

Expanded class hierarchy of TaxonomyTermEntityClone

1 file declares its use of TaxonomyTermEntityClone
entity_clone.module in ./entity_clone.module
Contains entity_clone.module.

File

src/EntityClone/Content/TaxonomyTermEntityClone.php, line 10

Namespace

Drupal\entity_clone\EntityClone\Content
View source
class TaxonomyTermEntityClone extends ContentEntityCloneBase {
    
    /**
     * {@inheritdoc}
     */
    public function cloneEntity(EntityInterface $entity, EntityInterface $cloned_entity, array $properties = [], array &$already_cloned = []) {
        
        /** @var \Drupal\core\Entity\ContentEntityInterface $cloned_entity */
        // Enforce a parent if the cloned term doesn't have a parent.
        // (First level of a taxonomy tree).
        if (!isset($cloned_entity->parent->target_id)) {
            $cloned_entity->set('parent', 0);
        }
        return parent::cloneEntity($entity, $cloned_entity, $properties);
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
ContentEntityCloneBase::$currentUser protected property The current user.
ContentEntityCloneBase::$entityTypeId protected property The entity type ID.
ContentEntityCloneBase::$entityTypeManager protected property The entity type manager.
ContentEntityCloneBase::$timeService protected property A service for obtaining the system's time.
ContentEntityCloneBase::cloneReferencedEntities protected function Clones referenced entities.
ContentEntityCloneBase::createInstance public static function
ContentEntityCloneBase::fieldIsClonable protected function Determines if a field is clonable.
ContentEntityCloneBase::getChildProperties protected function Fetches the properties of a child entity.
ContentEntityCloneBase::hasTranslatableModerationState protected function Checks if the entity has the moderation state field and can be moderated.
ContentEntityCloneBase::setClonedEntityLabel protected function Sets the cloned entity's label.
ContentEntityCloneBase::setCreatedAndChangedDates protected function Resets the created and changed dates on the cloned entity.
ContentEntityCloneBase::setTranslationModerationState protected function Create moderation_state translations for the cloned entities.
ContentEntityCloneBase::__construct public function Constructs a new ContentEntityCloneBase.
TaxonomyTermEntityClone::cloneEntity public function Clone an entity. Overrides ContentEntityCloneBase::cloneEntity