Index.php 632 B

123456789101112131415161718192021222324
  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\Role;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class Index extends \Magento\User\Controller\Adminhtml\User\Role implements HttpGetActionInterface
  10. {
  11. /**
  12. * Show grid with roles existing in systems
  13. *
  14. * @return void
  15. */
  16. public function execute()
  17. {
  18. $this->_initAction();
  19. $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Roles'));
  20. $this->_view->renderLayout();
  21. }
  22. }