12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\ImportExport\Model\Export;
- /**
- * Provides export configuration
- *
- * @api
- * @since 100.0.2
- */
- interface ConfigInterface
- {
- /**
- * Retrieve import entities configuration
- *
- * @return array
- */
- public function getEntities();
- /**
- * Retrieve export file formats configuration
- *
- * @return array
- */
- public function getFileFormats();
- /**
- * Retrieve import entity types configuration
- *
- * @param string $entity
- * @return array
- */
- public function getEntityTypes($entity);
- }
|