Index.php 454 B

123456789101112131415161718192021222324
  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. * Index backend controller
  10. */
  11. abstract class Index extends AbstractAction
  12. {
  13. /**
  14. * Check if user has permissions to access this controller
  15. *
  16. * @return bool
  17. */
  18. protected function _isAllowed()
  19. {
  20. return true;
  21. }
  22. }