PluginProbe
Timetics – Appointment Booking Calendar & Scheduling / 1.0.58
Timetics – Appointment Booking Calendar & Scheduling v1.0.58
1.0.61 1.0.60 1.0.59 1.0.58 1.0.57 1.0.56 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 All 62 releases
timetics / templates / emails / update-event.php

update-event.php in Timetics – Appointment Booking Calendar & Scheduling 1.0.58, at templates/emails/update-event.php

121 lines 8.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 defined( 'ABSPATH' ) || exit;
3
4 $timetics_staff_name = $this->staff->get_display_name();
5 $timetics_customer_name = $this->customer->get_display_name();
6 $timetics_customer_email = $this->customer->get_email();
7 $timetics_title = $this->get_title();
8 $timetics_description = $this->meeting->get_description();
9 $timetics_location = $this->booking->get_location();
10 $timetics_location_type = $this->booking->get_location_type();
11
12 $timetics_event = $this->booking->get_event();
13 $timetics_join_link = 'google-meet' === $timetics_location_type && ! empty( $timetics_event['hangoutLink'] ) ? $timetics_event['hangoutLink'] : '';
14 $timetics_timezone = $timetics_event ? $timetics_event['start']['timeZone'] : '';
15 $timetics_timestr = $timetics_event ? strtotime( $timetics_event['start']['dateTime'] ) : '';
16
17 // Use WordPress date and time format settings
18 $timetics_formatted = timetics_format_email_datetime( $this->booking->get_start_date(), $this->booking->get_start_time() );
19 $timetics_day = $timetics_formatted['day'];
20 $timetics_time = $timetics_formatted['time'];
21 $timetics_date = $timetics_formatted['date'];
22
23 $timetics_email_body = timetics_get_option( 'booking_rescheduled_host_email_body' );
24 $timetics_email_title = timetics_get_option( 'booking_rescheduled_host_email_title' );
25 $timetics_email_title = ! empty( $timetics_email_title ) ? $timetics_email_title : $this->get_title();
26
27 $timetics_placeholders = [
28 '{%meeting_title%}' => $this->meeting->get_name(),
29 '{%meeting_date%}' => $timetics_date,
30 '{%meeting_time%}' => $timetics_time,
31 '{%meeting_location%}' => $timetics_location,
32 '{%meeting_duration%}' => $this->meeting->get_duration(),
33 '{%host_name%}' => $timetics_staff_name,
34 '{%host_email%}' => $this->staff->get_email(),
35 '{%customer_name%}' => $timetics_customer_name,
36 '{%customer_email%}' => $timetics_customer_email,
37 ];
38 ?>
39
40 <div class="email-wrapper" style="margin-bottom: 30px; background-color: #f4f5f7; font-family: -apple-system,BlinkMacSystemFont,'Segoe UI','Noto Sans',Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji', sans-serif;">
41 <div style="max-width: 600px; margin: 0 auto;">
42 <div class="email-content" style="padding: 40px; background-color: #ffffff; border-radius: 0 0 12px 12px; border-top: 4px solid #3161F1; margin-bottom: 40px;">
43 <?php do_action('timetics_email_header') ;?>
44 <div class="email-title">
45 <h3 style="color: #3161F1; font-size: 24px; font-weight: 600; margin: 30px 0;">
46 <?php echo esc_html( timetics_replace_placeholder( $timetics_email_title, $timetics_placeholders ) ); ?>
47 </h3>
48 </div>
49 <?php if ( $timetics_email_body ): ?>
50
51 <?php echo wp_kses( timetics_replace_placeholder( $timetics_email_body, $timetics_placeholders ), 'post' ); ?>
52 <?php if ( 'virtual' === $timetics_location_type && $timetics_join_link ): ?>
53 <div class="single-data-entry" style="margin: 10px 0 20px;">
54 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;">
55 <?php esc_html_e( 'Location:', 'timetics' );?>
56 </p>
57 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;">
58 <?php echo esc_html__('Joining link:', 'timetics') ;?>
59 <a style="color: #3161F1" href="<?php echo esc_url( $timetics_join_link ); ?>"><?php echo esc_url( $timetics_join_link ); ?></a>
60 </p>
61 </div>
62 <?php endif;?>
63 <?php do_action( 'timetics_new_event_email', $this->booking, 'staff' ); ?>
64 <?php else: ?>
65
66 <p class="greeting" style="color: #556880; margin-bottom: 5px">
67 <?php
68 /* translators: %s: Recipient name */
69 printf( esc_html__( 'Hi %s,', 'timetics' ), esc_html( $timetics_staff_name ) );?>
70 </p>
71
72 <p style="color: #556880; margin-bottom: 5px"><?php esc_attr_e( 'Meeting has been rescheduled', 'timetics' );?></p>
73
74 <div class="data-wrapper" style="border: 1px solid #E2ECF4; border-radius: 12px; padding: 30px; margin: 24px 0;">
75 <div class="single-data-entry" style="margin: 0 0 20px;">
76 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;"><?php echo esc_html__( 'Meeting Name:', 'timetics' ); ?></p>
77 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;">
78 <?php echo esc_html( timetics_replace_placeholder( $timetics_email_title, $timetics_placeholders ) ); ?>
79 </p>
80
81 </div>
82 <div class="single-data-entry" style="margin: 0 0 20px;">
83 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;"><?php echo esc_html__( 'Invitee:', 'timetics' ); ?></p>
84 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;">
85 <?php echo esc_html( $timetics_customer_name );?> -
86 <a style="color: #3161F1" href="mailto:<?php echo esc_attr( $timetics_customer_email )?>"><?php echo esc_html( $timetics_customer_email ); ?></a>
87 </p>
88 </div>
89
90 <div class="single-data-entry" style="margin: 10px 0 20px;">
91 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;"><?php echo esc_html__( 'Date and time:', 'timetics' ); ?></p>
92 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;"><?php
93 /* translators: 1: Time, 2: Day, 3: Date */
94 printf( esc_html__( '%1$s, %2$s %3$s', 'timetics' ), esc_html( $timetics_time ), esc_html( $timetics_day ), esc_html( $timetics_date ), esc_html( $timetics_timezone ) );?></p>
95 </div>
96
97 <?php if ( 'virtual' === $timetics_location_type && $timetics_join_link ): ?>
98 <div class="single-data-entry" style="margin: 10px 0 20px;">
99 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;">
100 <?php esc_html_e( 'Location:', 'timetics' );?>
101 </p>
102 <img width="110" style="margin: 5px 0;" src="<?php echo esc_url( TIMETICS_PLUGIN_URL . 'assets/images/social-icons/google-meet.svg' ); ?>" alt="Google Meet">
103 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;">
104 <?php echo esc_html__('Joining link:', 'timetics') ;?>
105 <a style="color: #3161F1" href="<?php echo esc_url( $timetics_join_link ); ?>"><?php echo esc_url( $timetics_join_link ); ?></a>
106 </p>
107 </div>
108 <?php endif;?>
109 <?php if($timetics_timezone) :?>
110 <div class="single-data-entry" style="margin: 10px 0 20px;">
111 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;"><?php echo esc_html__( 'Invitee Time Zone:', 'timetics' ); ?></p>
112 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;"><?php echo esc_html( $timetics_timezone ); ?></p>
113 </div>
114 <?php endif;?>
115 </div>
116 <?php endif;?>
117 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;"><?php echo esc_html__('Thank you!', 'timetics'); ?></p>
118 </div>
119 <?php do_action('timetics_email_footer', $timetics_customer_email) ;?>
120 </div>
121 </div>