You are here

EntityTestProcessor.php in Feeds 8.3

File

tests/modules/feeds_test_plugin/src/Feeds/Processor/EntityTestProcessor.php
View source
<?php

namespace Drupal\feeds_test_plugin\Feeds\Processor;

use Drupal\feeds\Feeds\Processor\EntityProcessorBase;

/**
 * Defines an entity_test processor.
 *
 * @FeedsProcessor(
 *   id = "entity:entity_test",
 *   title = @Translation("Test entity overridden"),
 *   description = @Translation("Creates test entities from feed items."),
 *   entity_type = "entity_test",
 *   form = {
 *     "configuration" = "Drupal\feeds\Feeds\Processor\Form\DefaultEntityProcessorForm",
 *     "option" = "Drupal\feeds\Feeds\Processor\Form\EntityProcessorOptionForm",
 *   },
 * )
 */
class EntityTestProcessor extends EntityProcessorBase {

}

Classes

Namesort descending Description
EntityTestProcessor Defines an entity_test processor.