RoleGrid.php 587 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\User\Controller\Adminhtml\User;
  8. use Magento\Framework\App\Action\HttpGetActionInterface;
  9. use Magento\Framework\App\Action\HttpPostActionInterface;
  10. use Magento\User\Controller\Adminhtml\User as UserAction;
  11. class RoleGrid extends UserAction implements HttpGetActionInterface, HttpPostActionInterface
  12. {
  13. /**
  14. * @return void
  15. */
  16. public function execute()
  17. {
  18. $this->_view->loadLayout(false);
  19. $this->_view->renderLayout();
  20. }
  21. }