You are here

function autoupload_custom_more_submit in AutoUpload 7

Submit handler for the "Add another" button on the autoupload settings form.

1 string reference to 'autoupload_custom_more_submit'
autoupload_admin_form in ./autoupload.admin.inc
Form builder for the autoupload settings page.

File

./autoupload.admin.inc, line 241
Contains the administrative functions of the autoupload module.

Code

function autoupload_custom_more_submit($form, &$form_state) {
  $form_state['custom_count'] = count($form_state['values']['custom_type']);
  $form_state['rebuild'] = TRUE;
}