123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\AdminNotification\Observer;
- use Magento\Framework\Event\ObserverInterface;
- /**
- * AdminNotification observer
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- class PredispatchAdminActionControllerObserver implements ObserverInterface
- {
- /**
- * @var \Magento\AdminNotification\Model\FeedFactory
- */
- protected $_feedFactory;
- /**
- * @var \Magento\Backend\Model\Auth\Session
- */
- protected $_backendAuthSession;
- /**
- * @param \Magento\AdminNotification\Model\FeedFactory $feedFactory
- * @param \Magento\Backend\Model\Auth\Session $backendAuthSession
- */
- public function __construct(
- \Magento\AdminNotification\Model\FeedFactory $feedFactory,
- \Magento\Backend\Model\Auth\Session $backendAuthSession
- ) {
- $this->_feedFactory = $feedFactory;
- $this->_backendAuthSession = $backendAuthSession;
- }
- /**
- * Predispatch admin action controller
- *
- * @param \Magento\Framework\Event\Observer $observer
- * @return void
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function execute(\Magento\Framework\Event\Observer $observer)
- {
- if ($this->_backendAuthSession->isLoggedIn()) {
- $feedModel = $this->_feedFactory->create();
- /* @var $feedModel \Magento\AdminNotification\Model\Feed */
- $feedModel->checkUpdate();
- }
- }
- }
|