Completed autocomplete room allocation submit functions
This commit is contained in:
@@ -588,21 +588,21 @@ function booking_menu() {
|
||||
'type' => MENU_LOCAL_ACTION,
|
||||
);
|
||||
|
||||
$items['admin/booking/rooms/%/assign'] = array(
|
||||
$items['admin/booking/rooms/old/%/assign'] = array(
|
||||
'title' => 'Assign Rooms',
|
||||
'description' => 'Assign attendees to rooms',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('booking_rooms_allocate_form', 3),
|
||||
'page arguments' => array('booking_rooms_allocate_form', 4),
|
||||
'access arguments' => array('edit room allocations'),
|
||||
//'type' => MENU_NORMAL_ITEM,
|
||||
);
|
||||
|
||||
//use this for testing the autocomplete fields
|
||||
$items['admin/booking/rooms/test/%/assign'] = array(
|
||||
'title' => 'Assign Rooms',
|
||||
'description' => 'Assign attendees to rooms',
|
||||
$items['admin/booking/rooms/%/assign'] = array(
|
||||
'title' => 'Assign Attendees to Rooms',
|
||||
'description' => 'Assign attendees to rooms via autocomplete fields',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('booking_rooms_allocate_test_form', 4),
|
||||
'page arguments' => array('booking_rooms_allocate_test_form', 3),
|
||||
'access arguments' => array('edit room allocations'),
|
||||
//'type' => MENU_NORMAL_ITEM,
|
||||
);
|
||||
|
Reference in New Issue
Block a user