You are here

function bat_type_bundle_create 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_type_bundle_create()

Creates a Bat Type bundle object.

Parameters

array $values: The properties for the new type bundle.

File

modules/bat_unit/bat_unit.module, line 1599

Code

function bat_type_bundle_create($values = array()) {
  return entity_get_controller('bat_type_bundle')
    ->create($values);
}