You are here

function commerce_registration_add_form_page in Commerce Registration 7.2

1 string reference to 'commerce_registration_add_form_page'
commerce_registration_add_form_menu in modules/commerce_registration_add_form/commerce_registration_add_form.module
Implements hook_menu().

File

modules/commerce_registration_add_form/commerce_registration_add_form.module, line 17

Code

function commerce_registration_add_form_page($product_id) {
  $type = 'commerce_product';
  $product = commerce_product_load($product_id);
  return registration_register_page($type, $product);
}