Export.php 421 B

123456789101112131415161718192021
  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. /**
  9. * Export controller
  10. */
  11. abstract class Export extends Action
  12. {
  13. /**
  14. * Authorization level of a basic admin session
  15. *
  16. * @see _isAllowed()
  17. */
  18. const ADMIN_RESOURCE = 'Magento_ImportExport::export';
  19. }