ReinstallTermSource.php 329 B

1234567891011121314151617
  1. <?php
  2. namespace Drupal\reinstall\Plugin\migrate\source;
  3. use Drupal\migrate\Plugin\MigrationInterface;
  4. use Symfony\Component\EventDispatcher\EventDispatcherInterface;
  5. /**
  6. * Source plugin for terms from a YAML file.
  7. *
  8. * @MigrateSource(
  9. * id = "reinstall_terms"
  10. * )
  11. */
  12. class ReinstallTermSource extends SimpleSource {
  13. }