PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / trunk
Booking for Appointments and Events Calendar – Amelia vtrunk
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 months ago Booking 2 weeks ago Cache 6 months ago Coupon 6 months ago CustomField 6 months ago Gallery 1 year ago Google 2 months ago Location 6 months ago Notification 1 month ago Outlook 2 months ago Payment 6 months ago Schedule 2 months ago Settings 6 months ago Stripe 7 months ago Tax 6 months ago User 2 months 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