You are here

function commerce_backoffice_product_variation_type_form_delete_submit in Commerce Backoffice 7

Submit callback for delete button on commerce_product_ui_product_type_form().

See also

commerce_product_ui_product_type_form()

1 string reference to 'commerce_backoffice_product_variation_type_form_delete_submit'
commerce_backoffice_product_form_commerce_product_ui_product_type_form_alter in includes/commerce_backoffice_product.product_variation_types.inc
Implements hook_form_FORM_ID_alter().

File

includes/commerce_backoffice_product.product_variation_types.inc, line 295
Product variation specific copy of commerce_product_ui/includes/commerce_product_ui.types.inc and commerce_product_ui/includes/commerce_product_ui.forms.inc.

Code

function commerce_backoffice_product_variation_type_form_delete_submit($form, &$form_state) {
  $form_state['redirect'] = 'admin/commerce/config/product-variation-types/' . strtr($form_state['product_type']['type'], '_', '-') . '/delete';
}