12345678910111213141516171819202122232425262728 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\AdminNotification\Controller\Adminhtml\Notification;
- use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
- class Index extends \Magento\AdminNotification\Controller\Adminhtml\Notification implements HttpGetActionInterface
- {
- /**
- * @return void
- */
- public function execute()
- {
- $this->_view->loadLayout();
- $this->_setActiveMenu(
- 'Magento_AdminNotification::system_adminnotification'
- )->_addBreadcrumb(
- __('Messages Inbox'),
- __('Messages Inbox')
- );
- $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Notifications'));
- $this->_view->renderLayout();
- }
- }
|