You are here

function bat_event_generate_day_schema_fields 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_generate_day_schema_fields()

Creates the necessary day schema fields.

Return value

array

1 call to bat_event_generate_day_schema_fields()
bat_event_create_event_type_schema in modules/bat_event/bat_event.module
Create 6 tables for store events of type $machine_name.

File

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

Code

function bat_event_generate_day_schema_fields() {
  $fields = [
    'unit_id' => [
      'description' => 'Identifier for a unit.',
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
    ],
    'year' => [
      'description' => 'The calendar year for which this availability row is relevant',
      'type' => 'int',
      'not null' => TRUE,
      'default' => '0',
    ],
    'month' => [
      'description' => 'The month for which this availability row is relevant',
      'type' => 'int',
      'not null' => TRUE,
      'default' => '0',
    ],
  ];
  for ($i = 1; $i <= 31; $i++) {
    $fields['d' . $i] = [
      'description' => 'D' . $i,
      'type' => 'int',
      'not null' => TRUE,
      'default' => '0',
    ];
  }
  return $fields;
}