You are here

ReplicationDataEvents.php in Replication 8

Same filename and directory in other branches
  1. 8.2 src/Event/ReplicationDataEvents.php

File

src/Event/ReplicationDataEvents.php
View source
<?php

namespace Drupal\replication\Event;


/**
 * Replication events.
 */
final class ReplicationDataEvents {

  /**
   * Allows altering of normalized content data.
   *
   * This event allows modules to perform an action whenever a content entity
   *  is normalized by the ContentEntityNormalizer. The event listener method
   *  receives a \Drupal\replication\Event\ContentDataAlterEvent instance.
   */
  const ALTER_CONTENT_DATA = 'replication.alter.content';

}

Classes

Namesort descending Description
ReplicationDataEvents Replication events.