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