You are here

function bat_event_type_create in Booking and Availability Management Tools for Drupal 8

Same name and namespace in other branches
  1. 7 modules/bat_event/bat_event.module \bat_event_type_create()

Create a event object.

1 call to bat_event_type_create()
bat_booking_example_create_availability_event_type in modules/bat_booking/bat_booking_example/bat_booking_example.install
Create the "Availability Example" event type.

File

modules/bat_event/bat_event.module, line 428
Manage Events - Events store the EventValue of a Unit over a period of time.

Code

function bat_event_type_create($values = []) {
  return EventType::create($values);
}