Account.php 497 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\System;
  7. use Magento\Backend\App\Action;
  8. /**
  9. * Adminhtml account controller
  10. *
  11. * @author Magento Core Team <core@magentocommerce.com>
  12. */
  13. abstract class Account extends Action
  14. {
  15. /**
  16. * Authorization level of a basic admin session
  17. *
  18. * @see _isAllowed()
  19. */
  20. const ADMIN_RESOURCE = 'Magento_Backend::myaccount';
  21. }