System.php 496 B

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