Index.php 713 B

12345678910111213141516171819202122232425262728
  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\Locks;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. /**
  10. * Locks Index action
  11. */
  12. class Index extends \Magento\User\Controller\Adminhtml\Locks implements HttpGetActionInterface
  13. {
  14. /**
  15. * Render page with grid
  16. *
  17. * @return void
  18. */
  19. public function execute()
  20. {
  21. $this->_view->loadLayout();
  22. $this->_setActiveMenu('Magento_User::system_acl_locks');
  23. $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Locked Users'));
  24. $this->_view->renderLayout();
  25. }
  26. }