| Current Path : /home/rtorresani/www/vendor/mageplaza/module-smtp/Observer/Customer/ |
| Current File : //home/rtorresani/www/vendor/mageplaza/module-smtp/Observer/Customer/LoginSuccess.php |
<?php
/**
* Mageplaza
*
* NOTICE OF LICENSE
*
* This source file is subject to the Mageplaza.com license that is
* available through the world-wide-web at this URL:
* https://www.mageplaza.com/LICENSE.txt
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this extension to newer
* version in the future.
*
* @category Mageplaza
* @package Mageplaza_Smtp
* @copyright Copyright (c) Mageplaza (https://www.mageplaza.com/)
* @license https://www.mageplaza.com/LICENSE.txt
*/
namespace Mageplaza\Smtp\Observer\Customer;
use Exception;
use Magento\Framework\Event\Observer;
use Magento\Framework\Event\ObserverInterface;
use Magento\PageCache\Model\Cache\Type;
use Mageplaza\Smtp\Helper\Data;
use Mageplaza\Smtp\Helper\EmailMarketing;
use Zend_Cache;
/**
* Class LoginSuccess
* @package Mageplaza\Smtp\Observer\Customer
*/
class LoginSuccess implements ObserverInterface
{
/**
* @var Type
*/
protected $fullPageCache;
/**
* @var EmailMarketing
*/
protected $helperEmailMarketing;
/**
* @var Data
*/
protected $helperData;
/**
* LoginSuccess constructor.
*
* @param Type $fullPageCache
* @param Data $helperData
* @param EmailMarketing $helperEmailMarketing
*/
public function __construct(
Type $fullPageCache,
Data $helperData,
EmailMarketing $helperEmailMarketing
) {
$this->fullPageCache = $fullPageCache;
$this->helperData = $helperData;
$this->helperEmailMarketing = $helperEmailMarketing;
}
/**
* @param Observer $observer
*/
public function execute(Observer $observer)
{
try {
$scopeId = $this->helperData->getScopeId();
} catch (Exception $e) {
$scopeId = null;
}
if ($this->helperEmailMarketing->isEnableEmailMarketing($scopeId)) {
$this->fullPageCache->clean(Zend_Cache::CLEANING_MODE_MATCHING_ANY_TAG, [EmailMarketing::CACHE_TAG]);
}
}
}