![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/mageplaza/module-smtp/Helper/ |
<?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\Helper; use Magento\Framework\Encryption\EncryptorInterface; use Magento\Framework\Exception\LocalizedException; use Magento\Store\Model\ScopeInterface; use Mageplaza\Core\Helper\AbstractData; /** * Class Data * @package Mageplaza\Smtp\Helper */ class Data extends AbstractData { const CONFIG_MODULE_PATH = 'smtp'; const EMAIL_MARKETING = 'email_marketing'; const CONFIG_GROUP_SMTP = 'configuration_option'; const DEVELOP_GROUP_SMTP = 'developer'; /** * @param string $code * @param null $storeId * * @return mixed */ public function getSmtpConfig($code = '', $storeId = null) { $code = ($code !== '') ? '/' . $code : ''; return $this->getModuleConfig(self::CONFIG_GROUP_SMTP . $code, $storeId); } /** * @param string $code * @param null $storeId * * @return mixed */ public function getDeveloperConfig($code = '', $storeId = null) { $code = ($code !== '') ? '/' . $code : ''; return $this->getModuleConfig(self::DEVELOP_GROUP_SMTP . $code, $storeId); } /** * @param null $storeId * @param bool $decrypt * * @return array|mixed|string */ public function getPassword($storeId = null, $decrypt = true) { if ($storeId || $storeId = $this->_request->getParam('store')) { $password = $this->getSmtpConfig('password', $storeId); } elseif ($websiteCode = $this->_request->getParam('website')) { $passwordPath = self::CONFIG_MODULE_PATH . '/' . self::CONFIG_GROUP_SMTP . '/password'; $password = $this->getConfigValue($passwordPath, $websiteCode, ScopeInterface::SCOPE_WEBSITE); } else { $password = $this->getSmtpConfig('password'); } if ($decrypt) { /** @var EncryptorInterface $encryptor */ $encryptor = $this->getObject(EncryptorInterface::class); return $encryptor->decrypt($password); } return $password; } /** * @return int * @throws LocalizedException */ public function getScopeId() { $scope = $this->_request->getParam(ScopeInterface::SCOPE_STORE) ?: $this->storeManager->getStore()->getId(); if ($website = $this->_request->getParam(ScopeInterface::SCOPE_WEBSITE)) { $scope = $this->storeManager->getWebsite($website)->getDefaultStore()->getId(); } return $scope; } /** * @param null $storeId * * @return mixed */ public function getBlacklist($storeId = null) { return $this->getConfigGeneral('blacklist', $storeId); } /** * @return bool */ public function isTestEmail() { return $this->_request->getFullActionName() === 'adminhtml_smtp_test'; } /** * @param string $code * @param null $storeId * * @return mixed */ public function getEmailMarketingConfig($code = '', $storeId = null) { $code = ($code !== '') ? '/' . $code : ''; return $this->getConfigValue(static::EMAIL_MARKETING . '/general' . $code, $storeId); } /** * @param null $storeId * * @return bool */ public function isEnableEmailMarketing($storeId = null) { return $this->getEmailMarketingConfig('enabled', $storeId); } }