You are here

Profile.php in Commerce Migrate 3.1.x

File

src/Plugin/migrate/destination/Profile.php
View source
<?php

namespace Drupal\commerce_migrate\Plugin\migrate\destination;

use Drupal\migrate\Plugin\migrate\destination\EntityContentBase;
use Drupal\Core\Entity\ContentEntityInterface;

/**
 * Saves a profile entity.
 *
 * @MigrateDestination(
 *   id = "entity:profile"
 * )
 */
class Profile extends EntityContentBase {

  /**
   * {@inheritdoc}
   */
  protected static function getEntityTypeId($plugin_id) {
    return 'profile';
  }

  /**
   * {@inheritdoc}
   */
  protected function save(ContentEntityInterface $entity, array $old_destination_id_values = []) {
    $entity
      ->save();
    return [
      $this
        ->getKey('id') => $entity
        ->id(),
      $this
        ->getKey('revision') => $entity
        ->getRevisionId(),
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function getIds() {
    $ids = parent::getIds();
    $ids[$this
      ->getKey('revision')]['type'] = 'integer';
    return $ids;
  }

}

Classes

Namesort descending Description
Profile Saves a profile entity.