PluginProbe
Timetics – Appointment Booking Calendar & Scheduling / 1.0.38
Timetics – Appointment Booking Calendar & Scheduling v1.0.38
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
← All changes | core/base.php +5 -0 1.0.131.0.38 View file →
@@ -9,8 +9,9 @@
9 9
10 10 namespace Timetics\Core;
11 11
12 12 use Hooks;
13 +use Timetics;
13 14 use Timetics\Core\Appointments\ApiAppointmentTaxonomy;
14 15 use Timetics\Core\Appointments\Appointment;
15 16 use Timetics\Core\Bookings\Booking;
16 17 use Timetics\Core\DummyData\Api_Faker;
@@ -16,8 +17,10 @@
16 17 use Timetics\Core\DummyData\Api_Faker;
17 18 use Timetics\Core\Services\Service;
18 19 use Timetics\Core\Staff\Staff;
19 20 use Timetics\Core\Staffs\Staff as StaffsStaff;
21 +use Timetics\Core\Integrations\Google\Service\Google_Calendar_Sync;
22 +use Timetics\Core\BookingCalendars\Api_Booking_Calendar;
20 23 use Timetics\Utils\Singleton;
21 24
22 25 /**
23 26 * Base Class
@@ -53,8 +56,10 @@
53 56 Admin\Hooks::instance()->init();
54 57 Appointments\Hooks::instance()->init();
55 58 Api_Faker::instance();
56 59 ApiAppointmentTaxonomy::instance();
60 + Google_Calendar_Sync::instance();
61 + Api_Booking_Calendar::instance();
57 62 }
58 63 }
59 64
60 65