You are here

function pardot_theme in Pardot Integration 6

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

Implementation of hook_theme().

File

./pardot.module, line 14
ParDot integration module.

Code

function pardot_theme() {
  return array(
    'pardot_js' => array(
      'arguments' => array(),
      'template' => 'pardot-js',
    ),
    'pardot_webform_components_form' => array(
      'arguments' => array(
        'form' => array(),
      ),
      'file' => 'pardot.admin.inc',
    ),
    'pardot_admin_scoring' => array(
      'arguments' => array(
        'form' => array(),
      ),
      'file' => 'pardot.admin-scoring.inc',
    ),
    'pardot_admin_campaign' => array(
      'arguments' => array(
        'form' => array(),
      ),
      'file' => 'pardot.admin-campaign.inc',
    ),
  );
}