Activity.php 495 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Security\Controller\Adminhtml\Session;
  7. /**
  8. * Admin session activity
  9. */
  10. class Activity extends \Magento\Backend\App\Action
  11. {
  12. /**
  13. * @return void
  14. */
  15. public function execute()
  16. {
  17. $this->_view->loadLayout();
  18. $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Account Activity'));
  19. $this->_view->renderLayout();
  20. }
  21. }