function uc_dropdown_attributes_dropdown_submit_handler in Dropdown Attributes 6
Submit handler for the second drop down.
1 string reference to 'uc_dropdown_attributes_dropdown_submit_handler'
- _uc_dropdown_attributes_form in ./
dependent_dropdown.inc - Internal form constructor for administration of attribute dependencies.
File
- ./
dependent_dropdown.inc, line 35 - Administrative interface for specifying the attribute dependencies.
Code
function uc_dropdown_attributes_dropdown_submit_handler($form, &$form_state) {
$values = $form_state['values'];
unset($form_state['submit_handlers']);
form_execute_handlers('submit', $form, $form_state);
$form_state['my_values'] = $values;
$form_state['rebuild'] = TRUE;
}