You are here

function uc_file_form_uc_product_feature_settings_form_alter in Ubercart 7.3

Same name and namespace in other branches
  1. 6.2 uc_file/uc_file.module \uc_file_form_uc_product_feature_settings_form_alter()

Implements hook_form_FORM_ID_alter() for uc_product_feature_settings_form().

File

uc_file/uc_file.module, line 24
Allows products to be associated with downloadable files.

Code

function uc_file_form_uc_product_feature_settings_form_alter(&$form, &$form_state) {
  $form['#submit'][] = 'uc_file_feature_settings_submit';
  $form['#validate'][] = 'uc_file_feature_settings_validate';
}