File.php 499 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Downloadable\Controller\Adminhtml\Downloadable;
  7. /**
  8. * Downloadable File upload controller
  9. *
  10. * @author Magento Core Team <core@magentocommerce.com>
  11. */
  12. abstract class File extends \Magento\Backend\App\Action
  13. {
  14. /**
  15. * Authorization level of a basic admin session
  16. *
  17. * @see _isAllowed()
  18. */
  19. const ADMIN_RESOURCE = 'Magento_Catalog::products';
  20. }