You are here

function merci_date_filter in MERCI (Manage Equipment Reservations, Checkout and Inventory) 6.2

Same name and namespace in other branches
  1. 6 merci.module \merci_date_filter()
  2. 7.2 includes/api.inc \merci_date_filter()

Submit handler to date filter items on a reservation form. It makes changes to the form state and the entire form is rebuilt during the page reload.

1 string reference to 'merci_date_filter'
merci_form_alter in ./merci.module
Implementation of hook_form_alter().

File

includes/api.inc, line 448
MERCI - Managed Equipment Reservation Checkout and Inventory

Code

function merci_date_filter($form, &$form_state) {

  // Set the form to rebuild and run submit handlers.
  node_form_submit_build_node($form, $form_state);
}