Index.php 825 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\AdminNotification\Controller\Adminhtml\Notification;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class Index extends \Magento\AdminNotification\Controller\Adminhtml\Notification implements HttpGetActionInterface
  10. {
  11. /**
  12. * @return void
  13. */
  14. public function execute()
  15. {
  16. $this->_view->loadLayout();
  17. $this->_setActiveMenu(
  18. 'Magento_AdminNotification::system_adminnotification'
  19. )->_addBreadcrumb(
  20. __('Messages Inbox'),
  21. __('Messages Inbox')
  22. );
  23. $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Notifications'));
  24. $this->_view->renderLayout();
  25. }
  26. }