You are here

function commerce_registration_commerce_checkout_page_info in Commerce Registration 7.2

Same name and namespace in other branches
  1. 7 commerce_registration.module \commerce_registration_commerce_checkout_page_info()

Implements hook_commerce_checkout_page_info().

File

./commerce_registration.module, line 223
Commerce Registration module code.

Code

function commerce_registration_commerce_checkout_page_info() {
  $pages = array();
  $pages['registration'] = array(
    'name' => t('Registration'),
    'title' => t('Registration Information'),
    'weight' => -1,
    'status_cart' => TRUE,
    'buttons' => TRUE,
  );
  return $pages;
}