FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
src
/
Domain
/
Entity
Edit File: Entities.php
<?php namespace AmeliaBooking\Domain\Entity; /** * Class Entities * * @package AmeliaBooking\Domain\Entity */ class Entities { public const APPOINTMENT = 'appointment'; public const APPOINTMENTS = 'appointments'; public const BOOKABLE = 'bookable'; public const BOOKING = 'booking'; public const BOOKINGS = 'bookings'; public const CALENDAR = 'calendar'; public const CART = 'cart'; public const CATEGORIES = 'categories'; public const CATEGORY = 'category'; public const TAX = 'tax'; public const TAXES = 'taxes'; public const COUPON = 'coupon'; public const COUPONS = 'coupons'; public const CUSTOM_FIELD = 'custom_field'; public const CUSTOM_FIELDS = 'custom_fields'; public const CUSTOMER = 'customer'; public const CUSTOMERS = 'customers'; public const DASHBOARD = 'dashboard'; public const EVENT = 'event'; public const EVENTS = 'events'; public const EMPLOYEE = 'employee'; public const EMPLOYEES = 'employees'; public const PROVIDER = 'provider'; public const PROVIDERS = 'providers'; public const TAGS = 'tags'; public const EXTRA = 'extra'; public const EXTRAS = 'extras'; public const FINANCE = 'finance'; public const LOCATION = 'location'; public const LOCATIONS = 'locations'; public const NOTIFICATION = 'notification'; public const NOTIFICATIONS = 'notifications'; public const PACKAGE = 'package'; public const PACKAGES = 'packages'; public const PAYMENT = 'payment'; public const PAYMENTS = 'payments'; public const RESOURCE = 'resource'; public const RESOURCES = 'resources'; public const SERVICE = 'service'; public const SERVICES = 'services'; public const SETTINGS = 'settings'; public const USER = 'user'; public const USERS = 'users'; }
Save
Back