function bat_options_menu in Booking and Availability Management Tools for Drupal 7
Implements hook_menu().
File
- modules/
bat_options/ bat_options.module, line 26
Code
function bat_options_menu() {
$items['bat_options/ajax'] = array(
'title' => 'Remove item callback',
'page callback' => 'bat_options_remove_js',
'delivery callback' => 'ajax_deliver',
'access callback' => TRUE,
'theme callback' => 'ajax_base_page_theme',
'type' => MENU_CALLBACK,
'file path' => 'includes',
'file' => 'form.inc',
);
return $items;
}