You are here

function commerce_registration_theme in Commerce Registration 7.3

Same name and namespace in other branches
  1. 7.2 commerce_registration.module \commerce_registration_theme()

Implements hook_theme().

File

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

Code

function commerce_registration_theme($existing, $type, $theme, $path) {
  return array(
    'commerce_registration_review_pane' => array(
      'variables' => array(
        'product' => NULL,
        'registrations' => array(),
        'line_item' => NULL,
      ),
      'file' => 'includes/commerce_registration.theme.inc',
    ),
    'commerce_registration_review_registration' => array(
      'variables' => array(
        'registration' => NULL,
      ),
      'file' => 'includes/commerce_registration.theme.inc',
    ),
  );
}