You are here

webform_constant_contact.module in Webform Constant Contact Component 7

File

webform_constant_contact.module
View source
<?php

// $Id$

/**
 * Implements hook_webform_component_info().
 */
function webform_constant_contact_webform_component_info() {
  $components = array();
  $components['cc_email'] = array(
    'label' => t('Constant Contact Email'),
    'description' => t('Email address to subscribe to constant contact mailing list'),
    'features' => array(
      'csv' => TRUE,
      'email' => TRUE,
      'required' => TRUE,
      'conditional' => TRUE,
      'email_address' => TRUE,
      'spam_analysis' => TRUE,
      'private' => FALSE,
    ),
    'file' => 'webform_constant_contact.inc',
  );
  return $components;
}