You are here

UserProcessor.php in Content Synchronizer 8

File

src/Plugin/content_synchronizer/entity_processor/UserProcessor.php
View source
<?php

namespace Drupal\content_synchronizer\Plugin\content_synchronizer\entity_processor;

use Drupal\content_synchronizer\Processors\Entity\EntityProcessorBase;
use Drupal\Core\Entity\Entity;

/**
 * Plugin implementation of the 'accordion' formatter.
 *
 * @EntityProcessor(
 *   id = "content_synchronizer_user_processor",
 *   entityType = "user"
 * )
 */
class UserProcessor extends EntityProcessorBase {

  /**
   * {@inheritdoc}
   */
  public function getDataToExport(Entity $entityToExport) {
    return FALSE;
  }

}

Classes

Namesort descending Description
UserProcessor Plugin implementation of the 'accordion' formatter.