You are here

bat_booking_example.module in Booking and Availability Management Tools for Drupal 8

Same filename and directory in other branches
  1. 7 modules/bat_booking/bat_booking_example/bat_booking_example.module

File

modules/bat_booking/bat_booking_example/bat_booking_example.module
View source
<?php

/**
 * @file
 */

/**
 * Implements hook_theme().
 */
function bat_booking_example_theme() {
  return [
    'booking_confirmation_page' => [
      'template' => 'booking_confirmation_page',
      'variables' => [
        'header' => NULL,
        'form' => NULL,
      ],
    ],
  ];
}

Functions

Namesort descending Description
bat_booking_example_theme Implements hook_theme().