![]() 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/cartforge.co/vendor/magento/module-sales/Helper/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Helper; use Magento\Store\Model\Store; /** * Sales module base helper * * @author Magento Core Team <[email protected]> */ class Data extends \Magento\Framework\App\Helper\AbstractHelper { /** * Check allow to send new order confirmation email * * @param null|string|bool|int|Store $store * @return bool */ public function canSendNewOrderConfirmationEmail($store = null) { return $this->scopeConfig->isSetFlag( \Magento\Sales\Model\Order\Email\Container\OrderIdentity::XML_PATH_EMAIL_ENABLED, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $store ); } /** * Check allow to send new order email * * @param null|string|bool|int|Store $store * @return bool */ public function canSendNewOrderEmail($store = null) { return $this->canSendNewOrderConfirmationEmail($store); } /** * Check allow to send order comment email * * @param null|string|bool|int|Store $store * @return bool */ public function canSendOrderCommentEmail($store = null) { return $this->scopeConfig->isSetFlag( \Magento\Sales\Model\Order\Email\Container\OrderCommentIdentity::XML_PATH_EMAIL_ENABLED, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $store ); } /** * Check allow to send new shipment email * * @param null|string|bool|int|Store $store * @return bool */ public function canSendNewShipmentEmail($store = null) { return $this->scopeConfig->isSetFlag( \Magento\Sales\Model\Order\Email\Container\ShipmentIdentity::XML_PATH_EMAIL_ENABLED, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $store ); } /** * Check allow to send shipment comment email * * @param null|string|bool|int|Store $store * @return bool */ public function canSendShipmentCommentEmail($store = null) { return $this->scopeConfig->isSetFlag( \Magento\Sales\Model\Order\Email\Container\ShipmentCommentIdentity::XML_PATH_EMAIL_ENABLED, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $store ); } /** * Check allow to send new invoice email * * @param null|string|bool|int|Store $store * @return bool */ public function canSendNewInvoiceEmail($store = null) { return $this->scopeConfig->isSetFlag( \Magento\Sales\Model\Order\Email\Container\InvoiceIdentity::XML_PATH_EMAIL_ENABLED, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $store ); } /** * Check allow to send invoice comment email * * @param null|string|bool|int|Store $store * @return bool */ public function canSendInvoiceCommentEmail($store = null) { return $this->scopeConfig->isSetFlag( \Magento\Sales\Model\Order\Email\Container\InvoiceCommentIdentity::XML_PATH_EMAIL_ENABLED, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $store ); } /** * Check allow to send new creditmemo email * * @param null|string|bool|int|Store $store * @return bool */ public function canSendNewCreditmemoEmail($store = null) { return $this->scopeConfig->isSetFlag( \Magento\Sales\Model\Order\Email\Container\CreditmemoIdentity::XML_PATH_EMAIL_ENABLED, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $store ); } /** * Check allow to send creditmemo comment email * * @param null|string|bool|int|Store $store * @return bool */ public function canSendCreditmemoCommentEmail($store = null) { return $this->scopeConfig->isSetFlag( \Magento\Sales\Model\Order\Email\Container\CreditmemoCommentIdentity::XML_PATH_EMAIL_ENABLED, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $store ); } }