123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\ImportExport\Model\Export;
- use Magento\Framework\Serialize\SerializerInterface;
- /**
- * Provides export configuration
- */
- class Config extends \Magento\Framework\Config\Data implements \Magento\ImportExport\Model\Export\ConfigInterface
- {
- /**
- * Constructor
- *
- * @param Config\Reader $reader
- * @param \Magento\Framework\Config\CacheInterface $cache
- * @param string|null $cacheId
- * @param SerializerInterface|null $serializer
- */
- public function __construct(
- \Magento\ImportExport\Model\Export\Config\Reader $reader,
- \Magento\Framework\Config\CacheInterface $cache,
- $cacheId = 'export_config_cache',
- SerializerInterface $serializer = null
- ) {
- parent::__construct($reader, $cache, $cacheId, $serializer);
- }
- /**
- * Retrieve export entities configuration
- *
- * @return array
- */
- public function getEntities()
- {
- return $this->get('entities');
- }
- /**
- * Retrieve export entity types configuration
- *
- * @param string $entity
- * @return array
- */
- public function getEntityTypes($entity)
- {
- $entities = $this->getEntities();
- return isset($entities[$entity]) ? $entities[$entity]['types'] : [];
- }
- /**
- * Retrieve export file formats configuration
- *
- * @return array
- */
- public function getFileFormats()
- {
- return $this->get('fileFormats');
- }
- }
|