You are here

function classified_form_submit in Classified Ads 7.3

Same name and namespace in other branches
  1. 6.3 classified.module \classified_form_submit()

Submit handler for node form: normalize node form values.

1 string reference to 'classified_form_submit'
classified_form in ./classified.module
Implements hook_form().

File

./classified.module, line 1161
A pure D7 classified ads module inspired by the ed_classified module.

Code

function classified_form_submit(&$form, &$form_state) {
  $form_state['values']['expire_date_ts'] = _classified_get_timestamp_from_date($form_state['values']['expire_date']);
}