You are here

function pardot_theme in Pardot Integration 7

Same name and namespace in other branches
  1. 6 pardot.module \pardot_theme()
  2. 7.2 pardot.module \pardot_theme()

Implements hook_theme().

File

./pardot.module, line 35
Pardot integration module.

Code

function pardot_theme($existing, $type, $theme, $path) {
  return array(
    'pardot_webform_components_form' => array(
      'render element' => 'form',
      'file' => 'pardot.admin.inc',
    ),
    'pardot_admin_scoring' => array(
      'render element' => 'form',
      'file' => 'pardot.admin-scoring.inc',
    ),
    'pardot_admin_campaign' => array(
      'render element' => 'form',
      'file' => 'pardot.admin-campaign.inc',
    ),
  );
}