PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.31
Booking for Appointments and Events Calendar – Amelia v1.2.31
2.4.9 2.4.8 2.4.7 2.4.6 2.4.5 2.4.4 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 1 year ago Booking 1 year ago Cache 1 year ago Coupon 1 year ago CustomField 1 year ago Gallery 1 year ago Google 1 year ago Location 1 year ago Notification 1 year ago Outlook 1 year ago Payment 1 year ago Schedule 1 year ago Settings 1 year ago Stripe 2 years ago Tax 1 year ago User 1 year ago Zoom 1 year ago Entities.php 1 year 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 public const APPOINTMENT = 'appointment';
13 public const APPOINTMENTS = 'appointments';
14 public const BOOKABLE = 'bookable';
15 public const BOOKING = 'booking';
16 public const BOOKINGS = 'bookings';
17 public const CALENDAR = 'calendar';
18 public const CART = 'cart';
19 public const CATEGORIES = 'categories';
20 public const CATEGORY = 'category';
21 public const TAX = 'tax';
22 public const TAXES = 'taxes';
23 public const COUPON = 'coupon';
24 public const COUPONS = 'coupons';
25 public const CUSTOM_FIELD = 'custom_field';
26 public const CUSTOM_FIELDS = 'custom_fields';
27 public const CUSTOMER = 'customer';
28 public const CUSTOMERS = 'customers';
29 public const DASHBOARD = 'dashboard';
30 public const EVENT = 'event';
31 public const EVENTS = 'events';
32 public const EMPLOYEE = 'employee';
33 public const EMPLOYEES = 'employees';
34 public const PROVIDER = 'provider';
35 public const PROVIDERS = 'providers';
36 public const TAGS = 'tags';
37 public const EXTRA = 'extra';
38 public const EXTRAS = 'extras';
39 public const FINANCE = 'finance';
40 public const LOCATION = 'location';
41 public const LOCATIONS = 'locations';
42 public const NOTIFICATION = 'notification';
43 public const NOTIFICATIONS = 'notifications';
44 public const PACKAGE = 'package';
45 public const PACKAGES = 'packages';
46 public const PAYMENT = 'payment';
47 public const PAYMENTS = 'payments';
48 public const RESOURCE = 'resource';
49 public const RESOURCES = 'resources';
50 public const SERVICE = 'service';
51 public const SERVICES = 'services';
52 public const SETTINGS = 'settings';
53 public const USER = 'user';
54 public const USERS = 'users';
55 }
56