/
/
home
/
melaqxso
/
public_html
/
wp-content
/
plugins
/
bookly-addon-pro
/
lib
/
notifications
/
cart
Server: server63.web-hosting.com (198.54.116.184)
You: 216.73.216.61
PHP 7.4.33
Dir:
/home/melaqxso/public_html/wp-content/plugins/bookly-addon-pro/lib/notifications/cart
Edit:
/home/melaqxso/public_html/wp-content/plugins/bookly-addon-pro/lib/notifications/cart/Sender.php
<?php namespace BooklyPro\Lib\Notifications\Cart; use Bookly\Lib\DataHolders\Booking\Item; use Bookly\Lib\DataHolders\Booking\Order; use Bookly\Lib\Entities\CustomerAppointment; use Bookly\Lib\Notifications\Assets\Item\Attachments; use Bookly\Lib\Notifications\Base; use Bookly\Backend\Components\Dialogs\Queue\NotificationList; use BooklyPro\Lib\Notifications\Assets\Combined\Codes; abstract class Sender extends Base\Sender { /** * Send combined notifications to client. * * @param Order $order * @param NotificationList|null $queue */ public static function sendCombined( Order $order, $queue = null ) { $items = $order->getItems(); /** @var Item $item */ $item = current( $items ); $ca = $item->getCA(); if ( $ca && $ca->isJustCreated() && ! in_array( $ca->getStatus(), array( CustomerAppointment::STATUS_CANCELLED, CustomerAppointment::STATUS_REJECTED ) ) ) { $has_correct_appointments = false; foreach ( $items as $item ) { $ca = $item->getCA(); if ( $ca && ! in_array( $ca->getStatus(), array( CustomerAppointment::STATUS_CANCELLED, CustomerAppointment::STATUS_REJECTED, CustomerAppointment::STATUS_WAITLISTED ) ) ) { $has_correct_appointments = true; break; } } if ( $has_correct_appointments ) { $codes = new Codes( $order ); $notifications = static::getNotifications( 'new_booking_combined' ); $attachments = new Attachments( $codes ); // Notify client. foreach ( $notifications['client'] as $notification ) { static::sendToClient( $order->getCustomer(), $notification, $codes, $attachments, $queue ); } // Reply to customer. $reply_to = null; if ( get_option( 'bookly_email_reply_to_customers' ) ) { $customer = $order->getCustomer(); $reply_to = array( 'email' => $customer->getEmail(), 'name' => $customer->getFullName() ); } // Notify custom. foreach ( $notifications['staff'] as $notification ) { static::sendToCustom( $notification, $codes, $attachments, $reply_to, $queue ); } if ( $queue === null ) { $attachments->clear(); } } } } }
Ukuran: 2.5 KB