You are here

function commerce_extra_panes_theme in Commerce extra panes 7

Implements hook_theme().

File

./commerce_extra_panes.module, line 45
Module file for Drupal Commerce Extra panes.

Code

function commerce_extra_panes_theme($existing, $type, $theme, $path) {
  return array(
    'commerce_extra_panes_settings_list' => array(
      'render element' => 'element',
    ),
    'commerce_extra_panes_checkout_form' => array(
      'render element' => 'elements',
      'path' => drupal_get_path('module', 'commerce_extra_panes') . '/theme',
      'template' => 'commerce_extra_panes_checkout_form',
    ),
    'commerce_extra_panes_review' => array(
      'render element' => 'elements',
      'path' => drupal_get_path('module', 'commerce_extra_panes') . '/theme',
      'template' => 'commerce_extra_panes_review',
    ),
  );
}