bat-8.x-1.x-dev/modules/bat_booking/bat_booking.install
modules/bat_booking/bat_booking.install
<?php
/**
* @file
* Install, update and uninstall functions for the BAT Booking module.
*/
/**
* Implements hook_install().
*/
function bat_booking_install() {
// Create "Standard" booking type.
bat_booking_create_standard_booking_type();
}
/**
* Create "Standard" booking type.
*/
function bat_booking_create_standard_booking_type() {
$booking_type = bat_booking_type_create([
'name' => 'Standard',
'type' => 'standard',
]);
$booking_type->save();
}
