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 |