1234567891011121314151617181920212223242526 |
- <?php
- namespace Smartwave\Core\Observer;
- use Magento\Framework\Event\ObserverInterface;
- class PredispatchAdminActionControllerObserver implements ObserverInterface
- {
- protected $_feedFactory;
- protected $_backendAuthSession;
- public function __construct(
- \Smartwave\Core\Model\FeedFactory $feedFactory,
- \Magento\Backend\Model\Auth\Session $backendAuthSession
- ) {
- $this->_feedFactory = $feedFactory;
- $this->_backendAuthSession = $backendAuthSession;
- }
- public function execute(\Magento\Framework\Event\Observer $observer)
- {
- if ($this->_backendAuthSession->isLoggedIn()) {
- $feedModel = $this->_feedFactory->create();
- $feedModel->checkUpdate();
- }
- }
- }
|