%crmapi_section doesn't get passed to form function

  1. function crmapi_menu() {
  2.   $items = array();
  3.   $items['crmapi/%crmapi_section'] = array(
  4.     'title callback' => 'crmapi_title',
  5.     'title arguments' => array(1),
  6.     'page callback' => 'drupal_get_form',
  7.     'page arguments' => array('crmapi_contact_form', 1),
  8.     'access arguments' => array('access content'),
  9.     'type' => MENU_CALLBACK,
  10.   );
  11.   return $items;
  12. }
  13.  
  14. function crmapi_section_load($section) {
  15.   return $section;
  16. }
  17.  
  18. function crmngp_ui_contact_form(&$form_state, $section = NULL, $contact_id = NULL) {
  19.   ...
  20. }