123456789101112131415161718192021222324 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\User\Controller\Adminhtml\User\Role;
- use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
- class Index extends \Magento\User\Controller\Adminhtml\User\Role implements HttpGetActionInterface
- {
- /**
- * Show grid with roles existing in systems
- *
- * @return void
- */
- public function execute()
- {
- $this->_initAction();
- $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Roles'));
- $this->_view->renderLayout();
- }
- }
|