replication-8.x-1.x-dev/src/Normalizer/TaxonomyTermNormalizer.php

src/Normalizer/TaxonomyTermNormalizer.php
<?php

namespace Drupal\replication\Normalizer;

use Drupal\taxonomy\TermInterface;

class TaxonomyTermNormalizer extends ContentEntityNormalizer {

  /**
   * @var string[]
   */
  protected $supportedInterfaceOrClass = ['\Drupal\taxonomy\Entity\Term'];

  /**
   * {@inheritdoc}
   */
  public function normalize($entity, $format = NULL, array $context = []) {
    $storage = $this->entityManager->getStorage($entity->getEntityTypeId());
    if (!isset($entity->parent->target_id)) {
      $parents = $storage->loadParents($entity->id());
      $parent = reset($parents);
      if ($parent instanceof TermInterface) {
        $entity->parent->target_id = $parent->id();
      }
      else {
        $entity->parent->target_id = 0;
      }
    }

    return parent::normalize($entity, $format, $context);
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc