PluginProbe
Timetics – Appointment Booking Calendar & Scheduling / 1.0.38
Timetics – Appointment Booking Calendar & Scheduling v1.0.38
1.0.62 1.0.63 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 All 64 releases
← All changes | core/bookings/booking-entry.php +13 -1 1.0.15 → 1.0.38 View file →
@@ -46,9 +46,11 @@
46 46 * @var array
47 47 */
48 48 private $data = [
49 49 'meeting_id' => '',
50 + 'event_id' => '',
50 51 'staff_id' => '',
52 + 'speaker_id' => '',
51 53 'customer_id' => '',
52 54 'booking_id' => '',
53 55 'booked' => '',
54 56 'date' => '',
@@ -91,8 +93,17 @@
91 93 * @return integer
92 94 */
93 95 public function get_meeting_id() {
94 96 return $this->get_prop( 'meeting_id' );
97 + }
98 +
99 + /**
100 + * Get event id
101 + *
102 + * @return integer
103 + */
104 + public function get_event_id() {
105 + return $this->get_prop( 'event_id' );
95 106 }
96 107
97 108 /**
98 109 * Get staff id
@@ -118,9 +129,9 @@
118 129 * @return integer
119 130 */
120 131 public function get_booking_id() {
121 132 return $this->get_prop( 'booking_id' );
122 - }
133 + }
123 134
124 135 /**
125 136 * Get booked
126 137 *
@@ -194,8 +205,9 @@
194 205 'id' => $this->get_id(),
195 206 'meeting_id' => $this->get_meeting_id(),
196 207 'staff_id' => $this->get_staff_id(),
197 208 'booking_id' => $this->get_booking_id(),
209 + 'event_id' => $this->get_event_id(),
198 210 'customer_id' => $this->get_customer_id(),
199 211 'booked' => $this->get_booked(),
200 212 'date' => $this->get_date(),
201 213 'start' => $this->get_start(),