You are here

function bat_unit_theme in Booking and Availability Management Tools for Drupal 7

Same name and namespace in other branches
  1. 8 modules/bat_unit/bat_unit.module \bat_unit_theme()

Implements hook_theme().

File

modules/bat_unit/bat_unit.module, line 435

Code

function bat_unit_theme() {
  return array(
    'bat_unit' => array(
      'render element' => 'elements',
      'template' => 'bat_unit',
    ),
    'bat_type' => array(
      'render element' => 'elements',
      'template' => 'bat_type',
    ),
    'bat_type_add_list' => array(
      'variables' => array(
        'content' => array(),
      ),
      'file' => 'bat_type.admin.inc',
    ),
    'bat_type_unit_add_list' => array(
      'variables' => array(
        'content' => array(),
      ),
      'file' => 'bat_type.admin.inc',
    ),
    'bat_unit_add_list' => array(
      'variables' => array(
        'content' => array(),
      ),
      'file' => 'bat_unit.admin.inc',
    ),
  );
}