123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?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 <core@magentocommerce.com>
- */
- 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
- );
- }
- }
|