PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.20
Booking for Appointments and Events Calendar – Amelia v1.2.20
2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / src / Domain / Entity / Entities.php
ameliabooking / src / Domain / Entity Last commit date
Bookable 2 years ago Booking 1 year ago Cache 5 years ago Coupon 1 year ago CustomField 2 years ago Gallery 7 years ago Google 3 years ago Location 2 years ago Notification 2 years ago Outlook 5 years ago Payment 1 year ago Schedule 3 years ago Settings 1 year ago Stripe 2 years ago Tax 2 years ago User 1 year ago Zoom 6 years ago Entities.php 2 years ago
Entities.php
56 lines
1 <?php
2
3 namespace AmeliaBooking\Domain\Entity;
4
5 /**
6 * Class Entities
7 *
8 * @package AmeliaBooking\Domain\Entity
9 */
10 class Entities
11 {
12 const APPOINTMENT = 'appointment';
13 const APPOINTMENTS = 'appointments';
14 const BOOKABLE = 'bookable';
15 const BOOKING = 'booking';
16 const BOOKINGS = 'bookings';
17 const CALENDAR = 'calendar';
18 const CART = 'cart';
19 const CATEGORIES = 'categories';
20 const CATEGORY = 'category';
21 const TAX = 'tax';
22 const TAXES = 'taxes';
23 const COUPON = 'coupon';
24 const COUPONS = 'coupons';
25 const CUSTOM_FIELD = 'custom_field';
26 const CUSTOM_FIELDS = 'custom_fields';
27 const CUSTOMER = 'customer';
28 const CUSTOMERS = 'customers';
29 const DASHBOARD = 'dashboard';
30 const EVENT = 'event';
31 const EVENTS = 'events';
32 const EMPLOYEE = 'employee';
33 const EMPLOYEES = 'employees';
34 const PROVIDER = 'provider';
35 const PROVIDERS = 'providers';
36 const TAGS = 'tags';
37 const EXTRA = 'extra';
38 const EXTRAS = 'extras';
39 const FINANCE = 'finance';
40 const LOCATION = 'location';
41 const LOCATIONS = 'locations';
42 const NOTIFICATION = 'notification';
43 const NOTIFICATIONS = 'notifications';
44 const PACKAGE = 'package';
45 const PACKAGES = 'packages';
46 const PAYMENT = 'payment';
47 const PAYMENTS = 'payments';
48 const RESOURCE = 'resource';
49 const RESOURCES = 'resources';
50 const SERVICE = 'service';
51 const SERVICES = 'services';
52 const SETTINGS = 'settings';
53 const USER = 'user';
54 const USERS = 'users';
55 }
56