You are here

constant_contact.config.php in Constant Contact 6.2

Same filename and directory in other branches
  1. 6.3 constant_contact.config.php
  2. 7.3 constant_contact.config.php

File

constant_contact.config.php
View source
<?php

/**
 * @file
 */

/**
 * Define default settings for the module
 * These are here purely for convience
 */

// list of all custom fields the API supports
$custom_fields = 'FirstName:FirstName, MiddleName:MiddleName, LastName:LastName, ';
$custom_fields .= 'JobTitle:JobTitle, CompanyName:CompanyName, HomePhone:HomePhone, ';
$custom_fields .= 'WorkPhone:WorkPhone, Addr1:Addr1, Addr2:Addr2, ';
$custom_fields .= 'Addr3:Addr3, City:City, StateCode:StateCode, ';
$custom_fields .= 'StateName:StateName, CountryCode:CountryCode, CountryName:CountryName, ';
$custom_fields .= 'PostalCode:PostalCode, SubPostalCode:SubPostalCode, Note:Note';
define('CONSTANT_CONTACT_CUSTOM_FIELDS', $custom_fields);

// should we show the checkbox on the register page
define('CONSTANT_CONTACT_SHOW_ON_REGISTER', 0);

// should we show a contact list selection
define('CONSTANT_CONTACT_SHOW_LIST_SELECTION', 1);

// the description shown under the contact lists selection
define('CONSTANT_CONTACT_SIGNUP_LISTS_DESCRIPTION', 'Select Lists');

// the title of the signup checkbox box
define('CONSTANT_CONTACT_SIGNUP_TITLE', 'Signup');

// the description of the signup checkbox box
define('CONSTANT_CONTACT_SIGNUP_DESCRIPTION', 'Check this box to Subscribe to the Newsletter');

// should we show the firstname field in the form block
define('CONSTANT_CONTACT_SHOW_FIRSTNAME', 0);

// should we show the lastname field in the form block
define('CONSTANT_CONTACT_SHOW_LASTNAME', 0);

// should we show the job title field in the form block
define('CONSTANT_CONTACT_SHOW_JOB_TITLE', 0);

// should we show the company name field in the form block
define('CONSTANT_CONTACT_SHOW_COMPANY_NAME', 0);