You are here

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

1 string reference to '_merci_after_build'
merci_form in ./merci.module
Implementation of hook_form().

File

./merci.module, line 1524
MERCI - Managed Equipment Reservation Checkout and Inventory

Code

function _merci_after_build($form, &$form_state) {
  $weight = $form['field_merci_date']['#weight'] + 1;
  $form['field_merci_date_button']['#weight'] = $weight;
  return $form;
}