You are here

MessageTemplateDestination.php in Message 8

File

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

namespace Drupal\message\Plugin\migrate\destination;

use Drupal\migrate\Plugin\migrate\destination\EntityConfigBase;
use Drupal\Core\Entity\EntityInterface;
use Drupal\migrate\Row;

/**
 * @MigrateDestination(
 *   id = "entity:message_template"
 * )
 */
class MessageTemplateDestination extends EntityConfigBase {

  /**
   * {@inheritdoc}
   */
  protected function updateEntity(EntityInterface $entity, Row $row) {
    parent::updateEntity($entity, $row);
    if ($row
      ->getDestinationProperty('text')) {
      $entity
        ->set('text', $row
        ->getDestinationProperty('text'));
    }
  }

}

Classes

Namesort descending Description
MessageTemplateDestination Plugin annotation @MigrateDestination( id = "entity:message_template" )