You are here

function basic_cart_order_theme in Basic cart 7.3

Same name and namespace in other branches
  1. 7.2 basic_cart_order/basic_cart_order.module \basic_cart_order_theme()

Implements hook_theme().

File

basic_cart_order/basic_cart_order.module, line 174

Code

function basic_cart_order_theme() {
  return array(
    'basic_cart_order_details' => array(
      'template' => 'basic_cart_order_details',
      'variables' => array(
        'name' => NULL,
        'email' => NULL,
        'phone' => NULL,
        'city' => NULL,
        'zipcode' => NULL,
        'address' => NULL,
        'message' => NULL,
        'products' => NULL,
        'total_price' => NULL,
        'vat' => NULL,
        'timestamp' => NULL,
        'payment' => NULL,
      ),
    ),
  );
}