feeds-8.x-3.0-alpha1/src/Feeds/Processor/TermProcessor.php
src/Feeds/Processor/TermProcessor.php
<?php
namespace Drupal\feeds\Feeds\Processor;
/**
* Defines a term processor.
*
* Creates taxonomy terms from feed items.
*
* @FeedsProcessor(
* id = "entity:taxonomy_term",
* title = @Translation("Term"),
* description = @Translation("Creates taxonomy terms from feed items."),
* entity_type = "taxonomy_term",
* arguments = {"@entity_type.manager", "@entity.query", "@entity_type.bundle.info"},
* form = {
* "configuration" = "Drupal\feeds\Feeds\Processor\Form\DefaultEntityProcessorForm",
* "option" = "Drupal\feeds\Feeds\Processor\Form\EntityProcessorOptionForm",
* },
* )
*/
class TermProcessor extends EntityProcessorBase {
}
