Import.php 572 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\ImportExport\Controller\Adminhtml;
  7. use Magento\Backend\App\Action;
  8. use Magento\ImportExport\Model\Import\Entity\AbstractEntity;
  9. use Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingErrorAggregatorInterface;
  10. /**
  11. * Import controller
  12. */
  13. abstract class Import extends Action
  14. {
  15. /**
  16. * Authorization level of a basic admin session
  17. *
  18. * @see _isAllowed()
  19. */
  20. const ADMIN_RESOURCE = 'Magento_ImportExport::import';
  21. }