Index.php 567 B

12345678910111213141516171819202122
  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 as HttpGetActionInterface;
  9. class Index extends \Magento\User\Controller\Adminhtml\User implements HttpGetActionInterface
  10. {
  11. /**
  12. * @return void
  13. */
  14. public function execute()
  15. {
  16. $this->_initAction();
  17. $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Users'));
  18. $this->_view->renderLayout();
  19. }
  20. }