| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.3/wp-content/plugins/woocommerce/src/Internal/Orders/ |
Upload File : |
<?php
/**
* PointOfSaleEmailHandler class file.
*/
declare( strict_types = 1 );
namespace Automattic\WooCommerce\Internal\Orders;
use Automattic\WooCommerce\Internal\RegisterHooksInterface;
use WC_Abstract_Order;
/**
* Suppresses standard automated emails for orders paid at POS.
*
* POS has its own email templates (customer_pos_completed_order,
* customer_pos_refunded_order) that are sent automatically or via REST API.
* This handler prevents the standard transactional emails from firing
* when an order is paid at POS, regardless of where it was created.
*
* @internal Just for internal use.
*
* @since 10.6.0
*/
class PointOfSaleEmailHandler implements RegisterHooksInterface {
/**
* Standard email IDs to suppress for POS-paid orders.
*/
private const SUPPRESSED_EMAIL_IDS = array(
'customer_processing_order',
'customer_completed_order',
'customer_on_hold_order',
'customer_refunded_order',
'customer_partially_refunded_order',
'new_order',
);
/**
* Register hooks and filters.
*/
public function register(): void {
foreach ( self::SUPPRESSED_EMAIL_IDS as $email_id ) {
add_filter( 'woocommerce_email_enabled_' . $email_id, array( $this, 'maybe_suppress_email' ), 10, 2 );
}
}
/**
* Suppress email if the order was paid at POS.
*
* @param bool $enabled Whether the email is enabled.
* @param mixed $order The order object (or null).
* @return bool False if the order was paid at POS, original value otherwise.
*
* @internal For exclusive usage within this class, backwards compatibility not guaranteed.
*/
public function maybe_suppress_email( bool $enabled, $order ): bool {
if ( ! $order instanceof WC_Abstract_Order ) {
return $enabled;
}
if ( PointOfSaleOrderUtil::is_order_paid_at_pos( $order ) ) {
return false;
}
return $enabled;
}
}