ConfigInterface.php 678 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\ImportExport\Model\Export;
  7. /**
  8. * Provides export configuration
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface ConfigInterface
  14. {
  15. /**
  16. * Retrieve import entities configuration
  17. *
  18. * @return array
  19. */
  20. public function getEntities();
  21. /**
  22. * Retrieve export file formats configuration
  23. *
  24. * @return array
  25. */
  26. public function getFileFormats();
  27. /**
  28. * Retrieve import entity types configuration
  29. *
  30. * @param string $entity
  31. * @return array
  32. */
  33. public function getEntityTypes($entity);
  34. }