'max-width:45%'); $rows = array(); //get room definitions $room_definitions = _booking_room_location_lookup(); //ditch the first element which is empty array_shift($room_definitions); $i = 1; foreach ($room_definitions as $room) { $rows[] = array( $room, l(t('Allocate Rooms'), t('admin/booking/rooms/!id/assign', array('!id' => $i))), l(t('View Rooms'), t('admin/booking/rooms/!id/view', array('!id' => $i))), ); $i++; } //output everything $output .= t("
Manually assign/update room allocation for !first !last.
Note: Still under testing!
Room Edit selected room location:\n@info", array('@info' => print_r( $selected_room_location, true))); $selected_room_num = isset($form_state['values']['booking_room_number']) ? $form_state['values']['booking_room_number'] : $person->booking_room_number; //watchdog('booking', "
Room Edit selected room number:\n@info", array('@info' => print_r( $selected_room_num, true))); $form['booking_room_location_id'] = array( '#type' => 'select', '#title' => t('Room Location'), '#options' => _booking_room_location_lookup(), '#default_value' => $person->booking_room_location_id, '#ajax' => array( 'event' => 'change', 'wrapper' => 'booking_roomnum_wrapper', 'callback' => 'booking_roomnum_ajax_callback', ), ); $form['booking_room_number'] = array( '#type' => 'select', '#title' => t('Room Number'), //'#description' => t(''), '#prefix' => '
Room Edit ajax callback:\n@info", array('@info' => print_r( $form, true))); return $form['form']['booking_room_number']; } /** * Function to return the updated form element booking_room_bedtype for booking_room_edit_form() */ function booking_bedtype_ajax_callback($form, $form_state) { //watchdog('booking', "
Room Edit ajax callback:\n@info", array('@info' => print_r( $form, true))); return $form['form']['booking_room_bedtype']; } /** * Function to calculate appropriate range of room numbers for ajax enabled form booking_room_edit_form() * @param $location_id - the room location id to look at * @return array containing the room numbers for this location */ function _booking_get_roomedit_roomnum_options($selected) { $room_options = array(); $room_query = db_query("SELECT * FROM {booking_room_definition} WHERE booking_room_location_id = :lid", array(':lid' => $selected)); foreach($room_query as $room) { $room_options[$room->booking_room_number] = $room->booking_room_number; } //watchdog('booking', "
Room Number Options:\n@info", array('@info' => print_r( $room_options, true))); return $room_options; } /** * Function to calculate appropriate bed options for ajax enabled form booking_room_edit_form() * @param $location_id - the room location id to look at * @param $room_num - the room number to get the bed details from * @return array containing the bed options for this specific room */ function _booking_get_roomedit_bedtype_options($location_id, $room_num) { $bed_options = array(); $bed_options[] = ""; $details = db_query("SELECT * FROM {booking_room_definition} WHERE booking_room_location_id = :lid AND booking_room_number = :num", array(':lid' => $location_id, ':num' => $room_num))->fetchObject(); //check we got a response from the query if ($details) { //go through the bed options if ($details->booking_room_singlebeds > 0) { $bed_options[1] = "Single"; } if ($details->booking_room_doublebeds > 0) { $bed_options[2] = "Double"; } if ($details->booking_room_queenbeds > 0) { $bed_options[3] = "Queen"; } } //watchdog('booking', "
Room Number Options:\n@info", array('@info' => print_r( $bed_options, true))); return $bed_options; } /** * Validate the submission to update allocated room and bed for a person */ function booking_room_edit_form_validate($form, &$form_state) { //TODO: turn this into a generalised helper function, and use it for validating booking_rooms_allocate_form() also global $event; $values = $form_state['input']; $bed_inputs = array( 1 => 'booking_room_singlebeds', 2 => 'booking_room_doublebeds', 3 => 'booking_room_queenbeds', ); //watchdog('booking', "
Room Number Form State:\n@info", array('@info' => print_r( $form_state['values'], true))); //no need to validate if we're just removing the mapping //op won't be defined in the form if it's just receiving the ajax callback, so check that is defined first if (isset($form_state['values']['op']) && $form_state['values']['op'] == 'Remove') { return; } else { //get the specific room definition from the database $details = db_query("SELECT * FROM {booking_room_definition} WHERE booking_room_location_id = :lid AND booking_room_number = :num", array(':lid' => $values['booking_room_location_id'], ':num' => $values['booking_room_number']))->fetchObject(); if (! _booking_room_capacity_check($details->rid, $values['booking_room_bedtype'], $details)) { form_set_error('booking_room_number', t('Unfortunately there are no beds available of the type specified in the room.') ); } } } /** * Validate there is available capacity for the specified room and bed type * @return TRUE if there is sufficient capacity, otherwise FALSE */ function _booking_room_capacity_check($room_id, $room_bedtype, $room_definition_object = NULL) { global $event; $bed_inputs = array( 1 => 'booking_room_singlebeds', 2 => 'booking_room_doublebeds', 3 => 'booking_room_queenbeds', ); //make sure the value exists before validating it if (!empty($room_bedtype)) { //if we already have the object available, don't query for it again if ($room_definition_object == NULL) { $details = db_query("SELECT * FROM {booking_room_definition} WHERE rid = :rid", array(':rid' => $room_id))->fetchObject(); } else $details = $room_definition_object; //get all person-to-room mappings relating to this room and bed type $mappings = db_query("SELECT count(*) as num FROM {booking_room_mapping} " . "WHERE booking_eventid = :eid AND booking_roomid = :rid AND booking_room_bedtype = :type", array(':eid' => $event->eid, ':rid' => $room_id, ':type' => $room_bedtype))->fetchObject(); $db_field = $bed_inputs[$room_bedtype]; $max_beds = $details->$db_field; //check that there is sufficient capacity to allocate another person to this room and bed type if ($mappings->num < $max_beds) { watchdog('booking','Sufficient capacity is available in location !id, room !room, with bed type !type. !count beds remaining of this type', array('!id' => $details->booking_room_location_id, '!room' => $details->booking_room_number, '!type' => _booking_room_bedtype_lookup($room_bedtype), '!count' => $max_beds - $mappings->num)); return true; } } return false; } /** * Process the submission to update allocated room and bed for a person */ function booking_room_edit_form_submit($form, &$form_state) { global $event; $values = $form_state['input']; //check if we should remove the room allocation if ($form_state['values']['op'] == 'Remove') { $message = t("Removing id !nid from room number !number in location !location", array('!nid' => $values['personid'], '!location' => $values['booking_room_location_id'], '!number' => $values['booking_room_number']) ); watchdog('booking', $message); drupal_set_message($message, 'status', FALSE); db_delete('booking_room_mapping') ->condition('booking_eventid', $event->eid) ->condition('booking_nodeid', $values['personid']) ->execute(); return; } //otherwise, continue with adding/updating the room allocation else { $details = db_query("SELECT * FROM {booking_room_definition} WHERE booking_room_location_id = :lid AND booking_room_number = :num", array(':lid' => $values['booking_room_location_id'], ':num' => $values['booking_room_number']))->fetchObject(); $check = db_query("SELECT * FROM {booking_room_mapping} WHERE booking_eventid = :eid AND booking_nodeid = :nid", array(':eid' => $event->eid, ':nid' => $values['personid']))->fetchObject(); //this person already exists in mapping table if ($check) { $message = t("Updating person id !nid to room id !id with bed type !type.", array('!nid' => $values['personid'], '!id' => $details->rid, '!type' => _booking_room_bedtype_lookup($values['booking_room_bedtype']), '!number' => $values['booking_room_number']) ); //there is an existing mapping to update $result = db_update('booking_room_mapping') ->fields(array( 'booking_roomid' => $details->rid, 'booking_room_bedtype' => $values['booking_room_bedtype'], )) ->condition('booking_eventid', $event->eid) ->condition('booking_nodeid', $values['personid']) ->execute(); } //create a new record in the mapping table else { $message = t("Allocating person id !nid to room id !id with bed type !type.", array('!nid' => $values['personid'], '!id' => $details->rid, '!type' => _booking_room_bedtype_lookup($values['booking_room_bedtype']), '!number' => $values['booking_room_number']) ); //create a new room mapping for this person $result = db_insert('booking_room_mapping') ->fields(array( 'booking_roomid' => $details->rid, 'booking_eventid' => $event->eid, 'booking_nodeid' => $values['personid'], 'booking_room_bedtype' => $values['booking_room_bedtype'], )) ->execute(); } watchdog('booking', $message); drupal_set_message($message, 'status', FALSE); } //end operation check } /** * Function to define the form for configuring room definitions and also display existing room definitions */ function booking_rooms_define_form($node, &$form_state) { global $event; $form = array(); $bedcount_options = array(); //create the options array for bed counts for ($i = 0; $i <= 15; $i++) $bedcount_options[$i] = $i; //query for room definitions $result = db_query("SELECT * from {booking_room_definition}"); //define the form for adding to the room definitions $form[] = array ( 'first_heading' => array ( '#type' => 'markup', '#markup' => "
Loading existing room allocations:\n@info", array('@info' => print_r( $room_mapping, true))); //attach the custom css $form['#attached']['css'] = array( drupal_get_path('module', 'booking') . '/booking.css', ); //define the header $header = array ( 'booking_room_location' => array('data' => t('Room Location'), 'field' => 'booking_room_location_id'), 'booking_room_number' => array('data' => t('Room Number')), 'booking_room_singlebed' => array('data' => t('Single Bed')), 'booking_room_doublebed_p1' => array('data' => t('Double Bed Person 1')), 'booking_room_doublebed_p2' => array('data' => t('Double Bed Person 2')), 'booking_room_queenbed_p1' => array('data' => t('Queen Bed Person 1')), 'booking_room_queenbed_p2' => array('data' => t('Queen Bed Person 2')), ); $default_row = array(); $default_row['booking_room_location'] = ""; $default_row['booking_room_number'] = ""; $default_row['booking_room_singlebed'] = ""; $default_row['booking_room_doublebed_p1'] = ""; $default_row['booking_room_doublebed_p2'] = ""; $default_row['booking_room_queenbed_p1'] = ""; $default_row['booking_room_queenbed_p2'] = ""; foreach ($room_query as $data) { //load the existing bed mappings for this room $existing_beds = array(); for ($i = 1; $i <= 3; $i++) { foreach ($room_mapping as $mapping) { //check that the room id in the mapping table matches the room that we're currently adding to the table //and also the bed type matches the first dimension in the array if ($mapping->booking_roomid == $data->rid && $mapping->booking_room_bedtype == $i) { $existing_beds[$i][] = $mapping->booking_nodeid; } } } //watchdog('booking', "
Existing bed mappings:\n@info", array('@info' => print_r( $existing_beds, true))); //create a row that contains just the room location and number $row = _booking_clone_array($default_row); $row['booking_room_location'] = _booking_room_location_lookup($data->booking_room_location_id); $row['booking_room_number'] = $data->booking_room_number; $row['#attributes'] = array('id' => array("new-group-row")); $options[$counter++] = $row; //create an additional row for each single bed for ($i = 0; $i < $data->booking_room_singlebeds; $i++) { //retrieve the default value if one exists $default = (!empty($existing_beds[1][$i])) ? $existing_beds[1][$i] : 0; $row = _booking_clone_array($default_row); $row['booking_room_singlebed'] = array('data' => array( '#type' => 'select', '#options' => $attendee_select, '#name' => 'booking_room_singlebed[' . $data->rid . '][' . $i . ']', '#value' => $default, )); $options[$counter++] = $row; } //create an additional row for each double bed //$j is our counter that increments twice as fast as $i to cater for both beds $j = 0; for ($i = 0; $i < $data->booking_room_doublebeds; $i++) { $row = _booking_clone_array($default_row); $row['booking_room_doublebed_p1'] = array('data' => array( '#type' => 'select', '#options' => $attendee_select, '#name' => 'booking_room_doublebed_p1[' . $data->rid . '][' . $i . ']', '#value' => (!empty($existing_beds[2][$j])) ? $existing_beds[2][$j++] : 0, )); $row['booking_room_doublebed_p2'] = array('data' => array( '#type' => 'select', '#options' => $attendee_select, '#name' => 'booking_room_doublebed_p2[' . $data->rid . '][' . $i . ']', '#value' => (!empty($existing_beds[2][$j])) ? $existing_beds[2][$j++] : 0, )); $options[$counter++] = $row; } //create an additional row for each queen bed //$j is our counter that increments twice as fast as $i to cater for both beds $j = 0; for ($i = 1; $i <= $data->booking_room_queenbeds; $i++) { $row = _booking_clone_array($default_row); $default = (!empty($existing_beds[3][$j])) ? $existing_beds[3][$j++] : 0; $row['booking_room_queenbed_p1'] = array('data' => array( '#type' => 'select', '#options' => $attendee_select, '#name' => 'booking_room_queenbed_p1[' . $data->rid . '][' . $i . ']', '#value' => $default, )); //find the default for the second bed $default = (!empty($existing_beds[3][$j])) ? $existing_beds[3][$j++] : 0; $row['booking_room_queenbed_p2'] = array('data' => array( '#type' => 'select', '#options' => $attendee_select, '#name' => 'booking_room_queenbed_p2[' . $data->rid . '][' . $i . ']', '#value' => $default, )); //add this row to the table $options[$counter++] = $row; } } $form['table'] = array ( '#type' => 'tableselect', '#header' => $header, '#options' => $options, '#empty' => t('No rooms found for this room location id.'), ); //so we can access the dropdown elements $form['booking_room_singlebed'] = array( '#type' => 'value' ); $form['booking_room_queenbed_p1'] = array( '#type' => 'value' ); $form['booking_room_queenbed_p2'] = array( '#type' => 'value' ); $form['booking_room_doublebed_p1'] = array( '#type' => 'value' ); $form['booking_room_doublebed_p2'] = array( '#type' => 'value' ); $form['submit'] = array ( '#type' => 'submit', '#value' => t('Submit'), ); return array ( 'form' => $form, ); } /** * Process the submission for room assignment */ function booking_rooms_allocate_form_submit($form, &$form_state) { global $event; //query for existing room allocations $room_mapping_query = db_query("SELECT * FROM {booking_room_mapping} WHERE booking_eventid = :eid", array(':eid' => $event->eid)); $room_mapping = $room_mapping_query->fetchAllAssoc('booking_nodeid'); $bed_inputs = array( 'booking_room_singlebed' => 1, 'booking_room_doublebed_p1' => 2, 'booking_room_doublebed_p2' => 2, 'booking_room_queenbed_p1' => 3, 'booking_room_queenbed_p2' => 3, ); //watchdog('booking', "
Room assignment submission:\n@info", array('@info' => print_r( $singlebed_ids, true))); //go through the different bed types foreach ($bed_inputs as $type => $type_id) { //watchdog('booking', "Bed type !type with id !id", array('!type' => $type, '!id' => $type_id)); //watchdog('booking', "
Room assignment submission:\n@info", array('@info' => print_r( $form_state['values'][$type], true))); //if this bed type wasn't defined in the form, skip it if (empty($form_state['values'][$type])) continue; //go through each room foreach($form_state['values'][$type] as $room => $value) { //go through each bed foreach ($value as $index => $nid) { //if this is actually a person to process if ($nid > 0) { //this person didn't previously have a room/bed mapping if (empty($room_mapping[$nid])) { //Validate that there is capacity for the person to be allocated to this room if (_booking_room_capacity_check($room, $type_id)) { drupal_set_message(t('Assigning person id !id to a type !type bed in room id !room.', array('!id' => $nid, '!room' => $room, '!type' => $type_id))); $result = db_insert('booking_room_mapping') ->fields(array( 'booking_roomid' => $room, 'booking_eventid' => $event->eid, 'booking_nodeid' => $nid, 'booking_room_bedtype' => $type_id, )) ->execute(); } else { drupal_set_message( t('Insufficient capacity to assign person id !id to a type !type bed in room id !room.', array('!id' => $nid, '!room' => $room, '!type' => $type_id) ), 'error' ); //, 'error', FALSE); } } //this person previously had a room mapping but to a different room elseif ((!empty($room_mapping[$nid])) && $room_mapping[$nid]->booking_roomid != $room) { drupal_set_message(t('Changing person id !id from old room !oldroom to new room !room with type !type bed.', array('!id' => $nid, '!room' => $room, '!type' => $type_id, '!oldroom' => $room_mapping[$nid]->booking_roomid))); db_update('booking_room_mapping') ->fields(array( 'booking_roomid' => $room, 'booking_room_bedtype' => $type_id, )) ->condition('booking_eventid', $event->eid) ->condition('booking_nodeid', $nid) ->execute(); } //this person previously had a room mapping but to a different bed type in the same room elseif ((!empty($room_mapping[$nid])) && $room_mapping[$nid]->booking_room_bedtype != $type_id) { drupal_set_message(t('Changing person id !id in room !room to new bed type type !type .', array('!id' => $nid, '!room' => $room, '!type' => $type_id, '!oldroom' => $room_mapping[$nid]->booking_roomid))); db_update('booking_room_mapping') ->fields(array( 'booking_roomid' => $room, 'booking_room_bedtype' => $type_id, )) ->condition('booking_eventid', $event->eid) ->condition('booking_nodeid', $nid) ->execute(); } else { //drupal_set_message(t('Person id !id already has some other room allocation.', // array('!id' => $nid, '!room' => $room, '!type' => $type_id))); } } //valid node id check } //each bed } //each room } //each bed type } /** * Function for viewing room report */ function booking_rooms_view_form($node, &$form_state, $location_id) { global $event; }