You are here

function bat_type_uri 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_uri()

URI callback for Bat Types.

File

modules/bat_unit/bat_unit.module, line 1623

Code

function bat_type_uri(BatType $type) {
  return array(
    'path' => 'type/' . $type->type_id,
  );
}