3
Làm cách nào để thêm trình xử lý gửi bổ sung trong biểu mẫu thanh toán thương mại?
Làm cách nào để thêm trình xử lý trình bổ sung? Tôi đã thử điều này nhưng nó không hoạt động. function c_coupon_form_alter(&$form, $form_state, $form_id) { drupal_set_message($form_id); switch($form_id) { case 'commerce_checkout_form_review': drupal_set_message($form_id . '_form submit'); $form['#submit'][] = 'c_coupon_review_submit'; } } function c_coupon_review_submit($form, &$form_state) { drupal_set_message('submitted'); }