You are here

function commerce_registration_add_form_menu in Commerce Registration 7.2

Implements hook_menu().

File

modules/commerce_registration_add_form/commerce_registration_add_form.module, line 6

Code

function commerce_registration_add_form_menu() {
  $items['add-registration'] = array(
    'title' => 'Add Registration',
    'page callback' => 'commerce_registration_add_form_page',
    'access arguments' => array(
      'administer registration',
    ),
    'type' => MENU_SUGGESTED_ITEM,
  );
  return $items;
}