Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Index.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
10 
11 class Index extends \Magento\AdminNotification\Controller\Adminhtml\Notification implements HttpGetActionInterface
12 {
16  public function execute()
17  {
18  $this->_view->loadLayout();
19  $this->_setActiveMenu(
20  'Magento_AdminNotification::system_adminnotification'
21  )->_addBreadcrumb(
22  __('Messages Inbox'),
23  __('Messages Inbox')
24  );
25  $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Notifications'));
26  $this->_view->renderLayout();
27  }
28 }
__()
Definition: __.php:13