Grid.php 446 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\Locks;
  8. /**
  9. * Locked users grid
  10. */
  11. class Grid extends \Magento\User\Controller\Adminhtml\Locks
  12. {
  13. /**
  14. * Render AJAX-grid only
  15. *
  16. * @return void
  17. */
  18. public function execute()
  19. {
  20. $this->_view->loadLayout(false);
  21. $this->_view->renderLayout();
  22. }
  23. }