You are here

function commerce_cardonfile_theme in Commerce Card on File 7

Same name and namespace in other branches
  1. 7.2 commerce_cardonfile.module \commerce_cardonfile_theme()

Implements hook_theme().

File

./commerce_cardonfile.module, line 152
Supports card on file functionality for credit card payment methods by associating card data reference IDs from payment gateways with user accounts.

Code

function commerce_cardonfile_theme() {
  return array(
    'card_data_overview' => array(
      'variables' => array(
        'card_data' => array(),
      ),
    ),
  );
}