You are here

function rooms_menu in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7

Implements hook_menu().

File

./rooms.module, line 70
Provides basic underlying functionality and configuration options used by all Rooms modules

Code

function rooms_menu() {
  $items['rooms_options/ajax'] = array(
    'title' => 'Remove item callback',
    'page callback' => 'rooms_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;
}