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 |