You are here

function commerce_popup_cart_theme in Commerce Popup Cart 7

File

./commerce_popup_cart.module, line 113

Code

function commerce_popup_cart_theme() {
  $default_template_path = drupal_get_path('module', 'commerce_popup_cart') . '/theme';
  return array(
    'commerce_popup_cart_cart' => array(
      'variables' => array(
        'product_count' => NULL,
        'variables' => NULL,
      ),
      'path' => $default_template_path,
      'template' => 'commerce_popup_cart_cart',
    ),
    'commerce_popup_cart_empty' => array(
      'variables' => array(
        'empty_cart_message' => NULL,
        'variables' => NULL,
      ),
      'path' => $default_template_path,
      'template' => 'commerce_popup_cart_empty',
    ),
  );
}