You are here

function pardot_theme in Pardot Integration 7.2

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

Implements hook_theme().

File

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

Code

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