This relates to the attempt here https://github.com/civicrm/civicrm-core/pull/12971
to use description directly in the Entity Forms & questions as to whether it is translated.
Currently they are not but there seems like no downside in translating them
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('ACL ID'),
- 'description' => 'Unique table ID',
+ 'description' => ts('Unique table ID'),
'required' => TRUE,
'table_name' => 'civicrm_acl',
'entity' => 'ACL',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('ACL Name'),
- 'description' => 'ACL Name.',
+ 'description' => ts('ACL Name.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_acl',
'name' => 'deny',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Deny ACL?'),
- 'description' => 'Is this ACL entry Allow (0) or Deny (1) ?',
+ 'description' => ts('Is this ACL entry Allow (0) or Deny (1) ?'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_acl',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('ACL Entity'),
- 'description' => 'Table of the object possessing this ACL entry (Contact, Group, or ACL Group)',
+ 'description' => ts('Table of the object possessing this ACL entry (Contact, Group, or ACL Group)'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'ID of the object possessing this ACL',
+ 'description' => ts('ID of the object possessing this ACL'),
'table_name' => 'civicrm_acl',
'entity' => 'ACL',
'bao' => 'CRM_ACL_BAO_ACL',
'name' => 'operation',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('ACL Operation'),
- 'description' => 'What operation does this ACL entry control?',
+ 'description' => ts('What operation does this ACL entry control?'),
'required' => TRUE,
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'name' => 'object_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('ACL Object'),
- 'description' => 'The table of the object controlled by this ACL entry',
+ 'description' => ts('The table of the object controlled by this ACL entry'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_acl',
'name' => 'object_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('ACL Object ID'),
- 'description' => 'The ID of the object controlled by this ACL entry',
+ 'description' => ts('The ID of the object controlled by this ACL entry'),
'table_name' => 'civicrm_acl',
'entity' => 'ACL',
'bao' => 'CRM_ACL_BAO_ACL',
'name' => 'acl_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('ACL Table'),
- 'description' => 'If this is a grant/revoke entry, what table are we granting?',
+ 'description' => ts('If this is a grant/revoke entry, what table are we granting?'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_acl',
'name' => 'acl_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('ACL Group ID'),
- 'description' => 'ID of the ACL or ACL group being granted/revoked',
+ 'description' => ts('ID of the ACL or ACL group being granted/revoked'),
'table_name' => 'civicrm_acl',
'entity' => 'ACL',
'bao' => 'CRM_ACL_BAO_ACL',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('ACL Is Active?'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'table_name' => 'civicrm_acl',
'entity' => 'ACL',
'bao' => 'CRM_ACL_BAO_ACL',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Cache ID'),
- 'description' => 'Unique table ID',
+ 'description' => ts('Unique table ID'),
'required' => TRUE,
'table_name' => 'civicrm_acl_cache',
'entity' => 'Cache',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Cache Contact'),
- 'description' => 'Foreign Key to Contact',
+ 'description' => ts('Foreign Key to Contact'),
'table_name' => 'civicrm_acl_cache',
'entity' => 'Cache',
'bao' => 'CRM_ACL_BAO_Cache',
'name' => 'acl_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Cache ACL'),
- 'description' => 'Foreign Key to ACL',
+ 'description' => ts('Foreign Key to ACL'),
'required' => TRUE,
'table_name' => 'civicrm_acl_cache',
'entity' => 'Cache',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Cache Modified Date'),
- 'description' => 'When was this cache entry last modified',
+ 'description' => ts('When was this cache entry last modified'),
'required' => FALSE,
'table_name' => 'civicrm_acl_cache',
'entity' => 'Cache',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity Role'),
- 'description' => 'Unique table ID',
+ 'description' => ts('Unique table ID'),
'required' => TRUE,
'table_name' => 'civicrm_acl_entity_role',
'entity' => 'EntityRole',
'name' => 'acl_role_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('ACL Role ID'),
- 'description' => 'Foreign Key to ACL Role (which is an option value pair and hence an implicit FK)',
+ 'description' => ts('Foreign Key to ACL Role (which is an option value pair and hence an implicit FK)'),
'required' => TRUE,
'table_name' => 'civicrm_acl_entity_role',
'entity' => 'EntityRole',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'Table of the object joined to the ACL Role (Contact or Group)',
+ 'description' => ts('Table of the object joined to the ACL Role (Contact or Group)'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('ACL Entity ID'),
- 'description' => 'ID of the group/contact object being joined',
+ 'description' => ts('ID of the group/contact object being joined'),
'required' => TRUE,
'table_name' => 'civicrm_acl_entity_role',
'entity' => 'EntityRole',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('ACL Entity Role is Active'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'table_name' => 'civicrm_acl_entity_role',
'entity' => 'EntityRole',
'bao' => 'CRM_ACL_BAO_EntityRole',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Activity ID'),
- 'description' => 'Unique Other Activity ID',
+ 'description' => ts('Unique Other Activity ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_activity.id',
'name' => 'source_record_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Source Record'),
- 'description' => 'Artificial FK to original transaction (e.g. contribution) IF it is not an Activity. Table can be figured out through activity_type_id, and further through component registry.',
+ 'description' => ts('Artificial FK to original transaction (e.g. contribution) IF it is not an Activity. Table can be figured out through activity_type_id, and further through component registry.'),
'table_name' => 'civicrm_activity',
'entity' => 'Activity',
'bao' => 'CRM_Activity_BAO_Activity',
'name' => 'activity_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Activity Type ID'),
- 'description' => 'FK to civicrm_option_value.id, that has to be valid, registered activity type.',
+ 'description' => ts('FK to civicrm_option_value.id, that has to be valid, registered activity type.'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_activity.activity_type_id',
'name' => 'subject',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Subject'),
- 'description' => 'The subject/purpose/short description of the activity.',
+ 'description' => ts('The subject/purpose/short description of the activity.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'activity_date_time',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Activity Date'),
- 'description' => 'Date and time this activity is scheduled to occur. Formerly named scheduled_date_time.',
+ 'description' => ts('Date and time this activity is scheduled to occur. Formerly named scheduled_date_time.'),
'import' => TRUE,
'where' => 'civicrm_activity.activity_date_time',
'headerPattern' => '/(activity.)?date(.time$)?/i',
'name' => 'duration',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Duration'),
- 'description' => 'Planned or actual duration of activity expressed in minutes. Conglomerate of former duration_hours and duration_minutes.',
+ 'description' => ts('Planned or actual duration of activity expressed in minutes. Conglomerate of former duration_hours and duration_minutes.'),
'import' => TRUE,
'where' => 'civicrm_activity.duration',
'headerPattern' => '/(activity.)?duration(s)?$/i',
'name' => 'location',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Location'),
- 'description' => 'Location of the activity (optional, open text).',
+ 'description' => ts('Location of the activity (optional, open text).'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'phone_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Phone (called) ID'),
- 'description' => 'Phone ID of the number called (optional - used if an existing phone number is selected).',
+ 'description' => ts('Phone ID of the number called (optional - used if an existing phone number is selected).'),
'table_name' => 'civicrm_activity',
'entity' => 'Activity',
'bao' => 'CRM_Activity_BAO_Activity',
'name' => 'phone_number',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Phone (called) Number'),
- 'description' => 'Phone number in case the number does not exist in the civicrm_phone table.',
+ 'description' => ts('Phone number in case the number does not exist in the civicrm_phone table.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_activity',
'name' => 'details',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Details'),
- 'description' => 'Details about the activity (agenda, notes, etc).',
+ 'description' => ts('Details about the activity (agenda, notes, etc).'),
'import' => TRUE,
'where' => 'civicrm_activity.details',
'headerPattern' => '/(activity.)?detail(s)?$/i',
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Activity Status'),
- 'description' => 'ID of the status this activity is currently in. Foreign key to civicrm_option_value.',
+ 'description' => ts('ID of the status this activity is currently in. Foreign key to civicrm_option_value.'),
'import' => TRUE,
'where' => 'civicrm_activity.status_id',
'headerPattern' => '/(activity.)?status(.label$)?/i',
'name' => 'priority_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Priority'),
- 'description' => 'ID of the priority given to this activity. Foreign key to civicrm_option_value.',
+ 'description' => ts('ID of the priority given to this activity. Foreign key to civicrm_option_value.'),
'table_name' => 'civicrm_activity',
'entity' => 'Activity',
'bao' => 'CRM_Activity_BAO_Activity',
'name' => 'parent_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Parent Activity Id'),
- 'description' => 'Parent meeting ID (if this is a follow-up item). This is not currently implemented',
+ 'description' => ts('Parent meeting ID (if this is a follow-up item). This is not currently implemented'),
'table_name' => 'civicrm_activity',
'entity' => 'Activity',
'bao' => 'CRM_Activity_BAO_Activity',
'name' => 'medium_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Activity Medium'),
- 'description' => 'Activity Medium, Implicit FK to civicrm_option_value where option_group = encounter_medium.',
+ 'description' => ts('Activity Medium, Implicit FK to civicrm_option_value where option_group = encounter_medium.'),
'default' => 'NULL',
'table_name' => 'civicrm_activity',
'entity' => 'Activity',
'name' => 'relationship_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Relationship Id'),
- 'description' => 'FK to Relationship ID',
+ 'description' => ts('FK to Relationship ID'),
'default' => 'NULL',
'table_name' => 'civicrm_activity',
'entity' => 'Activity',
'name' => 'original_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Original Activity ID '),
- 'description' => 'Activity ID of the first activity record in versioning chain.',
+ 'description' => ts('Activity ID of the first activity record in versioning chain.'),
'table_name' => 'civicrm_activity',
'entity' => 'Activity',
'bao' => 'CRM_Activity_BAO_Activity',
'name' => 'result',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Result'),
- 'description' => 'Currently being used to store result id for survey activity, FK to option value.',
+ 'description' => ts('Currently being used to store result id for survey activity, FK to option value.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_activity',
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign'),
- 'description' => 'The campaign for which this activity has been triggered.',
+ 'description' => ts('The campaign for which this activity has been triggered.'),
'import' => TRUE,
'where' => 'civicrm_activity.campaign_id',
'headerPattern' => '',
'name' => 'engagement_level',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Engagement Index'),
- 'description' => 'Assign a specific level of engagement to this activity. Used for tracking constituents in ladder of engagement.',
+ 'description' => ts('Assign a specific level of engagement to this activity. Used for tracking constituents in ladder of engagement.'),
'import' => TRUE,
'where' => 'civicrm_activity.engagement_level',
'headerPattern' => '',
'name' => 'is_star',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Starred'),
- 'description' => 'Activity marked as favorite.',
+ 'description' => ts('Activity marked as favorite.'),
'import' => TRUE,
'where' => 'civicrm_activity.is_star',
'headerPattern' => '/(activity.)?(star|favorite)/i',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Created Date'),
- 'description' => 'When was the activity was created.',
+ 'description' => ts('When was the activity was created.'),
'required' => FALSE,
'export' => TRUE,
'where' => 'civicrm_activity.created_date',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Modified Date'),
- 'description' => 'When was the activity (or closely related entity) was created or modified or deleted.',
+ 'description' => ts('When was the activity (or closely related entity) was created or modified or deleted.'),
'required' => FALSE,
'export' => TRUE,
'where' => 'civicrm_activity.modified_date',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Activity Contact ID'),
- 'description' => 'Activity contact id',
+ 'description' => ts('Activity contact id'),
'required' => TRUE,
'table_name' => 'civicrm_activity_contact',
'entity' => 'ActivityContact',
'name' => 'activity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Activity ID'),
- 'description' => 'Foreign key to the activity for this record.',
+ 'description' => ts('Foreign key to the activity for this record.'),
'required' => TRUE,
'table_name' => 'civicrm_activity_contact',
'entity' => 'ActivityContact',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID (match to contact)'),
- 'description' => 'Foreign key to the contact for this record.',
+ 'description' => ts('Foreign key to the contact for this record.'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_activity_contact.contact_id',
'name' => 'record_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Record Type ID'),
- 'description' => 'Nature of this contact\'s role in the activity: 1 assignee, 2 creator, 3 focus or target.',
+ 'description' => ts('Nature of this contact\'s role in the activity: 1 assignee, 2 creator, 3 focus or target.'),
'table_name' => 'civicrm_activity_contact',
'entity' => 'ActivityContact',
'bao' => 'CRM_Activity_BAO_ActivityContact',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Batch ID'),
- 'description' => 'Unique Address ID',
+ 'description' => ts('Unique Address ID'),
'required' => TRUE,
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Batch Name'),
- 'description' => 'Variable name/programmatic handle for this batch.',
+ 'description' => ts('Variable name/programmatic handle for this batch.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_batch',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Batch Title'),
- 'description' => 'Friendly Name.',
+ 'description' => ts('Friendly Name.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_batch',
'name' => 'description',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Batch Description'),
- 'description' => 'Description of this batch set.',
+ 'description' => ts('Description of this batch set.'),
'rows' => 4,
'cols' => 80,
'table_name' => 'civicrm_batch',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Batch Created By'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'bao' => 'CRM_Batch_BAO_Batch',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Batch Created Date'),
- 'description' => 'When was this item created',
+ 'description' => ts('When was this item created'),
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'bao' => 'CRM_Batch_BAO_Batch',
'name' => 'modified_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Batch Modified By'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'bao' => 'CRM_Batch_BAO_Batch',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Batch Modified Date'),
- 'description' => 'When was this item created',
+ 'description' => ts('When was this item created'),
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'bao' => 'CRM_Batch_BAO_Batch',
'name' => 'saved_search_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Batch Smart Group'),
- 'description' => 'FK to Saved Search ID',
+ 'description' => ts('FK to Saved Search ID'),
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'bao' => 'CRM_Batch_BAO_Batch',
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Batch Status'),
- 'description' => 'fk to Batch Status options in civicrm_option_values',
+ 'description' => ts('fk to Batch Status options in civicrm_option_values'),
'required' => TRUE,
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'name' => 'type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Batch Type'),
- 'description' => 'fk to Batch Type options in civicrm_option_values',
+ 'description' => ts('fk to Batch Type options in civicrm_option_values'),
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'bao' => 'CRM_Batch_BAO_Batch',
'name' => 'mode_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Batch Mode'),
- 'description' => 'fk to Batch mode options in civicrm_option_values',
+ 'description' => ts('fk to Batch mode options in civicrm_option_values'),
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'bao' => 'CRM_Batch_BAO_Batch',
'name' => 'total',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Batch Total'),
- 'description' => 'Total amount for this batch.',
+ 'description' => ts('Total amount for this batch.'),
'precision' => [
20,
2
'name' => 'item_count',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Batch Number of Items'),
- 'description' => 'Number of items in a batch.',
+ 'description' => ts('Number of items in a batch.'),
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'bao' => 'CRM_Batch_BAO_Batch',
'name' => 'payment_instrument_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Batch Payment Method'),
- 'description' => 'fk to Payment Instrument options in civicrm_option_values',
+ 'description' => ts('fk to Payment Instrument options in civicrm_option_values'),
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'bao' => 'CRM_Batch_BAO_Batch',
'name' => 'data',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Batch Data'),
- 'description' => 'cache entered data',
+ 'description' => ts('cache entered data'),
'table_name' => 'civicrm_batch',
'entity' => 'Batch',
'bao' => 'CRM_Batch_BAO_Batch',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('EntityBatch ID'),
- 'description' => 'primary key',
+ 'description' => ts('primary key'),
'required' => TRUE,
'table_name' => 'civicrm_entity_batch',
'entity' => 'EntityBatch',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('EntityBatch Table'),
- 'description' => 'physical tablename for entity being joined to file, e.g. civicrm_contact',
+ 'description' => ts('physical tablename for entity being joined to file, e.g. civicrm_contact'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_entity_batch',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'FK to entity table specified in entity_table column.',
+ 'description' => ts('FK to entity table specified in entity_table column.'),
'required' => TRUE,
'table_name' => 'civicrm_entity_batch',
'entity' => 'EntityBatch',
'name' => 'batch_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Batch ID'),
- 'description' => 'FK to civicrm_batch',
+ 'description' => ts('FK to civicrm_batch'),
'required' => TRUE,
'table_name' => 'civicrm_entity_batch',
'entity' => 'EntityBatch',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign ID'),
- 'description' => 'Unique Campaign ID.',
+ 'description' => ts('Unique Campaign ID.'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_campaign.id',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Campaign Name'),
- 'description' => 'Name of the Campaign.',
+ 'description' => ts('Name of the Campaign.'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Campaign Title'),
- 'description' => 'Title of the Campaign.',
+ 'description' => ts('Title of the Campaign.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'description',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Campaign Description'),
- 'description' => 'Full description of Campaign.',
+ 'description' => ts('Full description of Campaign.'),
'rows' => 8,
'cols' => 60,
'table_name' => 'civicrm_campaign',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Campaign Start Date'),
- 'description' => 'Date and time that Campaign starts.',
+ 'description' => ts('Date and time that Campaign starts.'),
'import' => TRUE,
'where' => 'civicrm_campaign.start_date',
'headerPattern' => '/^start|(s(tart\s)?date)$/i',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Campaign End Date'),
- 'description' => 'Date and time that Campaign ends.',
+ 'description' => ts('Date and time that Campaign ends.'),
'import' => TRUE,
'where' => 'civicrm_campaign.end_date',
'headerPattern' => '/^end|(e(nd\s)?date)$/i',
'name' => 'campaign_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign Type'),
- 'description' => 'Campaign Type ID.Implicit FK to civicrm_option_value where option_group = campaign_type',
+ 'description' => ts('Campaign Type ID.Implicit FK to civicrm_option_value where option_group = campaign_type'),
'import' => TRUE,
'where' => 'civicrm_campaign.campaign_type_id',
'headerPattern' => '',
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign Status'),
- 'description' => 'Campaign status ID.Implicit FK to civicrm_option_value where option_group = campaign_status',
+ 'description' => ts('Campaign status ID.Implicit FK to civicrm_option_value where option_group = campaign_status'),
'import' => TRUE,
'where' => 'civicrm_campaign.status_id',
'headerPattern' => '',
'name' => 'external_identifier',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Campaign External ID'),
- 'description' => 'Unique trusted external ID (generally from a legacy app/datasource). Particularly useful for deduping operations.',
+ 'description' => ts('Unique trusted external ID (generally from a legacy app/datasource). Particularly useful for deduping operations.'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'import' => TRUE,
'name' => 'parent_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Parent Campaign'),
- 'description' => 'Optional parent id for this Campaign.',
+ 'description' => ts('Optional parent id for this Campaign.'),
'import' => TRUE,
'where' => 'civicrm_campaign.parent_id',
'headerPattern' => '',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Campaign Active?'),
- 'description' => 'Is this Campaign enabled or disabled/cancelled?',
+ 'description' => ts('Is this Campaign enabled or disabled/cancelled?'),
'default' => '1',
'table_name' => 'civicrm_campaign',
'entity' => 'Campaign',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign Created By'),
- 'description' => 'FK to civicrm_contact, who created this Campaign.',
+ 'description' => ts('FK to civicrm_contact, who created this Campaign.'),
'table_name' => 'civicrm_campaign',
'entity' => 'Campaign',
'bao' => 'CRM_Campaign_BAO_Campaign',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Campaign Created Date'),
- 'description' => 'Date and time that Campaign was created.',
+ 'description' => ts('Date and time that Campaign was created.'),
'table_name' => 'civicrm_campaign',
'entity' => 'Campaign',
'bao' => 'CRM_Campaign_BAO_Campaign',
'name' => 'last_modified_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign Modified By'),
- 'description' => 'FK to civicrm_contact, who recently edited this Campaign.',
+ 'description' => ts('FK to civicrm_contact, who recently edited this Campaign.'),
'table_name' => 'civicrm_campaign',
'entity' => 'Campaign',
'bao' => 'CRM_Campaign_BAO_Campaign',
'name' => 'last_modified_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Campaign Modified Date'),
- 'description' => 'Date and time that Campaign was edited last time.',
+ 'description' => ts('Date and time that Campaign was edited last time.'),
'table_name' => 'civicrm_campaign',
'entity' => 'Campaign',
'bao' => 'CRM_Campaign_BAO_Campaign',
'name' => 'goal_general',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Campaign Goals'),
- 'description' => 'General goals for Campaign.',
+ 'description' => ts('General goals for Campaign.'),
'table_name' => 'civicrm_campaign',
'entity' => 'Campaign',
'bao' => 'CRM_Campaign_BAO_Campaign',
'name' => 'goal_revenue',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Goal Revenue'),
- 'description' => 'The target revenue for this campaign.',
+ 'description' => ts('The target revenue for this campaign.'),
'precision' => [
20,
2
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign Group ID'),
- 'description' => 'Campaign Group id.',
+ 'description' => ts('Campaign Group id.'),
'required' => TRUE,
'table_name' => 'civicrm_campaign_group',
'entity' => 'CampaignGroup',
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign'),
- 'description' => 'Foreign key to the activity Campaign.',
+ 'description' => ts('Foreign key to the activity Campaign.'),
'required' => TRUE,
'table_name' => 'civicrm_campaign_group',
'entity' => 'CampaignGroup',
'name' => 'group_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Campaign Group Type'),
- 'description' => 'Type of Group.',
+ 'description' => ts('Type of Group.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'default' => 'NULL',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'Name of table where item being referenced is stored.',
+ 'description' => ts('Name of table where item being referenced is stored.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'default' => 'NULL',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'Entity id of referenced table.',
+ 'description' => ts('Entity id of referenced table.'),
'default' => 'NULL',
'table_name' => 'civicrm_campaign_group',
'entity' => 'CampaignGroup',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Survey ID'),
- 'description' => 'Survey id.',
+ 'description' => ts('Survey id.'),
'required' => TRUE,
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Survey Title'),
- 'description' => 'Title of the Survey.',
+ 'description' => ts('Title of the Survey.'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Survey Campaign ID'),
- 'description' => 'Foreign key to the Campaign.',
+ 'description' => ts('Foreign key to the Campaign.'),
'default' => 'NULL',
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'name' => 'activity_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Activity Type'),
- 'description' => 'Implicit FK to civicrm_option_value where option_group = activity_type',
+ 'description' => ts('Implicit FK to civicrm_option_value where option_group = activity_type'),
'import' => TRUE,
'where' => 'civicrm_survey.activity_type_id',
'headerPattern' => '',
'name' => 'recontact_interval',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Follow up Interval'),
- 'description' => 'Recontact intervals for each status.',
+ 'description' => ts('Recontact intervals for each status.'),
'rows' => 20,
'cols' => 80,
'table_name' => 'civicrm_survey',
'name' => 'instructions',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Instructions'),
- 'description' => 'Script instructions for volunteers to use for the survey.',
+ 'description' => ts('Script instructions for volunteers to use for the survey.'),
'rows' => 20,
'cols' => 80,
'table_name' => 'civicrm_survey',
'name' => 'release_frequency',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Survey Hold Duration'),
- 'description' => 'Number of days for recurrence of release.',
+ 'description' => ts('Number of days for recurrence of release.'),
'default' => 'NULL',
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'name' => 'max_number_of_contacts',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Maximum number of contacts'),
- 'description' => 'Maximum number of contacts to allow for survey.',
+ 'description' => ts('Maximum number of contacts to allow for survey.'),
'default' => 'NULL',
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'name' => 'default_number_of_contacts',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Default number of contacts'),
- 'description' => 'Default number of contacts to allow for survey.',
+ 'description' => ts('Default number of contacts to allow for survey.'),
'default' => 'NULL',
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Survey Is Active'),
- 'description' => 'Is this survey enabled or disabled/cancelled?',
+ 'description' => ts('Is this survey enabled or disabled/cancelled?'),
'default' => '1',
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Default Survey'),
- 'description' => 'Is this default survey?',
+ 'description' => ts('Is this default survey?'),
'default' => '0',
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Survey Created By'),
- 'description' => 'FK to civicrm_contact, who created this Survey.',
+ 'description' => ts('FK to civicrm_contact, who created this Survey.'),
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'bao' => 'CRM_Campaign_BAO_Survey',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Campaign Created Date'),
- 'description' => 'Date and time that Survey was created.',
+ 'description' => ts('Date and time that Survey was created.'),
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'bao' => 'CRM_Campaign_BAO_Survey',
'name' => 'last_modified_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Survey Modified'),
- 'description' => 'FK to civicrm_contact, who recently edited this Survey.',
+ 'description' => ts('FK to civicrm_contact, who recently edited this Survey.'),
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'bao' => 'CRM_Campaign_BAO_Survey',
'name' => 'last_modified_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Survey Modified On'),
- 'description' => 'Date and time that Survey was edited last time.',
+ 'description' => ts('Date and time that Survey was edited last time.'),
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'bao' => 'CRM_Campaign_BAO_Survey',
'name' => 'result_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Survey Result'),
- 'description' => 'Used to store option group id.',
+ 'description' => ts('Used to store option group id.'),
'default' => 'NULL',
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'name' => 'bypass_confirm',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('No Email Verification'),
- 'description' => 'Bypass the email verification.',
+ 'description' => ts('Bypass the email verification.'),
'default' => '0',
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'name' => 'thankyou_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Thank-you Title'),
- 'description' => 'Title for Thank-you page (header title tag, and display at the top of the page).',
+ 'description' => ts('Title for Thank-you page (header title tag, and display at the top of the page).'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_survey',
'name' => 'thankyou_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Thank-you Text'),
- 'description' => 'text and html allowed. displayed above result on success page',
+ 'description' => ts('text and html allowed. displayed above result on success page'),
'rows' => 8,
'cols' => 60,
'table_name' => 'civicrm_survey',
'name' => 'is_share',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is shared through social media'),
- 'description' => 'Can people share the petition through social media?',
+ 'description' => ts('Can people share the petition through social media?'),
'default' => '1',
'table_name' => 'civicrm_survey',
'entity' => 'Survey',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Case ID'),
- 'description' => 'Unique Case ID',
+ 'description' => ts('Unique Case ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_case.id',
'name' => 'case_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Case Type'),
- 'description' => 'FK to civicrm_case_type.id',
+ 'description' => ts('FK to civicrm_case_type.id'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_case.case_type_id',
'name' => 'subject',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Case Subject'),
- 'description' => 'Short name of the case.',
+ 'description' => ts('Short name of the case.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Case Start Date'),
- 'description' => 'Date on which given case starts.',
+ 'description' => ts('Date on which given case starts.'),
'import' => TRUE,
'where' => 'civicrm_case.start_date',
'headerPattern' => '',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Case End Date'),
- 'description' => 'Date on which given case ends.',
+ 'description' => ts('Date on which given case ends.'),
'import' => TRUE,
'where' => 'civicrm_case.end_date',
'headerPattern' => '',
'name' => 'details',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Details'),
- 'description' => 'Details about the meeting (agenda, notes, etc).',
+ 'description' => ts('Details about the meeting (agenda, notes, etc).'),
'rows' => 8,
'cols' => 60,
'table_name' => 'civicrm_case',
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Case Status'),
- 'description' => 'Id of case status.',
+ 'description' => ts('Id of case status.'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_case.status_id',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Created Date'),
- 'description' => 'When was the case was created.',
+ 'description' => ts('When was the case was created.'),
'required' => FALSE,
'export' => TRUE,
'where' => 'civicrm_case.created_date',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Modified Date'),
- 'description' => 'When was the case (or closely related entity) was created or modified or deleted.',
+ 'description' => ts('When was the case (or closely related entity) was created or modified or deleted.'),
'required' => FALSE,
'export' => TRUE,
'where' => 'civicrm_case.modified_date',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Case Activity ID'),
- 'description' => 'Unique case-activity association id',
+ 'description' => ts('Unique case-activity association id'),
'required' => TRUE,
'table_name' => 'civicrm_case_activity',
'entity' => 'CaseActivity',
'name' => 'case_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Case'),
- 'description' => 'Case ID of case-activity association.',
+ 'description' => ts('Case ID of case-activity association.'),
'required' => TRUE,
'table_name' => 'civicrm_case_activity',
'entity' => 'CaseActivity',
'name' => 'activity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Activity ID'),
- 'description' => 'Activity ID of case-activity association.',
+ 'description' => ts('Activity ID of case-activity association.'),
'required' => TRUE,
'table_name' => 'civicrm_case_activity',
'entity' => 'CaseActivity',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Case Contact ID'),
- 'description' => 'Unique case-contact association id',
+ 'description' => ts('Unique case-contact association id'),
'required' => TRUE,
'table_name' => 'civicrm_case_contact',
'entity' => 'CaseContact',
'name' => 'case_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Case'),
- 'description' => 'Case ID of case-contact association.',
+ 'description' => ts('Case ID of case-contact association.'),
'required' => TRUE,
'table_name' => 'civicrm_case_contact',
'entity' => 'CaseContact',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'Contact ID of contact record given case belongs to.',
+ 'description' => ts('Contact ID of contact record given case belongs to.'),
'required' => TRUE,
'table_name' => 'civicrm_case_contact',
'entity' => 'CaseContact',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Case Type ID'),
- 'description' => 'Autoincremented type id',
+ 'description' => ts('Autoincremented type id'),
'required' => TRUE,
'table_name' => 'civicrm_case_type',
'entity' => 'CaseType',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Case Type Name'),
- 'description' => 'Machine name for Case Type',
+ 'description' => ts('Machine name for Case Type'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Case Type Title'),
- 'description' => 'Natural language name for Case Type',
+ 'description' => ts('Natural language name for Case Type'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Case Type Description'),
- 'description' => 'Description of the Case Type',
+ 'description' => ts('Description of the Case Type'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_case_type',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Case Type Is Active'),
- 'description' => 'Is this entry active?',
+ 'description' => ts('Is this entry active?'),
'table_name' => 'civicrm_case_type',
'entity' => 'CaseType',
'bao' => 'CRM_Case_BAO_CaseType',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Case Type Is Reserved'),
- 'description' => 'Is this case type a predefined system type?',
+ 'description' => ts('Is this case type a predefined system type?'),
'table_name' => 'civicrm_case_type',
'entity' => 'CaseType',
'bao' => 'CRM_Case_BAO_CaseType',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Ordering of the case types',
+ 'description' => ts('Ordering of the case types'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_case_type',
'name' => 'definition',
'type' => CRM_Utils_Type::T_BLOB,
'title' => ts('Case Type Definition'),
- 'description' => 'xml definition of case type',
+ 'description' => ts('xml definition of case type'),
'table_name' => 'civicrm_case_type',
'entity' => 'CaseType',
'bao' => 'CRM_Case_BAO_CaseType',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('ACL Contact Cache ID'),
- 'description' => 'primary key',
+ 'description' => ts('primary key'),
'required' => TRUE,
'table_name' => 'civicrm_acl_contact_cache',
'entity' => 'ACLContactCache',
'name' => 'user_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to civicrm_contact (could be null for anon user)',
+ 'description' => ts('FK to civicrm_contact (could be null for anon user)'),
'table_name' => 'civicrm_acl_contact_cache',
'entity' => 'ACLContactCache',
'bao' => 'CRM_Contact_DAO_ACLContactCache',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to civicrm_contact',
+ 'description' => ts('FK to civicrm_contact'),
'required' => TRUE,
'table_name' => 'civicrm_acl_contact_cache',
'entity' => 'ACLContactCache',
'name' => 'operation',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Operation'),
- 'description' => 'What operation does this user have permission on?',
+ 'description' => ts('What operation does this user have permission on?'),
'required' => TRUE,
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'Unique Contact ID',
+ 'description' => ts('Unique Contact ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_contact.id',
'name' => 'contact_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Type'),
- 'description' => 'Type of Contact.',
+ 'description' => ts('Type of Contact.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'export' => TRUE,
'name' => 'contact_sub_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Subtype'),
- 'description' => 'May be used to over-ride contact view and edit templates.',
+ 'description' => ts('May be used to over-ride contact view and edit templates.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'is_opt_out',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('No Bulk Emails (User Opt Out)'),
- 'description' => 'Has the contact opted out from receiving all bulk email from the organization or site domain?',
+ 'description' => ts('Has the contact opted out from receiving all bulk email from the organization or site domain?'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_contact.is_opt_out',
'name' => 'legal_identifier',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Legal Identifier'),
- 'description' => 'May be used for SSN, EIN/TIN, Household ID (census) or other applicable unique legal/government ID.
- ',
+ 'description' => ts('May be used for SSN, EIN/TIN, Household ID (census) or other applicable unique legal/government ID.
+ '),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'import' => TRUE,
'name' => 'external_identifier',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('External Identifier'),
- 'description' => 'Unique trusted external ID (generally from a legacy app/datasource). Particularly useful for deduping operations.',
+ 'description' => ts('Unique trusted external ID (generally from a legacy app/datasource). Particularly useful for deduping operations.'),
'maxlength' => 64,
'size' => 8,
'import' => TRUE,
'name' => 'sort_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Sort Name'),
- 'description' => 'Name used for sorting different contact types',
+ 'description' => ts('Name used for sorting different contact types'),
'maxlength' => 128,
'size' => 30,
'export' => TRUE,
'name' => 'display_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Display Name'),
- 'description' => 'Formatted name representing preferred format for display/print/other output.',
+ 'description' => ts('Formatted name representing preferred format for display/print/other output.'),
'maxlength' => 128,
'size' => 30,
'export' => TRUE,
'name' => 'nick_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Nickname'),
- 'description' => 'Nickname.',
+ 'description' => ts('Nickname.'),
'maxlength' => 128,
'size' => 30,
'import' => TRUE,
'name' => 'legal_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Legal Name'),
- 'description' => 'Legal Name.',
+ 'description' => ts('Legal Name.'),
'maxlength' => 128,
'size' => 30,
'import' => TRUE,
'name' => 'image_URL',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Image Url'),
- 'description' => 'optional URL for preferred image (photo, logo, etc.) to display for this contact.',
+ 'description' => ts('optional URL for preferred image (photo, logo, etc.) to display for this contact.'),
'import' => TRUE,
'where' => 'civicrm_contact.image_URL',
'headerPattern' => '',
'name' => 'preferred_communication_method',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Preferred Communication Method'),
- 'description' => 'What is the preferred mode of communication.',
+ 'description' => ts('What is the preferred mode of communication.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'preferred_language',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Preferred Language'),
- 'description' => 'Which language is preferred for communication. FK to languages in civicrm_option_value.',
+ 'description' => ts('Which language is preferred for communication. FK to languages in civicrm_option_value.'),
'maxlength' => 5,
'size' => CRM_Utils_Type::SIX,
'import' => TRUE,
'name' => 'preferred_mail_format',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Preferred Mail Format'),
- 'description' => 'What is the preferred mode of sending an email.',
+ 'description' => ts('What is the preferred mode of sending an email.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'import' => TRUE,
'name' => 'hash',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Hash'),
- 'description' => 'Key for validating requests related to this contact.',
+ 'description' => ts('Key for validating requests related to this contact.'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'export' => TRUE,
'name' => 'api_key',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Api Key'),
- 'description' => 'API Key for validating requests related to this contact.',
+ 'description' => ts('API Key for validating requests related to this contact.'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'table_name' => 'civicrm_contact',
'name' => 'source',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Source'),
- 'description' => 'where contact come from, e.g. import, donate module insert...',
+ 'description' => ts('where contact come from, e.g. import, donate module insert...'),
'maxlength' => 255,
'size' => 30,
'import' => TRUE,
'name' => 'first_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('First Name'),
- 'description' => 'First Name.',
+ 'description' => ts('First Name.'),
'maxlength' => 64,
'size' => 30,
'import' => TRUE,
'name' => 'middle_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Middle Name'),
- 'description' => 'Middle Name.',
+ 'description' => ts('Middle Name.'),
'maxlength' => 64,
'size' => 30,
'import' => TRUE,
'name' => 'last_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Last Name'),
- 'description' => 'Last Name.',
+ 'description' => ts('Last Name.'),
'maxlength' => 64,
'size' => 30,
'import' => TRUE,
'name' => 'prefix_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Individual Prefix'),
- 'description' => 'Prefix or Title for name (Ms, Mr...). FK to prefix ID',
+ 'description' => ts('Prefix or Title for name (Ms, Mr...). FK to prefix ID'),
'import' => TRUE,
'where' => 'civicrm_contact.prefix_id',
'headerPattern' => '/^(prefix|title)/i',
'name' => 'suffix_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Individual Suffix'),
- 'description' => 'Suffix for name (Jr, Sr...). FK to suffix ID',
+ 'description' => ts('Suffix for name (Jr, Sr...). FK to suffix ID'),
'import' => TRUE,
'where' => 'civicrm_contact.suffix_id',
'headerPattern' => '/^suffix$/i',
'name' => 'formal_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Formal Title'),
- 'description' => 'Formal (academic or similar) title in front of name. (Prof., Dr. etc.)',
+ 'description' => ts('Formal (academic or similar) title in front of name. (Prof., Dr. etc.)'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'import' => TRUE,
'name' => 'communication_style_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Communication Style'),
- 'description' => 'Communication style (e.g. formal vs. familiar) to use with this contact. FK to communication styles in civicrm_option_value.',
+ 'description' => ts('Communication style (e.g. formal vs. familiar) to use with this contact. FK to communication styles in civicrm_option_value.'),
'export' => TRUE,
'where' => 'civicrm_contact.communication_style_id',
'headerPattern' => '',
'name' => 'email_greeting_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Email Greeting ID'),
- 'description' => 'FK to civicrm_option_value.id, that has to be valid registered Email Greeting.',
+ 'description' => ts('FK to civicrm_option_value.id, that has to be valid registered Email Greeting.'),
'export' => TRUE,
'where' => 'civicrm_contact.email_greeting_id',
'headerPattern' => '',
'name' => 'email_greeting_custom',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Email Greeting Custom'),
- 'description' => 'Custom Email Greeting.',
+ 'description' => ts('Custom Email Greeting.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'email_greeting_display',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Email Greeting'),
- 'description' => 'Cache Email Greeting.',
+ 'description' => ts('Cache Email Greeting.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contact',
'name' => 'postal_greeting_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Postal Greeting ID'),
- 'description' => 'FK to civicrm_option_value.id, that has to be valid registered Postal Greeting.',
+ 'description' => ts('FK to civicrm_option_value.id, that has to be valid registered Postal Greeting.'),
'export' => TRUE,
'where' => 'civicrm_contact.postal_greeting_id',
'headerPattern' => '',
'name' => 'postal_greeting_custom',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Postal Greeting Custom'),
- 'description' => 'Custom Postal greeting.',
+ 'description' => ts('Custom Postal greeting.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'postal_greeting_display',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Postal Greeting'),
- 'description' => 'Cache Postal greeting.',
+ 'description' => ts('Cache Postal greeting.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contact',
'name' => 'addressee_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Addressee ID'),
- 'description' => 'FK to civicrm_option_value.id, that has to be valid registered Addressee.',
+ 'description' => ts('FK to civicrm_option_value.id, that has to be valid registered Addressee.'),
'export' => TRUE,
'where' => 'civicrm_contact.addressee_id',
'headerPattern' => '',
'name' => 'addressee_custom',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Addressee Custom'),
- 'description' => 'Custom Addressee.',
+ 'description' => ts('Custom Addressee.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'addressee_display',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Addressee'),
- 'description' => 'Cache Addressee.',
+ 'description' => ts('Cache Addressee.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contact',
'name' => 'job_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Job Title'),
- 'description' => 'Job Title',
+ 'description' => ts('Job Title'),
'maxlength' => 255,
'size' => 30,
'import' => TRUE,
'name' => 'gender_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Gender'),
- 'description' => 'FK to gender ID',
+ 'description' => ts('FK to gender ID'),
'import' => TRUE,
'where' => 'civicrm_contact.gender_id',
'headerPattern' => '/^gender$/i',
'name' => 'birth_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Birth Date'),
- 'description' => 'Date of birth',
+ 'description' => ts('Date of birth'),
'import' => TRUE,
'where' => 'civicrm_contact.birth_date',
'headerPattern' => '/^birth|(b(irth\s)?date)|D(\W*)O(\W*)B(\W*)$/i',
'name' => 'deceased_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Deceased Date'),
- 'description' => 'Date of deceased',
+ 'description' => ts('Date of deceased'),
'import' => TRUE,
'where' => 'civicrm_contact.deceased_date',
'headerPattern' => '/^deceased|(d(eceased\s)?date)$/i',
'name' => 'household_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Household Name'),
- 'description' => 'Household Name.',
+ 'description' => ts('Household Name.'),
'maxlength' => 128,
'size' => 30,
'import' => TRUE,
'name' => 'primary_contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Household Primary Contact ID'),
- 'description' => 'Optional FK to Primary Contact for this household.',
+ 'description' => ts('Optional FK to Primary Contact for this household.'),
'table_name' => 'civicrm_contact',
'entity' => 'Contact',
'bao' => 'CRM_Contact_BAO_Contact',
'name' => 'organization_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Organization Name'),
- 'description' => 'Organization Name.',
+ 'description' => ts('Organization Name.'),
'maxlength' => 128,
'size' => 30,
'import' => TRUE,
'name' => 'sic_code',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Sic Code'),
- 'description' => 'Standard Industry Classification Code.',
+ 'description' => ts('Standard Industry Classification Code.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'import' => TRUE,
'name' => 'user_unique_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Unique ID (OpenID)'),
- 'description' => 'the OpenID (or OpenID-style http://username.domain/) unique identifier for this contact mainly used for logging in to CiviCRM',
+ 'description' => ts('the OpenID (or OpenID-style http://username.domain/) unique identifier for this contact mainly used for logging in to CiviCRM'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'employer_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Current Employer'),
- 'description' => 'OPTIONAL FK to civicrm_contact record.',
+ 'description' => ts('OPTIONAL FK to civicrm_contact record.'),
'export' => TRUE,
'where' => 'civicrm_contact.employer_id',
'headerPattern' => '',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Created Date'),
- 'description' => 'When was the contact was created.',
+ 'description' => ts('When was the contact was created.'),
'required' => FALSE,
'export' => TRUE,
'where' => 'civicrm_contact.created_date',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Modified Date'),
- 'description' => 'When was the contact (or closely related entity) was created or modified or deleted.',
+ 'description' => ts('When was the contact (or closely related entity) was created or modified or deleted.'),
'required' => FALSE,
'export' => TRUE,
'where' => 'civicrm_contact.modified_date',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact Type ID'),
- 'description' => 'Contact Type ID',
+ 'description' => ts('Contact Type ID'),
'required' => TRUE,
'table_name' => 'civicrm_contact_type',
'entity' => 'ContactType',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Internal name of Contact Type (or Subtype).',
+ 'description' => ts('Internal name of Contact Type (or Subtype).'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_contact_type',
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Type Label'),
- 'description' => 'localized Name of Contact Type.',
+ 'description' => ts('localized Name of Contact Type.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_contact_type',
'name' => 'description',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Contact Type Description'),
- 'description' => 'localized Optional verbose description of the type.',
+ 'description' => ts('localized Optional verbose description of the type.'),
'rows' => 2,
'cols' => 60,
'table_name' => 'civicrm_contact_type',
'name' => 'image_URL',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Type Image URL'),
- 'description' => 'URL of image if any.',
+ 'description' => ts('URL of image if any.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contact_type',
'name' => 'parent_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact Type Parent'),
- 'description' => 'Optional FK to parent contact type.',
+ 'description' => ts('Optional FK to parent contact type.'),
'table_name' => 'civicrm_contact_type',
'entity' => 'ContactType',
'bao' => 'CRM_Contact_BAO_ContactType',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Contact Type Is Active?'),
- 'description' => 'Is this entry active?',
+ 'description' => ts('Is this entry active?'),
'table_name' => 'civicrm_contact_type',
'entity' => 'ContactType',
'bao' => 'CRM_Contact_BAO_ContactType',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Contact Type is Reserved?'),
- 'description' => 'Is this contact type a predefined system type',
+ 'description' => ts('Is this contact type a predefined system type'),
'table_name' => 'civicrm_contact_type',
'entity' => 'ContactType',
'bao' => 'CRM_Contact_BAO_ContactType',
'name' => 'dashboard_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Dashboard'),
- 'description' => 'Dashboard ID',
+ 'description' => ts('Dashboard ID'),
'required' => TRUE,
'table_name' => 'civicrm_dashboard_contact',
'entity' => 'DashboardContact',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Dashboard Contact'),
- 'description' => 'Contact ID',
+ 'description' => ts('Contact ID'),
'required' => TRUE,
'table_name' => 'civicrm_dashboard_contact',
'entity' => 'DashboardContact',
'name' => 'column_no',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Column No'),
- 'description' => 'column no for this widget',
+ 'description' => ts('column no for this widget'),
'default' => '0',
'table_name' => 'civicrm_dashboard_contact',
'entity' => 'DashboardContact',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Dashlet is Active?'),
- 'description' => 'Is this widget active?',
+ 'description' => ts('Is this widget active?'),
'default' => '0',
'table_name' => 'civicrm_dashboard_contact',
'entity' => 'DashboardContact',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Ordering of the widgets.',
+ 'description' => ts('Ordering of the widgets.'),
'default' => '0',
'table_name' => 'civicrm_dashboard_contact',
'entity' => 'DashboardContact',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group ID'),
- 'description' => 'Group ID',
+ 'description' => ts('Group ID'),
'required' => TRUE,
'table_name' => 'civicrm_group',
'entity' => 'Group',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Group Name'),
- 'description' => 'Internal name of Group.',
+ 'description' => ts('Internal name of Group.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_group',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Group Title'),
- 'description' => 'Name of Group.',
+ 'description' => ts('Name of Group.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_group',
'name' => 'description',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Group Description'),
- 'description' => 'Optional verbose description of the group.',
+ 'description' => ts('Optional verbose description of the group.'),
'rows' => 2,
'cols' => 60,
'table_name' => 'civicrm_group',
'name' => 'source',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Group Source'),
- 'description' => 'Module or process which created this group.',
+ 'description' => ts('Module or process which created this group.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_group',
'name' => 'saved_search_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Saved Search ID'),
- 'description' => 'FK to saved search table.',
+ 'description' => ts('FK to saved search table.'),
'table_name' => 'civicrm_group',
'entity' => 'Group',
'bao' => 'CRM_Contact_BAO_Group',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Group Enabled'),
- 'description' => 'Is this entry active?',
+ 'description' => ts('Is this entry active?'),
'table_name' => 'civicrm_group',
'entity' => 'Group',
'bao' => 'CRM_Contact_BAO_Group',
'name' => 'visibility',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Group Visibility Setting'),
- 'description' => 'In what context(s) is this field visible.',
+ 'description' => ts('In what context(s) is this field visible.'),
'maxlength' => 24,
'size' => CRM_Utils_Type::MEDIUM,
'default' => 'User and User Admin Only',
'name' => 'where_clause',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Group Where Clause'),
- 'description' => 'the sql where clause if a saved search acl',
+ 'description' => ts('the sql where clause if a saved search acl'),
'table_name' => 'civicrm_group',
'entity' => 'Group',
'bao' => 'CRM_Contact_BAO_Group',
'name' => 'select_tables',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Tables For Select Clause'),
- 'description' => 'the tables to be included in a select data',
+ 'description' => ts('the tables to be included in a select data'),
'table_name' => 'civicrm_group',
'entity' => 'Group',
'bao' => 'CRM_Contact_BAO_Group',
'name' => 'where_tables',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Tables For Where Clause'),
- 'description' => 'the tables to be included in the count statement',
+ 'description' => ts('the tables to be included in the count statement'),
'table_name' => 'civicrm_group',
'entity' => 'Group',
'bao' => 'CRM_Contact_BAO_Group',
'name' => 'group_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Group Type'),
- 'description' => 'FK to group type',
+ 'description' => ts('FK to group type'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_group',
'name' => 'cache_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Group Cache Date'),
- 'description' => 'Date when we created the cache for a smart group',
+ 'description' => ts('Date when we created the cache for a smart group'),
'required' => FALSE,
'table_name' => 'civicrm_group',
'entity' => 'Group',
'name' => 'refresh_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Next Group Refresh Time'),
- 'description' => 'Date and time when we need to refresh the cache next.',
+ 'description' => ts('Date and time when we need to refresh the cache next.'),
'required' => FALSE,
'table_name' => 'civicrm_group',
'entity' => 'Group',
'name' => 'parents',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Group Parents'),
- 'description' => 'IDs of the parent(s)',
+ 'description' => ts('IDs of the parent(s)'),
'table_name' => 'civicrm_group',
'entity' => 'Group',
'bao' => 'CRM_Contact_BAO_Group',
'name' => 'children',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Group Children'),
- 'description' => 'IDs of the child(ren)',
+ 'description' => ts('IDs of the child(ren)'),
'table_name' => 'civicrm_group',
'entity' => 'Group',
'bao' => 'CRM_Contact_BAO_Group',
'name' => 'is_hidden',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Group is Hidden'),
- 'description' => 'Is this group hidden?',
+ 'description' => ts('Is this group hidden?'),
'default' => '0',
'table_name' => 'civicrm_group',
'entity' => 'Group',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group Created By'),
- 'description' => 'FK to contact table.',
+ 'description' => ts('FK to contact table.'),
'table_name' => 'civicrm_group',
'entity' => 'Group',
'bao' => 'CRM_Contact_BAO_Group',
'name' => 'modified_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group Modified By'),
- 'description' => 'FK to contact table.',
+ 'description' => ts('FK to contact table.'),
'table_name' => 'civicrm_group',
'entity' => 'Group',
'bao' => 'CRM_Contact_BAO_Group',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group Contact ID'),
- 'description' => 'primary key',
+ 'description' => ts('primary key'),
'required' => TRUE,
'table_name' => 'civicrm_group_contact',
'entity' => 'GroupContact',
'name' => 'group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group ID'),
- 'description' => 'FK to civicrm_group',
+ 'description' => ts('FK to civicrm_group'),
'required' => TRUE,
'table_name' => 'civicrm_group_contact',
'entity' => 'GroupContact',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to civicrm_contact',
+ 'description' => ts('FK to civicrm_contact'),
'required' => TRUE,
'table_name' => 'civicrm_group_contact',
'entity' => 'GroupContact',
'name' => 'status',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Group Contact Status'),
- 'description' => 'status of contact relative to membership in group',
+ 'description' => ts('status of contact relative to membership in group'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_group_contact',
'name' => 'location_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group Contact Location'),
- 'description' => 'Optional location to associate with this membership',
+ 'description' => ts('Optional location to associate with this membership'),
'table_name' => 'civicrm_group_contact',
'entity' => 'GroupContact',
'bao' => 'CRM_Contact_BAO_GroupContact',
'name' => 'email_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group Contact Email'),
- 'description' => 'Optional email to associate with this membership',
+ 'description' => ts('Optional email to associate with this membership'),
'table_name' => 'civicrm_group_contact',
'entity' => 'GroupContact',
'bao' => 'CRM_Contact_BAO_GroupContact',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group Contact Cache ID'),
- 'description' => 'primary key',
+ 'description' => ts('primary key'),
'required' => TRUE,
'table_name' => 'civicrm_group_contact_cache',
'entity' => 'GroupContactCache',
'name' => 'group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group'),
- 'description' => 'FK to civicrm_group',
+ 'description' => ts('FK to civicrm_group'),
'required' => TRUE,
'table_name' => 'civicrm_group_contact_cache',
'entity' => 'GroupContactCache',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to civicrm_contact',
+ 'description' => ts('FK to civicrm_contact'),
'required' => TRUE,
'table_name' => 'civicrm_group_contact_cache',
'entity' => 'GroupContactCache',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group Nesting ID'),
- 'description' => 'Relationship ID',
+ 'description' => ts('Relationship ID'),
'required' => TRUE,
'table_name' => 'civicrm_group_nesting',
'entity' => 'GroupNesting',
'name' => 'child_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Child Group'),
- 'description' => 'ID of the child group',
+ 'description' => ts('ID of the child group'),
'required' => TRUE,
'table_name' => 'civicrm_group_nesting',
'entity' => 'GroupNesting',
'name' => 'parent_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Parent Group'),
- 'description' => 'ID of the parent group',
+ 'description' => ts('ID of the parent group'),
'required' => TRUE,
'table_name' => 'civicrm_group_nesting',
'entity' => 'GroupNesting',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group Organization ID'),
- 'description' => 'Relationship ID',
+ 'description' => ts('Relationship ID'),
'required' => TRUE,
'table_name' => 'civicrm_group_organization',
'entity' => 'GroupOrganization',
'name' => 'group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group'),
- 'description' => 'ID of the group',
+ 'description' => ts('ID of the group'),
'required' => TRUE,
'table_name' => 'civicrm_group_organization',
'entity' => 'GroupOrganization',
'name' => 'organization_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Organization'),
- 'description' => 'ID of the Organization Contact',
+ 'description' => ts('ID of the Organization Contact'),
'required' => TRUE,
'table_name' => 'civicrm_group_organization',
'entity' => 'GroupOrganization',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Relationship ID'),
- 'description' => 'Relationship ID',
+ 'description' => ts('Relationship ID'),
'required' => TRUE,
'table_name' => 'civicrm_relationship',
'entity' => 'Relationship',
'name' => 'contact_id_a',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact A'),
- 'description' => 'id of the first contact',
+ 'description' => ts('id of the first contact'),
'required' => TRUE,
'table_name' => 'civicrm_relationship',
'entity' => 'Relationship',
'name' => 'contact_id_b',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact B'),
- 'description' => 'id of the second contact',
+ 'description' => ts('id of the second contact'),
'required' => TRUE,
'table_name' => 'civicrm_relationship',
'entity' => 'Relationship',
'name' => 'relationship_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Relationship Type'),
- 'description' => 'id of the relationship',
+ 'description' => ts('id of the relationship'),
'required' => TRUE,
'table_name' => 'civicrm_relationship',
'entity' => 'Relationship',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Relationship Start Date'),
- 'description' => 'date when the relationship started',
+ 'description' => ts('date when the relationship started'),
'table_name' => 'civicrm_relationship',
'entity' => 'Relationship',
'bao' => 'CRM_Contact_BAO_Relationship',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Relationship End Date'),
- 'description' => 'date when the relationship ended',
+ 'description' => ts('date when the relationship ended'),
'table_name' => 'civicrm_relationship',
'entity' => 'Relationship',
'bao' => 'CRM_Contact_BAO_Relationship',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Relationship Is Active'),
- 'description' => 'is the relationship active ?',
+ 'description' => ts('is the relationship active ?'),
'default' => '1',
'table_name' => 'civicrm_relationship',
'entity' => 'Relationship',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Relationship Description'),
- 'description' => 'Optional verbose description for the relationship.',
+ 'description' => ts('Optional verbose description for the relationship.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_relationship',
'name' => 'is_permission_a_b',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact A has Permission Over Contact B'),
- 'description' => 'Permission that Contact A has to view/update Contact B',
+ 'description' => ts('Permission that Contact A has to view/update Contact B'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_relationship',
'name' => 'is_permission_b_a',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact B has Permission Over Contact A'),
- 'description' => 'Permission that Contact B has to view/update Contact A',
+ 'description' => ts('Permission that Contact B has to view/update Contact A'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_relationship',
'name' => 'case_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Relationship Case'),
- 'description' => 'FK to civicrm_case',
+ 'description' => ts('FK to civicrm_case'),
'default' => 'NULL',
'table_name' => 'civicrm_relationship',
'entity' => 'Relationship',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Relationship Type ID'),
- 'description' => 'Primary key',
+ 'description' => ts('Primary key'),
'required' => TRUE,
'table_name' => 'civicrm_relationship_type',
'entity' => 'RelationshipType',
'name' => 'name_a_b',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Relationship Type Name A to B'),
- 'description' => 'name for relationship of contact_a to contact_b.',
+ 'description' => ts('name for relationship of contact_a to contact_b.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_relationship_type',
'name' => 'label_a_b',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Relationship Type Label A to B'),
- 'description' => 'label for relationship of contact_a to contact_b.',
+ 'description' => ts('label for relationship of contact_a to contact_b.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_relationship_type',
'name' => 'name_b_a',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Relationship Type Name B to A'),
- 'description' => 'Optional name for relationship of contact_b to contact_a.',
+ 'description' => ts('Optional name for relationship of contact_b to contact_a.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_relationship_type',
'name' => 'label_b_a',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Relationship Type Label B to A'),
- 'description' => 'Optional label for relationship of contact_b to contact_a.',
+ 'description' => ts('Optional label for relationship of contact_b to contact_a.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_relationship_type',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Relationship Description'),
- 'description' => 'Optional verbose description of the relationship type.',
+ 'description' => ts('Optional verbose description of the relationship type.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_relationship_type',
'name' => 'contact_type_a',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Type for Contact A'),
- 'description' => 'If defined, contact_a in a relationship of this type must be a specific contact_type.',
+ 'description' => ts('If defined, contact_a in a relationship of this type must be a specific contact_type.'),
'maxlength' => 12,
'size' => CRM_Utils_Type::TWELVE,
'table_name' => 'civicrm_relationship_type',
'name' => 'contact_type_b',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Type for Contact B'),
- 'description' => 'If defined, contact_b in a relationship of this type must be a specific contact_type.',
+ 'description' => ts('If defined, contact_b in a relationship of this type must be a specific contact_type.'),
'maxlength' => 12,
'size' => CRM_Utils_Type::TWELVE,
'table_name' => 'civicrm_relationship_type',
'name' => 'contact_sub_type_a',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Subtype A'),
- 'description' => 'If defined, contact_sub_type_a in a relationship of this type must be a specific contact_sub_type.
- ',
+ 'description' => ts('If defined, contact_sub_type_a in a relationship of this type must be a specific contact_sub_type.
+ '),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_relationship_type',
'name' => 'contact_sub_type_b',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Subtype B'),
- 'description' => 'If defined, contact_sub_type_b in a relationship of this type must be a specific contact_sub_type.
- ',
+ 'description' => ts('If defined, contact_sub_type_b in a relationship of this type must be a specific contact_sub_type.
+ '),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_relationship_type',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Relationship Type is Reserved'),
- 'description' => 'Is this relationship type a predefined system type (can not be changed or de-activated)?',
+ 'description' => ts('Is this relationship type a predefined system type (can not be changed or de-activated)?'),
'table_name' => 'civicrm_relationship_type',
'entity' => 'RelationshipType',
'bao' => 'CRM_Contact_BAO_RelationshipType',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Relationship Type is Active'),
- 'description' => 'Is this relationship type currently active (i.e. can be used when creating or editing relationships)?
- ',
+ 'description' => ts('Is this relationship type currently active (i.e. can be used when creating or editing relationships)?
+ '),
'default' => '1',
'table_name' => 'civicrm_relationship_type',
'entity' => 'RelationshipType',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Saved Search ID'),
- 'description' => 'Saved Search ID',
+ 'description' => ts('Saved Search ID'),
'required' => TRUE,
'table_name' => 'civicrm_saved_search',
'entity' => 'SavedSearch',
'name' => 'form_values',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Submitted Form Values'),
- 'description' => 'Submitted form values for this search',
+ 'description' => ts('Submitted form values for this search'),
'import' => TRUE,
'where' => 'civicrm_saved_search.form_values',
'headerPattern' => '',
'name' => 'mapping_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mapping ID'),
- 'description' => 'Foreign key to civicrm_mapping used for saved search-builder searches.',
+ 'description' => ts('Foreign key to civicrm_mapping used for saved search-builder searches.'),
'table_name' => 'civicrm_saved_search',
'entity' => 'SavedSearch',
'bao' => 'CRM_Contact_BAO_SavedSearch',
'name' => 'search_custom_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Option Value ID'),
- 'description' => 'Foreign key to civicrm_option value table used for saved custom searches.',
+ 'description' => ts('Foreign key to civicrm_option value table used for saved custom searches.'),
'table_name' => 'civicrm_saved_search',
'entity' => 'SavedSearch',
'bao' => 'CRM_Contact_BAO_SavedSearch',
'name' => 'where_clause',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Where Clause'),
- 'description' => 'the sql where clause if a saved search acl',
+ 'description' => ts('the sql where clause if a saved search acl'),
'table_name' => 'civicrm_saved_search',
'entity' => 'SavedSearch',
'bao' => 'CRM_Contact_BAO_SavedSearch',
'name' => 'select_tables',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Select Tables'),
- 'description' => 'the tables to be included in a select data',
+ 'description' => ts('the tables to be included in a select data'),
'table_name' => 'civicrm_saved_search',
'entity' => 'SavedSearch',
'bao' => 'CRM_Contact_BAO_SavedSearch',
'name' => 'where_tables',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Where Tables'),
- 'description' => 'the tables to be included in the count statement',
+ 'description' => ts('the tables to be included in the count statement'),
'table_name' => 'civicrm_saved_search',
'entity' => 'SavedSearch',
'bao' => 'CRM_Contact_BAO_SavedSearch',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group Membership History ID'),
- 'description' => 'Internal Id',
+ 'description' => ts('Internal Id'),
'required' => TRUE,
'table_name' => 'civicrm_subscription_history',
'entity' => 'SubscriptionHistory',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'Contact Id',
+ 'description' => ts('Contact Id'),
'required' => TRUE,
'table_name' => 'civicrm_subscription_history',
'entity' => 'SubscriptionHistory',
'name' => 'group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Group'),
- 'description' => 'Group Id',
+ 'description' => ts('Group Id'),
'table_name' => 'civicrm_subscription_history',
'entity' => 'SubscriptionHistory',
'bao' => 'CRM_Contact_BAO_SubscriptionHistory',
'name' => 'date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Group Membership Action Date'),
- 'description' => 'Date of the (un)subscription',
+ 'description' => ts('Date of the (un)subscription'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_subscription_history',
'name' => 'method',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Group Membership Action'),
- 'description' => 'How the (un)subscription was triggered',
+ 'description' => ts('How the (un)subscription was triggered'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_subscription_history',
'name' => 'status',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Group Membership Status'),
- 'description' => 'The state of the contact within the group',
+ 'description' => ts('The state of the contact within the group'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_subscription_history',
'name' => 'tracking',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Group Membership Tracking'),
- 'description' => 'IP address or other tracking info',
+ 'description' => ts('IP address or other tracking info'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_subscription_history',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution ID'),
- 'description' => 'Contribution ID',
+ 'description' => ts('Contribution ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_contribution.id',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_contribution.contact_id',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'FK to Financial Type for (total_amount - non_deductible_amount).',
+ 'description' => ts('FK to Financial Type for (total_amount - non_deductible_amount).'),
'export' => TRUE,
'where' => 'civicrm_contribution.financial_type_id',
'headerPattern' => '',
'name' => 'contribution_page_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution Page ID'),
- 'description' => 'The Contribution Page which triggered this contribution',
+ 'description' => ts('The Contribution Page which triggered this contribution'),
'import' => TRUE,
'where' => 'civicrm_contribution.contribution_page_id',
'headerPattern' => '',
'name' => 'payment_instrument_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Method ID'),
- 'description' => 'FK to Payment Instrument',
+ 'description' => ts('FK to Payment Instrument'),
'export' => TRUE,
'where' => 'civicrm_contribution.payment_instrument_id',
'headerPattern' => '/^payment|(p(ayment\s)?instrument)$/i',
'name' => 'receive_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Date Received'),
- 'description' => 'Date contribution was received - not necessarily the creation date of the record',
+ 'description' => ts('Date contribution was received - not necessarily the creation date of the record'),
'import' => TRUE,
'where' => 'civicrm_contribution.receive_date',
'headerPattern' => '/receive(.?date)?/i',
'name' => 'non_deductible_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Non-deductible Amount'),
- 'description' => 'Portion of total amount which is NOT tax deductible. Equal to total_amount for non-deductible financial types.',
+ 'description' => ts('Portion of total amount which is NOT tax deductible. Equal to total_amount for non-deductible financial types.'),
'precision' => [
20,
2
'name' => 'total_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Total Amount'),
- 'description' => 'Total amount of this contribution. Use market value for non-monetary gifts.',
+ 'description' => ts('Total amount of this contribution. Use market value for non-monetary gifts.'),
'required' => TRUE,
'precision' => [
20,
'name' => 'fee_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Fee Amount'),
- 'description' => 'actual processor fee if known - may be 0.',
+ 'description' => ts('actual processor fee if known - may be 0.'),
'precision' => [
20,
2
'name' => 'net_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Net Amount'),
- 'description' => 'actual funds transfer amount. total less fees. if processor does not report actual fee during transaction, this is set to total_amount.',
+ 'description' => ts('actual funds transfer amount. total less fees. if processor does not report actual fee during transaction, this is set to total_amount.'),
'precision' => [
20,
2
'name' => 'trxn_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Transaction ID'),
- 'description' => 'unique transaction id. may be processor id, bank id + trans id, or account number + check number... depending on payment_method',
+ 'description' => ts('unique transaction id. may be processor id, bank id + trans id, or account number + check number... depending on payment_method'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'invoice_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Invoice Reference'),
- 'description' => 'unique invoice id, system generated or passed in',
+ 'description' => ts('unique invoice id, system generated or passed in'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'invoice_number',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Invoice Number'),
- 'description' => 'Human readable invoice number',
+ 'description' => ts('Human readable invoice number'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'import' => TRUE,
'name' => 'cancel_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Cancel Date'),
- 'description' => 'when was gift cancelled',
+ 'description' => ts('when was gift cancelled'),
'import' => TRUE,
'where' => 'civicrm_contribution.cancel_date',
'headerPattern' => '/cancel(.?date)?/i',
'name' => 'receipt_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Receipt Date'),
- 'description' => 'when (if) receipt was sent. populated automatically for online donations w/ automatic receipting',
+ 'description' => ts('when (if) receipt was sent. populated automatically for online donations w/ automatic receipting'),
'import' => TRUE,
'where' => 'civicrm_contribution.receipt_date',
'headerPattern' => '/receipt(.?date)?/i',
'name' => 'thankyou_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Thank-you Date'),
- 'description' => 'when (if) was donor thanked',
+ 'description' => ts('when (if) was donor thanked'),
'import' => TRUE,
'where' => 'civicrm_contribution.thankyou_date',
'headerPattern' => '/thank(s|(.?you))?(.?date)?/i',
'name' => 'source',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contribution Source'),
- 'description' => 'Origin of this Contribution.',
+ 'description' => ts('Origin of this Contribution.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'contribution_recur_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Recurring Contribution ID'),
- 'description' => 'Conditional foreign key to civicrm_contribution_recur id. Each contribution made in connection with a recurring contribution carries a foreign key to the recurring contribution record. This assumes we can track these processor initiated events.',
+ 'description' => ts('Conditional foreign key to civicrm_contribution_recur id. Each contribution made in connection with a recurring contribution carries a foreign key to the recurring contribution record. This assumes we can track these processor initiated events.'),
'export' => TRUE,
'where' => 'civicrm_contribution.contribution_recur_id',
'headerPattern' => '',
'name' => 'address_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution Address'),
- 'description' => 'Conditional foreign key to civicrm_address.id. We insert an address record for each contribution when we have associated billing name and address data.',
+ 'description' => ts('Conditional foreign key to civicrm_address.id. We insert an address record for each contribution when we have associated billing name and address data.'),
'export' => TRUE,
'where' => 'civicrm_contribution.address_id',
'headerPattern' => '',
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign'),
- 'description' => 'The campaign for which this contribution has been triggered.',
+ 'description' => ts('The campaign for which this contribution has been triggered.'),
'import' => TRUE,
'where' => 'civicrm_contribution.campaign_id',
'headerPattern' => '',
'name' => 'creditnote_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Credit Note ID'),
- 'description' => 'unique credit note id, system generated or passed in',
+ 'description' => ts('unique credit note id, system generated or passed in'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'tax_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Tax Amount'),
- 'description' => 'Total tax amount of this contribution.',
+ 'description' => ts('Total tax amount of this contribution.'),
'precision' => [
20,
2
'name' => 'revenue_recognition_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Revenue Recognition Date'),
- 'description' => 'Stores the date when revenue should be recognized.',
+ 'description' => ts('Stores the date when revenue should be recognized.'),
'import' => TRUE,
'where' => 'civicrm_contribution.revenue_recognition_date',
'headerPattern' => '/revenue(.?date)?/i',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution Page ID'),
- 'description' => 'Contribution Id',
+ 'description' => ts('Contribution Id'),
'required' => TRUE,
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contribution Page Title'),
- 'description' => 'Contribution Page title. For top of page display',
+ 'description' => ts('Contribution Page title. For top of page display'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_page',
'name' => 'intro_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Contribution Page Introduction Text'),
- 'description' => 'Text and html allowed. Displayed below title.',
+ 'description' => ts('Text and html allowed. Displayed below title.'),
'rows' => 6,
'cols' => 50,
'table_name' => 'civicrm_contribution_page',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'default financial type assigned to contributions submitted via this page, e.g. Contribution, Campaign Contribution',
+ 'description' => ts('default financial type assigned to contributions submitted via this page, e.g. Contribution, Campaign Contribution'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'payment_processor',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Payment Processor'),
- 'description' => 'Payment Processors configured for this contribution Page',
+ 'description' => ts('Payment Processors configured for this contribution Page'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_page',
'name' => 'is_credit_card_only',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Credit Card Only?'),
- 'description' => 'if true - processing logic must reject transaction at confirmation stage if pay method != credit card',
+ 'description' => ts('if true - processing logic must reject transaction at confirmation stage if pay method != credit card'),
'default' => '0',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'is_monetary',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Monetary'),
- 'description' => 'if true - allows real-time monetary transactions otherwise non-monetary transactions',
+ 'description' => ts('if true - allows real-time monetary transactions otherwise non-monetary transactions'),
'default' => '1',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'is_recur',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Recurring'),
- 'description' => 'if true - allows recurring contributions, valid only for PayPal_Standard',
+ 'description' => ts('if true - allows recurring contributions, valid only for PayPal_Standard'),
'default' => '0',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'is_confirm_enabled',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Confirmation Page?'),
- 'description' => 'if false, the confirm page in contribution pages gets skipped',
+ 'description' => ts('if false, the confirm page in contribution pages gets skipped'),
'default' => '1',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'recur_frequency_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Recurring Frequency'),
- 'description' => 'Supported recurring frequency units.',
+ 'description' => ts('Supported recurring frequency units.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_page',
'name' => 'is_recur_interval',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Support Recurring Intervals'),
- 'description' => 'if true - supports recurring intervals',
+ 'description' => ts('if true - supports recurring intervals'),
'default' => '0',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'is_recur_installments',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Recurring Installments?'),
- 'description' => 'if true - asks user for recurring installments',
+ 'description' => ts('if true - asks user for recurring installments'),
'default' => '0',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'adjust_recur_start_date',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Adjust Recurring Start Date'),
- 'description' => 'if true - user is able to adjust payment start date',
+ 'description' => ts('if true - user is able to adjust payment start date'),
'default' => '0',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'is_pay_later',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Pay Later'),
- 'description' => 'if true - allows the user to send payment directly to the org later',
+ 'description' => ts('if true - allows the user to send payment directly to the org later'),
'default' => '0',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'pay_later_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Pay Later Text'),
- 'description' => 'The text displayed to the user in the main form',
+ 'description' => ts('The text displayed to the user in the main form'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'pay_later_receipt',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Pay Later Receipt'),
- 'description' => 'The receipt sent to the user instead of the normal receipt text',
+ 'description' => ts('The receipt sent to the user instead of the normal receipt text'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'is_partial_payment',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Allow Partial Payment'),
- 'description' => 'is partial payment enabled for this online contribution page',
+ 'description' => ts('is partial payment enabled for this online contribution page'),
'default' => '0',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'initial_amount_label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Initial Amount Label'),
- 'description' => 'Initial amount label for partial payment',
+ 'description' => ts('Initial amount label for partial payment'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_page',
'name' => 'initial_amount_help_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Initial Amount Help Text'),
- 'description' => 'Initial amount help text for partial payment',
+ 'description' => ts('Initial amount help text for partial payment'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'min_initial_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Min Initial Amount'),
- 'description' => 'Minimum initial amount for partial payment',
+ 'description' => ts('Minimum initial amount for partial payment'),
'precision' => [
20,
2
'name' => 'is_allow_other_amount',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Allow Other Amounts'),
- 'description' => 'if true, page will include an input text field where user can enter their own amount',
+ 'description' => ts('if true, page will include an input text field where user can enter their own amount'),
'default' => '0',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'default_amount_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Default Amount'),
- 'description' => 'FK to civicrm_option_value.',
+ 'description' => ts('FK to civicrm_option_value.'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'min_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Minimum Amount'),
- 'description' => 'if other amounts allowed, user can configure minimum allowed.',
+ 'description' => ts('if other amounts allowed, user can configure minimum allowed.'),
'precision' => [
20,
2
'name' => 'max_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Maximum Amount'),
- 'description' => 'if other amounts allowed, user can configure maximum allowed.',
+ 'description' => ts('if other amounts allowed, user can configure maximum allowed.'),
'precision' => [
20,
2
'name' => 'goal_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Goal Amount'),
- 'description' => 'The target goal for this page, allows people to build a goal meter',
+ 'description' => ts('The target goal for this page, allows people to build a goal meter'),
'precision' => [
20,
2
'name' => 'thankyou_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Thank-you Title'),
- 'description' => 'Title for Thank-you page (header title tag, and display at the top of the page).',
+ 'description' => ts('Title for Thank-you page (header title tag, and display at the top of the page).'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_page',
'name' => 'thankyou_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Thank-you Text'),
- 'description' => 'text and html allowed. displayed above result on success page',
+ 'description' => ts('text and html allowed. displayed above result on success page'),
'rows' => 8,
'cols' => 60,
'table_name' => 'civicrm_contribution_page',
'name' => 'thankyou_footer',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Thank-you Footer'),
- 'description' => 'Text and html allowed. displayed at the bottom of the success page. Common usage is to include link(s) to other pages such as tell-a-friend, etc.',
+ 'description' => ts('Text and html allowed. displayed at the bottom of the success page. Common usage is to include link(s) to other pages such as tell-a-friend, etc.'),
'rows' => 8,
'cols' => 60,
'table_name' => 'civicrm_contribution_page',
'name' => 'is_email_receipt',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Send email Receipt'),
- 'description' => 'if true, receipt is automatically emailed to contact on success',
+ 'description' => ts('if true, receipt is automatically emailed to contact on success'),
'default' => '0',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'receipt_from_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Receipt From'),
- 'description' => 'FROM email name used for receipts generated by contributions to this contribution page.',
+ 'description' => ts('FROM email name used for receipts generated by contributions to this contribution page.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_page',
'name' => 'receipt_from_email',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Receipt From email'),
- 'description' => 'FROM email address used for receipts generated by contributions to this contribution page.',
+ 'description' => ts('FROM email address used for receipts generated by contributions to this contribution page.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_page',
'name' => 'cc_receipt',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Receipt cc'),
- 'description' => 'comma-separated list of email addresses to cc each time a receipt is sent',
+ 'description' => ts('comma-separated list of email addresses to cc each time a receipt is sent'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_page',
'name' => 'bcc_receipt',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Receipt bcc'),
- 'description' => 'comma-separated list of email addresses to bcc each time a receipt is sent',
+ 'description' => ts('comma-separated list of email addresses to bcc each time a receipt is sent'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_page',
'name' => 'receipt_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Receipt Text'),
- 'description' => 'text to include above standard receipt info on receipt email. emails are text-only, so do not allow html for now',
+ 'description' => ts('text to include above standard receipt info on receipt email. emails are text-only, so do not allow html for now'),
'rows' => 6,
'cols' => 50,
'table_name' => 'civicrm_contribution_page',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Page Active?'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'footer_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Footer Text'),
- 'description' => 'Text and html allowed. Displayed at the bottom of the first page of the contribution wizard.',
+ 'description' => ts('Text and html allowed. Displayed at the bottom of the first page of the contribution wizard.'),
'rows' => 6,
'cols' => 50,
'table_name' => 'civicrm_contribution_page',
'name' => 'amount_block_is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Amount Block Active?'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'default' => '1',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Contribution Page Start Date'),
- 'description' => 'Date and time that this page starts.',
+ 'description' => ts('Date and time that this page starts.'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Contribution Page End Date'),
- 'description' => 'Date and time that this page ends. May be NULL if no defined end date/time',
+ 'description' => ts('Date and time that this page ends. May be NULL if no defined end date/time'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution Page Created By'),
- 'description' => 'FK to civicrm_contact, who created this contribution page',
+ 'description' => ts('FK to civicrm_contact, who created this contribution page'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Contribution Page Created Date'),
- 'description' => 'Date and time that contribution page was created.',
+ 'description' => ts('Date and time that contribution page was created.'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contribution Page Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'default' => 'NULL',
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution Page Campaign ID'),
- 'description' => 'The campaign for which we are collecting contributions with this page.',
+ 'description' => ts('The campaign for which we are collecting contributions with this page.'),
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'bao' => 'CRM_Contribute_BAO_ContributionPage',
'name' => 'is_share',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Contribution Page Shared?'),
- 'description' => 'Can people share the contribution page through social media?',
+ 'description' => ts('Can people share the contribution page through social media?'),
'default' => '1',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'is_billing_required',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is billing block required'),
- 'description' => 'if true - billing block is required for online contribution page',
+ 'description' => ts('if true - billing block is required for online contribution page'),
'default' => '0',
'table_name' => 'civicrm_contribution_page',
'entity' => 'ContributionPage',
'name' => 'product_option',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Product Option'),
- 'description' => 'Option value selected if applicable - e.g. color, size etc.',
+ 'description' => ts('Option value selected if applicable - e.g. color, size etc.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'export' => TRUE,
'name' => 'fulfilled_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Fulfilled Date'),
- 'description' => 'Optional. Can be used to record the date this product was fulfilled or shipped.',
+ 'description' => ts('Optional. Can be used to record the date this product was fulfilled or shipped.'),
'export' => TRUE,
'where' => 'civicrm_contribution_product.fulfilled_date',
'headerPattern' => '',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Start date for premium'),
- 'description' => 'Actual start date for a time-delimited premium (subscription, service or membership)',
+ 'description' => ts('Actual start date for a time-delimited premium (subscription, service or membership)'),
'export' => TRUE,
'where' => 'civicrm_contribution_product.start_date',
'headerPattern' => '',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('End date for premium'),
- 'description' => 'Actual end date for a time-delimited premium (subscription, service or membership)',
+ 'description' => ts('Actual end date for a time-delimited premium (subscription, service or membership)'),
'export' => TRUE,
'where' => 'civicrm_contribution_product.end_date',
'headerPattern' => '',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'FK to Financial Type(for membership price sets only).',
+ 'description' => ts('FK to Financial Type(for membership price sets only).'),
'default' => 'NULL',
'table_name' => 'civicrm_contribution_product',
'entity' => 'ContributionProduct',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Recurring Contribution ID'),
- 'description' => 'Contribution Recur ID',
+ 'description' => ts('Contribution Recur ID'),
'required' => TRUE,
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'Foreign key to civicrm_contact.id .',
+ 'description' => ts('Foreign key to civicrm_contact.id .'),
'required' => TRUE,
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'name' => 'amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Amount'),
- 'description' => 'Amount to be contributed or charged each recurrence.',
+ 'description' => ts('Amount to be contributed or charged each recurrence.'),
'required' => TRUE,
'precision' => [
20,
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'default' => 'NULL',
'name' => 'frequency_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Frequency Unit'),
- 'description' => 'Time units for recurrence of payment.',
+ 'description' => ts('Time units for recurrence of payment.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'default' => 'month',
'name' => 'frequency_interval',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Interval (number of units)'),
- 'description' => 'Number of time units for recurrence of payment.',
+ 'description' => ts('Number of time units for recurrence of payment.'),
'required' => TRUE,
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'name' => 'installments',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Number of Installments'),
- 'description' => 'Total number of payments to be made. Set this to 0 if this is an open-ended commitment i.e. no set end date.',
+ 'description' => ts('Total number of payments to be made. Set this to 0 if this is an open-ended commitment i.e. no set end date.'),
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'bao' => 'CRM_Contribute_BAO_ContributionRecur',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Recurring Contribution Started Date'),
- 'description' => 'The date the first scheduled recurring contribution occurs.',
+ 'description' => ts('The date the first scheduled recurring contribution occurs.'),
'required' => TRUE,
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'name' => 'create_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Recurring Contribution Created Date'),
- 'description' => 'When this recurring contribution record was created.',
+ 'description' => ts('When this recurring contribution record was created.'),
'required' => TRUE,
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Recurring Contribution Modified Date'),
- 'description' => 'Last updated date for this record. mostly the last time a payment was received',
+ 'description' => ts('Last updated date for this record. mostly the last time a payment was received'),
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'bao' => 'CRM_Contribute_BAO_ContributionRecur',
'name' => 'cancel_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Recurring Contribution Cancel Date'),
- 'description' => 'Date this recurring contribution was cancelled by contributor- if we can get access to it',
+ 'description' => ts('Date this recurring contribution was cancelled by contributor- if we can get access to it'),
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'bao' => 'CRM_Contribute_BAO_ContributionRecur',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Recurring Contribution End Date'),
- 'description' => 'Date this recurring contribution finished successfully',
+ 'description' => ts('Date this recurring contribution finished successfully'),
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'bao' => 'CRM_Contribute_BAO_ContributionRecur',
'name' => 'processor_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Processor ID'),
- 'description' => 'Possibly needed to store a unique identifier for this recurring payment order - if this is available from the processor??',
+ 'description' => ts('Possibly needed to store a unique identifier for this recurring payment order - if this is available from the processor??'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_recur',
'name' => 'payment_token_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Token ID'),
- 'description' => 'Optionally used to store a link to a payment token used for this recurring contribution.',
+ 'description' => ts('Optionally used to store a link to a payment token used for this recurring contribution.'),
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'bao' => 'CRM_Contribute_BAO_ContributionRecur',
'name' => 'trxn_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Transaction ID'),
- 'description' => 'unique transaction id. may be processor id, bank id + trans id, or account number + check number... depending on payment_method',
+ 'description' => ts('unique transaction id. may be processor id, bank id + trans id, or account number + check number... depending on payment_method'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_recur',
'name' => 'invoice_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Invoice ID'),
- 'description' => 'unique invoice id, system generated or passed in',
+ 'description' => ts('unique invoice id, system generated or passed in'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_recur',
'name' => 'cycle_day',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Number of Cycle Day'),
- 'description' => 'Day in the period when the payment should be charged e.g. 1st of month, 15th etc.',
+ 'description' => ts('Day in the period when the payment should be charged e.g. 1st of month, 15th etc.'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_contribution_recur',
'name' => 'next_sched_contribution_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Next Scheduled Contribution Date'),
- 'description' => 'Next scheduled date',
+ 'description' => ts('Next scheduled date'),
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'bao' => 'CRM_Contribute_BAO_ContributionRecur',
'name' => 'failure_count',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Number of Failures'),
- 'description' => 'Number of failed charge attempts since last success. Business rule could be set to deactivate on more than x failures.',
+ 'description' => ts('Number of failed charge attempts since last success. Business rule could be set to deactivate on more than x failures.'),
'default' => '0',
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'name' => 'failure_retry_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Retry Failed Attempt Date'),
- 'description' => 'Date to retry failed attempt',
+ 'description' => ts('Date to retry failed attempt'),
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'bao' => 'CRM_Contribute_BAO_ContributionRecur',
'name' => 'auto_renew',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Auto Renew'),
- 'description' => 'Some systems allow contributor to set a number of installments - but then auto-renew the subscription or commitment if they do not cancel.',
+ 'description' => ts('Some systems allow contributor to set a number of installments - but then auto-renew the subscription or commitment if they do not cancel.'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_contribution_recur',
'name' => 'payment_processor_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Processor'),
- 'description' => 'Foreign key to civicrm_payment_processor.id',
+ 'description' => ts('Foreign key to civicrm_payment_processor.id'),
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'bao' => 'CRM_Contribute_BAO_ContributionRecur',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'FK to Financial Type',
+ 'description' => ts('FK to Financial Type'),
'export' => FALSE,
'where' => 'civicrm_contribution_recur.financial_type_id',
'headerPattern' => '',
'name' => 'payment_instrument_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Method'),
- 'description' => 'FK to Payment Instrument',
+ 'description' => ts('FK to Payment Instrument'),
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'bao' => 'CRM_Contribute_BAO_ContributionRecur',
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign'),
- 'description' => 'The campaign for which this contribution has been triggered.',
+ 'description' => ts('The campaign for which this contribution has been triggered.'),
'import' => TRUE,
'where' => 'civicrm_contribution_recur.campaign_id',
'headerPattern' => '',
'name' => 'is_email_receipt',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Send email Receipt?'),
- 'description' => 'if true, receipt is automatically emailed to contact on each successful payment',
+ 'description' => ts('if true, receipt is automatically emailed to contact on each successful payment'),
'default' => '1',
'table_name' => 'civicrm_contribution_recur',
'entity' => 'ContributionRecur',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Soft Contribution ID'),
- 'description' => 'Soft Contribution ID',
+ 'description' => ts('Soft Contribution ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_contribution_soft.id',
'name' => 'contribution_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Soft Contribution - Contribution'),
- 'description' => 'FK to contribution table.',
+ 'description' => ts('FK to contribution table.'),
'required' => TRUE,
'table_name' => 'civicrm_contribution_soft',
'entity' => 'ContributionSoft',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_contribution_soft.contact_id',
'name' => 'amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Soft Contribution Amount'),
- 'description' => 'Amount of this soft contribution.',
+ 'description' => ts('Amount of this soft contribution.'),
'required' => TRUE,
'precision' => [
20,
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Soft Contribution Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'default' => 'NULL',
'name' => 'pcp_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Soft Contribution PCP'),
- 'description' => 'FK to civicrm_pcp.id',
+ 'description' => ts('FK to civicrm_pcp.id'),
'default' => 'NULL',
'table_name' => 'civicrm_contribution_soft',
'entity' => 'ContributionSoft',
'name' => 'soft_credit_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Soft Credit Type'),
- 'description' => 'Soft Credit Type ID.Implicit FK to civicrm_option_value where option_group = soft_credit_type.',
+ 'description' => ts('Soft Credit Type ID.Implicit FK to civicrm_option_value where option_group = soft_credit_type.'),
'default' => 'NULL',
'table_name' => 'civicrm_contribution_soft',
'entity' => 'ContributionSoft',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Premium Entity'),
- 'description' => 'Joins these premium settings to another object. Always civicrm_contribution_page for now.',
+ 'description' => ts('Joins these premium settings to another object. Always civicrm_contribution_page for now.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'premiums_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Premium Active?'),
- 'description' => 'Is the Premiums feature enabled for this page?',
+ 'description' => ts('Is the Premiums feature enabled for this page?'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_premiums',
'name' => 'premiums_intro_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Title for Premiums section'),
- 'description' => 'Title for Premiums section.',
+ 'description' => ts('Title for Premiums section.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_premiums',
'name' => 'premiums_intro_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Premium Introductory Text'),
- 'description' => 'Displayed in <div> at top of Premiums section of page. Text and HTML allowed.',
+ 'description' => ts('Displayed in <div> at top of Premiums section of page. Text and HTML allowed.'),
'table_name' => 'civicrm_premiums',
'entity' => 'Premium',
'bao' => 'CRM_Contribute_BAO_Premium',
'name' => 'premiums_contact_email',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Premium Contact Email'),
- 'description' => 'This email address is included in receipts if it is populated and a premium has been selected.',
+ 'description' => ts('This email address is included in receipts if it is populated and a premium has been selected.'),
'maxlength' => 100,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_premiums',
'name' => 'premiums_contact_phone',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Premiums Contact Phone'),
- 'description' => 'This phone number is included in receipts if it is populated and a premium has been selected.',
+ 'description' => ts('This phone number is included in receipts if it is populated and a premium has been selected.'),
'maxlength' => 50,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_premiums',
'name' => 'premiums_display_min_contribution',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Display Minimum Contribution?'),
- 'description' => 'Boolean. Should we automatically display minimum contribution amount text after the premium descriptions.',
+ 'description' => ts('Boolean. Should we automatically display minimum contribution amount text after the premium descriptions.'),
'required' => TRUE,
'table_name' => 'civicrm_premiums',
'entity' => 'Premium',
'name' => 'premiums_nothankyou_label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('No Thank-you Text'),
- 'description' => 'Label displayed for No Thank-you option in premiums block (e.g. No thank you)',
+ 'description' => ts('Label displayed for No Thank-you option in premiums block (e.g. No thank you)'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_premiums',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Premium Product ID'),
- 'description' => 'Contribution ID',
+ 'description' => ts('Contribution ID'),
'required' => TRUE,
'table_name' => 'civicrm_premiums_product',
'entity' => 'PremiumsProduct',
'name' => 'premiums_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Premium'),
- 'description' => 'Foreign key to premiums settings record.',
+ 'description' => ts('Foreign key to premiums settings record.'),
'required' => TRUE,
'table_name' => 'civicrm_premiums_product',
'entity' => 'PremiumsProduct',
'name' => 'product_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Product'),
- 'description' => 'Foreign key to each product object.',
+ 'description' => ts('Foreign key to each product object.'),
'required' => TRUE,
'table_name' => 'civicrm_premiums_product',
'entity' => 'PremiumsProduct',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'FK to Financial Type.',
+ 'description' => ts('FK to Financial Type.'),
'default' => 'NULL',
'table_name' => 'civicrm_premiums_product',
'entity' => 'PremiumsProduct',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Product Name'),
- 'description' => 'Required product/premium name',
+ 'description' => ts('Required product/premium name'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'description',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Description'),
- 'description' => 'Optional description of the product/premium.',
+ 'description' => ts('Optional description of the product/premium.'),
'table_name' => 'civicrm_product',
'entity' => 'Product',
'bao' => 'CRM_Contribute_BAO_Product',
'name' => 'sku',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('SKU'),
- 'description' => 'Optional product sku or code.',
+ 'description' => ts('Optional product sku or code.'),
'maxlength' => 50,
'size' => CRM_Utils_Type::BIG,
'export' => TRUE,
'name' => 'options',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Options'),
- 'description' => 'Store comma-delimited list of color, size, etc. options for the product.',
+ 'description' => ts('Store comma-delimited list of color, size, etc. options for the product.'),
'table_name' => 'civicrm_product',
'entity' => 'Product',
'bao' => 'CRM_Contribute_BAO_Product',
'name' => 'image',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Image'),
- 'description' => 'Full or relative URL to uploaded image - fullsize.',
+ 'description' => ts('Full or relative URL to uploaded image - fullsize.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_product',
'name' => 'thumbnail',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Thumbnail'),
- 'description' => 'Full or relative URL to image thumbnail.',
+ 'description' => ts('Full or relative URL to image thumbnail.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_product',
'name' => 'price',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Price'),
- 'description' => 'Sell price or market value for premiums. For tax-deductible contributions, this will be stored as non_deductible_amount in the contribution record.',
+ 'description' => ts('Sell price or market value for premiums. For tax-deductible contributions, this will be stored as non_deductible_amount in the contribution record.'),
'precision' => [
20,
2
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'default' => 'NULL',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'FK to Financial Type.',
+ 'description' => ts('FK to Financial Type.'),
'default' => 'NULL',
'table_name' => 'civicrm_product',
'entity' => 'Product',
'name' => 'min_contribution',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Minimum Contribution'),
- 'description' => 'Minimum contribution required to be eligible to select this premium.',
+ 'description' => ts('Minimum contribution required to be eligible to select this premium.'),
'precision' => [
20,
2
'name' => 'cost',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Cost'),
- 'description' => 'Actual cost of this product. Useful to determine net return from sale or using this as an incentive.',
+ 'description' => ts('Actual cost of this product. Useful to determine net return from sale or using this as an incentive.'),
'precision' => [
20,
2
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Active'),
- 'description' => 'Disabling premium removes it from the premiums_premium join table below.',
+ 'description' => ts('Disabling premium removes it from the premiums_premium join table below.'),
'required' => TRUE,
'table_name' => 'civicrm_product',
'entity' => 'Product',
'name' => 'period_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Period Type'),
- 'description' => 'Rolling means we set start/end based on current day, fixed means we set start/end for current year or month
- (e.g. 1 year + fixed -> we would set start/end for 1/1/06 thru 12/31/06 for any premium chosen in 2006) ',
+ 'description' => ts('Rolling means we set start/end based on current day, fixed means we set start/end for current year or month
+ (e.g. 1 year + fixed -> we would set start/end for 1/1/06 thru 12/31/06 for any premium chosen in 2006) '),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'default' => 'rolling',
'name' => 'fixed_period_start_day',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Fixed Period Start Day'),
- 'description' => 'Month and day (MMDD) that fixed period type subscription or membership starts.',
+ 'description' => ts('Month and day (MMDD) that fixed period type subscription or membership starts.'),
'default' => '0101',
'table_name' => 'civicrm_product',
'entity' => 'Product',
'name' => 'duration_interval',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Duration Interval'),
- 'description' => 'Number of units for total duration of subscription, service, membership (e.g. 12 Months).',
+ 'description' => ts('Number of units for total duration of subscription, service, membership (e.g. 12 Months).'),
'table_name' => 'civicrm_product',
'entity' => 'Product',
'bao' => 'CRM_Contribute_BAO_Product',
'name' => 'frequency_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Frequency Unit'),
- 'description' => 'Frequency unit and interval allow option to store actual delivery frequency for a subscription or service.',
+ 'description' => ts('Frequency unit and interval allow option to store actual delivery frequency for a subscription or service.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'default' => 'month',
'name' => 'frequency_interval',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Frequency Interval'),
- 'description' => 'Number of units for delivery frequency of subscription, service, membership (e.g. every 3 Months).',
+ 'description' => ts('Number of units for delivery frequency of subscription, service, membership (e.g. every 3 Months).'),
'table_name' => 'civicrm_product',
'entity' => 'Product',
'bao' => 'CRM_Contribute_BAO_Product',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Widget ID'),
- 'description' => 'Contribution Id',
+ 'description' => ts('Contribution Id'),
'required' => TRUE,
'table_name' => 'civicrm_contribution_widget',
'entity' => 'Widget',
'name' => 'contribution_page_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution Page'),
- 'description' => 'The Contribution Page which triggered this contribution',
+ 'description' => ts('The Contribution Page which triggered this contribution'),
'table_name' => 'civicrm_contribution_widget',
'entity' => 'Widget',
'bao' => 'CRM_Contribute_BAO_Widget',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Enabled?'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'table_name' => 'civicrm_contribution_widget',
'entity' => 'Widget',
'bao' => 'CRM_Contribute_BAO_Widget',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Widget Title'),
- 'description' => 'Widget title.',
+ 'description' => ts('Widget title.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_widget',
'name' => 'url_logo',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Widget Image Url'),
- 'description' => 'URL to Widget logo',
+ 'description' => ts('URL to Widget logo'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_widget',
'name' => 'button_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Button Title'),
- 'description' => 'Button title.',
+ 'description' => ts('Button title.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_widget',
'name' => 'about',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Description'),
- 'description' => 'About description.',
+ 'description' => ts('About description.'),
'table_name' => 'civicrm_contribution_widget',
'entity' => 'Widget',
'bao' => 'CRM_Contribute_BAO_Widget',
'name' => 'url_homepage',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Homepage Url'),
- 'description' => 'URL to Homepage.',
+ 'description' => ts('URL to Homepage.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_contribution_widget',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Action Schedule Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_action_log',
'entity' => 'ActionLog',
'bao' => 'CRM_Core_BAO_ActionLog',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'FK to id of the entity that the action was performed on. Pseudo - FK.',
+ 'description' => ts('FK to id of the entity that the action was performed on. Pseudo - FK.'),
'required' => TRUE,
'table_name' => 'civicrm_action_log',
'entity' => 'ActionLog',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'name of the entity table for the above id, e.g. civicrm_activity, civicrm_participant',
+ 'description' => ts('name of the entity table for the above id, e.g. civicrm_activity, civicrm_participant'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_action_log',
'name' => 'action_schedule_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Schedule'),
- 'description' => 'FK to the action schedule that this action originated from.',
+ 'description' => ts('FK to the action schedule that this action originated from.'),
'required' => TRUE,
'table_name' => 'civicrm_action_log',
'entity' => 'ActionLog',
'name' => 'action_date_time',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Action Date And Time'),
- 'description' => 'date time that the action was performed on.',
+ 'description' => ts('date time that the action was performed on.'),
'table_name' => 'civicrm_action_log',
'entity' => 'ActionLog',
'bao' => 'CRM_Core_BAO_ActionLog',
'name' => 'is_error',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Error?'),
- 'description' => 'Was there any error sending the reminder?',
+ 'description' => ts('Was there any error sending the reminder?'),
'default' => '0',
'table_name' => 'civicrm_action_log',
'entity' => 'ActionLog',
'name' => 'message',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Message'),
- 'description' => 'Description / text in case there was an error encountered.',
+ 'description' => ts('Description / text in case there was an error encountered.'),
'table_name' => 'civicrm_action_log',
'entity' => 'ActionLog',
'bao' => 'CRM_Core_BAO_ActionLog',
'name' => 'repetition_number',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Repetition Number'),
- 'description' => 'Keeps track of the sequence number of this repetition.',
+ 'description' => ts('Keeps track of the sequence number of this repetition.'),
'table_name' => 'civicrm_action_log',
'entity' => 'ActionLog',
'bao' => 'CRM_Core_BAO_ActionLog',
'name' => 'reference_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Reference Date'),
- 'description' => 'Stores the date from the entity which triggered this reminder action (e.g. membership.end_date for most membership renewal reminders)',
+ 'description' => ts('Stores the date from the entity which triggered this reminder action (e.g. membership.end_date for most membership renewal reminders)'),
'default' => 'NULL',
'table_name' => 'civicrm_action_log',
'entity' => 'ActionLog',
'name' => 'entity',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Action Mapping Entity'),
- 'description' => 'Entity for which the reminder is created',
+ 'description' => ts('Entity for which the reminder is created'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_mapping',
'name' => 'entity_value',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Action Mapping Entity Value'),
- 'description' => 'Entity value',
+ 'description' => ts('Entity value'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_mapping',
'name' => 'entity_value_label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Value Label'),
- 'description' => 'Entity value label',
+ 'description' => ts('Entity value label'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_mapping',
'name' => 'entity_status',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Status'),
- 'description' => 'Entity status',
+ 'description' => ts('Entity status'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_mapping',
'name' => 'entity_status_label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Status Label'),
- 'description' => 'Entity status label',
+ 'description' => ts('Entity status label'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_mapping',
'name' => 'entity_date_start',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Start Date'),
- 'description' => 'Entity date',
+ 'description' => ts('Entity date'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_mapping',
'name' => 'entity_date_end',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity End Date'),
- 'description' => 'Entity date',
+ 'description' => ts('Entity date'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_mapping',
'name' => 'entity_recipient',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Recipient'),
- 'description' => 'Entity recipient',
+ 'description' => ts('Entity recipient'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_mapping',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Name of the action(reminder)',
+ 'description' => ts('Name of the action(reminder)'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_schedule',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Title'),
- 'description' => 'Title of the action(reminder)',
+ 'description' => ts('Title of the action(reminder)'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_schedule',
'name' => 'recipient',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Recipient'),
- 'description' => 'Recipient',
+ 'description' => ts('Recipient'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_schedule',
'name' => 'limit_to',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Limit To'),
- 'description' => 'Is this the recipient criteria limited to OR in addition to?',
+ 'description' => ts('Is this the recipient criteria limited to OR in addition to?'),
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'bao' => 'CRM_Core_BAO_ActionSchedule',
'name' => 'entity_value',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Value'),
- 'description' => 'Entity value',
+ 'description' => ts('Entity value'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_action_schedule',
'name' => 'entity_status',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Status'),
- 'description' => 'Entity status',
+ 'description' => ts('Entity status'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_schedule',
'name' => 'start_action_offset',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Start Action Offset'),
- 'description' => 'Reminder Interval.',
+ 'description' => ts('Reminder Interval.'),
'default' => '0',
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'name' => 'start_action_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Start Action Unit'),
- 'description' => 'Time units for reminder.',
+ 'description' => ts('Time units for reminder.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_action_schedule',
'name' => 'start_action_condition',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Start Action Condition'),
- 'description' => 'Reminder Action',
+ 'description' => ts('Reminder Action'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_schedule',
'name' => 'start_action_date',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Start Action Date'),
- 'description' => 'Entity date',
+ 'description' => ts('Entity date'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_schedule',
'name' => 'repetition_frequency_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Repetition Frequency Unit'),
- 'description' => 'Time units for repetition of reminder.',
+ 'description' => ts('Time units for repetition of reminder.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_action_schedule',
'name' => 'repetition_frequency_interval',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Repetition Frequency Interval'),
- 'description' => 'Time interval for repeating the reminder.',
+ 'description' => ts('Time interval for repeating the reminder.'),
'default' => '0',
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'name' => 'end_frequency_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('End Frequency Unit'),
- 'description' => 'Time units till repetition of reminder.',
+ 'description' => ts('Time units till repetition of reminder.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_action_schedule',
'name' => 'end_frequency_interval',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('End Frequency Interval'),
- 'description' => 'Time interval till repeating the reminder.',
+ 'description' => ts('Time interval till repeating the reminder.'),
'default' => '0',
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'name' => 'end_action',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('End Action'),
- 'description' => 'Reminder Action till repeating the reminder.',
+ 'description' => ts('Reminder Action till repeating the reminder.'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'table_name' => 'civicrm_action_schedule',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('End Date'),
- 'description' => 'Entity end date',
+ 'description' => ts('Entity end date'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_schedule',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Schedule is Active?'),
- 'description' => 'Is this option active?',
+ 'description' => ts('Is this option active?'),
'default' => '1',
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'name' => 'recipient_manual',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Recipient Manual'),
- 'description' => 'Contact IDs to which reminder should be sent.',
+ 'description' => ts('Contact IDs to which reminder should be sent.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_action_schedule',
'name' => 'recipient_listing',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Recipient Listing'),
- 'description' => 'listing based on recipient field.',
+ 'description' => ts('listing based on recipient field.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_action_schedule',
'name' => 'body_text',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Reminder Text'),
- 'description' => 'Body of the mailing in text format.',
+ 'description' => ts('Body of the mailing in text format.'),
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'bao' => 'CRM_Core_BAO_ActionSchedule',
'name' => 'body_html',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Reminder HTML'),
- 'description' => 'Body of the mailing in html format.',
+ 'description' => ts('Body of the mailing in html format.'),
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'bao' => 'CRM_Core_BAO_ActionSchedule',
'name' => 'sms_body_text',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('SMS Reminder Text'),
- 'description' => 'Content of the SMS text.',
+ 'description' => ts('Content of the SMS text.'),
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'bao' => 'CRM_Core_BAO_ActionSchedule',
'name' => 'subject',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Reminder Subject'),
- 'description' => 'Subject of mailing',
+ 'description' => ts('Subject of mailing'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_action_schedule',
'name' => 'record_activity',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Record Activity for Reminder?'),
- 'description' => 'Record Activity for this reminder?',
+ 'description' => ts('Record Activity for this reminder?'),
'default' => 'NULL',
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'name' => 'mapping_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Reminder Mapping'),
- 'description' => 'Name/ID of the mapping to use on this table',
+ 'description' => ts('Name/ID of the mapping to use on this table'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_schedule',
'name' => 'group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Reminder Group'),
- 'description' => 'FK to Group',
+ 'description' => ts('FK to Group'),
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'bao' => 'CRM_Core_BAO_ActionSchedule',
'name' => 'msg_template_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Reminder Template'),
- 'description' => 'FK to the message template.',
+ 'description' => ts('FK to the message template.'),
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'bao' => 'CRM_Core_BAO_ActionSchedule',
'name' => 'sms_template_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('SMS Reminder Template'),
- 'description' => 'FK to the message template.',
+ 'description' => ts('FK to the message template.'),
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'bao' => 'CRM_Core_BAO_ActionSchedule',
'name' => 'absolute_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Fixed Date for Reminder'),
- 'description' => 'Date on which the reminder be sent.',
+ 'description' => ts('Date on which the reminder be sent.'),
'table_name' => 'civicrm_action_schedule',
'entity' => 'ActionSchedule',
'bao' => 'CRM_Core_BAO_ActionSchedule',
'name' => 'from_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Reminder from Name'),
- 'description' => 'Name in "from" field',
+ 'description' => ts('Name in "from" field'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_action_schedule',
'name' => 'from_email',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Reminder From Email'),
- 'description' => 'Email address in "from" field',
+ 'description' => ts('Email address in "from" field'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_action_schedule',
'name' => 'mode',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Message Mode'),
- 'description' => 'Send the message as email or sms or both.',
+ 'description' => ts('Send the message as email or sms or both.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'default' => 'Email',
'name' => 'used_for',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Used For'),
- 'description' => 'Used for repeating entity',
+ 'description' => ts('Used for repeating entity'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_action_schedule',
'name' => 'filter_contact_language',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Filter Contact Language'),
- 'description' => 'Used for multilingual installation',
+ 'description' => ts('Used for multilingual installation'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_action_schedule',
'name' => 'communication_language',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Communication Language'),
- 'description' => 'Used for multilingual installation',
+ 'description' => ts('Used for multilingual installation'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_action_schedule',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Address ID'),
- 'description' => 'Unique Address ID',
+ 'description' => ts('Unique Address ID'),
'required' => TRUE,
'table_name' => 'civicrm_address',
'entity' => 'Address',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_address',
'entity' => 'Address',
'bao' => 'CRM_Core_BAO_Address',
'name' => 'location_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Address Location Type'),
- 'description' => 'Which Location does this address belong to.',
+ 'description' => ts('Which Location does this address belong to.'),
'table_name' => 'civicrm_address',
'entity' => 'Address',
'bao' => 'CRM_Core_BAO_Address',
'name' => 'is_primary',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Address Primary?'),
- 'description' => 'Is this the primary address.',
+ 'description' => ts('Is this the primary address.'),
'default' => '0',
'table_name' => 'civicrm_address',
'entity' => 'Address',
'name' => 'is_billing',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Billing Address'),
- 'description' => 'Is this the billing address.',
+ 'description' => ts('Is this the billing address.'),
'default' => '0',
'table_name' => 'civicrm_address',
'entity' => 'Address',
'name' => 'street_address',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Street Address'),
- 'description' => 'Concatenation of all routable street address components (prefix, street number, street name, suffix, unit
+ 'description' => ts('Concatenation of all routable street address components (prefix, street number, street name, suffix, unit
number OR P.O. Box). Apps should be able to determine physical location with this data (for mapping, mail
delivery, etc.).
- ',
+ '),
'maxlength' => 96,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'street_number',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Street Number'),
- 'description' => 'Numeric portion of address number on the street, e.g. For 112A Main St, the street_number = 112.',
+ 'description' => ts('Numeric portion of address number on the street, e.g. For 112A Main St, the street_number = 112.'),
'export' => TRUE,
'where' => 'civicrm_address.street_number',
'headerPattern' => '',
'name' => 'street_number_suffix',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Street Number Suffix'),
- 'description' => 'Non-numeric portion of address number on the street, e.g. For 112A Main St, the street_number_suffix = A
- ',
+ 'description' => ts('Non-numeric portion of address number on the street, e.g. For 112A Main St, the street_number_suffix = A
+ '),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'export' => TRUE,
'name' => 'street_number_predirectional',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Street Direction Prefix'),
- 'description' => 'Directional prefix, e.g. SE Main St, SE is the prefix.',
+ 'description' => ts('Directional prefix, e.g. SE Main St, SE is the prefix.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_address',
'name' => 'street_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Street Name'),
- 'description' => 'Actual street name, excluding St, Dr, Rd, Ave, e.g. For 112 Main St, the street_name = Main.',
+ 'description' => ts('Actual street name, excluding St, Dr, Rd, Ave, e.g. For 112 Main St, the street_name = Main.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'export' => TRUE,
'name' => 'street_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Street Type'),
- 'description' => 'St, Rd, Dr, etc.',
+ 'description' => ts('St, Rd, Dr, etc.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_address',
'name' => 'street_number_postdirectional',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Street Direction Suffix'),
- 'description' => 'Directional prefix, e.g. Main St S, S is the suffix.',
+ 'description' => ts('Directional prefix, e.g. Main St S, S is the suffix.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_address',
'name' => 'street_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Street Unit'),
- 'description' => 'Secondary unit designator, e.g. Apt 3 or Unit # 14, or Bldg 1200',
+ 'description' => ts('Secondary unit designator, e.g. Apt 3 or Unit # 14, or Bldg 1200'),
'maxlength' => 16,
'size' => CRM_Utils_Type::TWELVE,
'export' => TRUE,
'name' => 'supplemental_address_1',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Supplemental Address 1'),
- 'description' => 'Supplemental Address Information, Line 1',
+ 'description' => ts('Supplemental Address Information, Line 1'),
'maxlength' => 96,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'supplemental_address_2',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Supplemental Address 2'),
- 'description' => 'Supplemental Address Information, Line 2',
+ 'description' => ts('Supplemental Address Information, Line 2'),
'maxlength' => 96,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'supplemental_address_3',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Supplemental Address 3'),
- 'description' => 'Supplemental Address Information, Line 3',
+ 'description' => ts('Supplemental Address Information, Line 3'),
'maxlength' => 96,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'city',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('City'),
- 'description' => 'City, Town or Village Name.',
+ 'description' => ts('City, Town or Village Name.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'import' => TRUE,
'name' => 'county_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('County'),
- 'description' => 'Which County does this address belong to.',
+ 'description' => ts('Which County does this address belong to.'),
'table_name' => 'civicrm_address',
'entity' => 'Address',
'bao' => 'CRM_Core_BAO_Address',
'name' => 'state_province_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('State/Province'),
- 'description' => 'Which State_Province does this address belong to.',
+ 'description' => ts('Which State_Province does this address belong to.'),
'table_name' => 'civicrm_address',
'entity' => 'Address',
'bao' => 'CRM_Core_BAO_Address',
'name' => 'postal_code_suffix',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Postal Code Suffix'),
- 'description' => 'Store the suffix, like the +4 part in the USPS system.',
+ 'description' => ts('Store the suffix, like the +4 part in the USPS system.'),
'maxlength' => 12,
'size' => 3,
'import' => TRUE,
'name' => 'postal_code',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Postal Code'),
- 'description' => 'Store both US (zip5) AND international postal codes. App is responsible for country/region appropriate validation.',
+ 'description' => ts('Store both US (zip5) AND international postal codes. App is responsible for country/region appropriate validation.'),
'maxlength' => 64,
'size' => 6,
'import' => TRUE,
'name' => 'usps_adc',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('USPS Code'),
- 'description' => 'USPS Bulk mailing code.',
+ 'description' => ts('USPS Bulk mailing code.'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'table_name' => 'civicrm_address',
'name' => 'country_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Country'),
- 'description' => 'Which Country does this address belong to.',
+ 'description' => ts('Which Country does this address belong to.'),
'table_name' => 'civicrm_address',
'entity' => 'Address',
'bao' => 'CRM_Core_BAO_Address',
'name' => 'geo_code_1',
'type' => CRM_Utils_Type::T_FLOAT,
'title' => ts('Latitude'),
- 'description' => 'Latitude',
+ 'description' => ts('Latitude'),
'import' => TRUE,
'where' => 'civicrm_address.geo_code_1',
'headerPattern' => '/geo/i',
'name' => 'geo_code_2',
'type' => CRM_Utils_Type::T_FLOAT,
'title' => ts('Longitude'),
- 'description' => 'Longitude',
+ 'description' => ts('Longitude'),
'import' => TRUE,
'where' => 'civicrm_address.geo_code_2',
'headerPattern' => '/geo/i',
'name' => 'manual_geo_code',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is manually geocoded'),
- 'description' => 'Is this a manually entered geo code',
+ 'description' => ts('Is this a manually entered geo code'),
'default' => '0',
'table_name' => 'civicrm_address',
'entity' => 'Address',
'name' => 'timezone',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Timezone'),
- 'description' => 'Timezone expressed as a UTC offset - e.g. United States CST would be written as "UTC-6".',
+ 'description' => ts('Timezone expressed as a UTC offset - e.g. United States CST would be written as "UTC-6".'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_address',
'name' => 'master_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Master Address Belongs To'),
- 'description' => 'FK to Address ID',
+ 'description' => ts('FK to Address ID'),
'import' => TRUE,
'where' => 'civicrm_address.master_id',
'headerPattern' => '',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Address Format ID'),
- 'description' => 'Address Format Id',
+ 'description' => ts('Address Format Id'),
'required' => TRUE,
'table_name' => 'civicrm_address_format',
'entity' => 'AddressFormat',
'name' => 'format',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Address Format'),
- 'description' => 'The format of an address',
+ 'description' => ts('The format of an address'),
'table_name' => 'civicrm_address_format',
'entity' => 'AddressFormat',
'bao' => 'CRM_Core_DAO_AddressFormat',
'name' => 'group_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Group Name'),
- 'description' => 'group name for cache element, useful in cleaning cache elements',
+ 'description' => ts('group name for cache element, useful in cleaning cache elements'),
'required' => TRUE,
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'name' => 'path',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Path'),
- 'description' => 'Unique path name for cache element',
+ 'description' => ts('Unique path name for cache element'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_cache',
'name' => 'data',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Data'),
- 'description' => 'data associated with this path',
+ 'description' => ts('data associated with this path'),
'table_name' => 'civicrm_cache',
'entity' => 'Cache',
'bao' => 'CRM_Core_BAO_Cache',
'component_id' => [
'name' => 'component_id',
'type' => CRM_Utils_Type::T_INT,
- 'description' => 'Component that this menu item belongs to',
+ 'description' => ts('Component that this menu item belongs to'),
'table_name' => 'civicrm_cache',
'entity' => 'Cache',
'bao' => 'CRM_Core_BAO_Cache',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Created Date'),
- 'description' => 'When was the cache item created',
+ 'description' => ts('When was the cache item created'),
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_cache',
'entity' => 'Cache',
'name' => 'expired_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Expired Date'),
- 'description' => 'When should the cache item expire',
+ 'description' => ts('When should the cache item expire'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_cache',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Component ID'),
- 'description' => 'Component ID',
+ 'description' => ts('Component ID'),
'required' => TRUE,
'table_name' => 'civicrm_component',
'entity' => 'Component',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Component name'),
- 'description' => 'Name of the component.',
+ 'description' => ts('Name of the component.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'namespace',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Namespace reserved for component.'),
- 'description' => 'Path to components main directory in a form of a class
+ 'description' => ts('Path to components main directory in a form of a class
namespace.
- ',
+ '),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_component',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Country ID'),
- 'description' => 'Country Id',
+ 'description' => ts('Country Id'),
'required' => TRUE,
'table_name' => 'civicrm_country',
'entity' => 'Country',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Country'),
- 'description' => 'Country Name',
+ 'description' => ts('Country Name'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'import' => TRUE,
'name' => 'iso_code',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Country ISO Code'),
- 'description' => 'ISO Code',
+ 'description' => ts('ISO Code'),
'maxlength' => 2,
'size' => CRM_Utils_Type::TWO,
'table_name' => 'civicrm_country',
'name' => 'country_code',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Country Phone Prefix'),
- 'description' => 'National prefix to be used when dialing TO this country.',
+ 'description' => ts('National prefix to be used when dialing TO this country.'),
'maxlength' => 4,
'size' => CRM_Utils_Type::FOUR,
'table_name' => 'civicrm_country',
'name' => 'address_format_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Address Format'),
- 'description' => 'Foreign key to civicrm_address_format.id.',
+ 'description' => ts('Foreign key to civicrm_address_format.id.'),
'table_name' => 'civicrm_country',
'entity' => 'Country',
'bao' => 'CRM_Core_BAO_Country',
'name' => 'idd_prefix',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Outgoing Phone Prefix'),
- 'description' => 'International direct dialing prefix from within the country TO another country',
+ 'description' => ts('International direct dialing prefix from within the country TO another country'),
'maxlength' => 4,
'size' => CRM_Utils_Type::FOUR,
'table_name' => 'civicrm_country',
'name' => 'ndd_prefix',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Area Code'),
- 'description' => 'Access prefix to call within a country to a different area',
+ 'description' => ts('Access prefix to call within a country to a different area'),
'maxlength' => 4,
'size' => CRM_Utils_Type::FOUR,
'table_name' => 'civicrm_country',
'name' => 'region_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Region'),
- 'description' => 'Foreign key to civicrm_worldregion.id.',
+ 'description' => ts('Foreign key to civicrm_worldregion.id.'),
'required' => TRUE,
'table_name' => 'civicrm_country',
'entity' => 'Country',
'name' => 'is_province_abbreviated',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Abbreviate Province?'),
- 'description' => 'Should state/province be displayed as abbreviation for contacts from this country?',
+ 'description' => ts('Should state/province be displayed as abbreviation for contacts from this country?'),
'default' => '0',
'table_name' => 'civicrm_country',
'entity' => 'Country',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('County ID'),
- 'description' => 'County ID',
+ 'description' => ts('County ID'),
'required' => TRUE,
'table_name' => 'civicrm_county',
'entity' => 'County',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('County'),
- 'description' => 'Name of County',
+ 'description' => ts('Name of County'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'import' => TRUE,
'name' => 'abbreviation',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('County Abbreviation'),
- 'description' => '2-4 Character Abbreviation of County',
+ 'description' => ts('2-4 Character Abbreviation of County'),
'maxlength' => 4,
'size' => CRM_Utils_Type::FOUR,
'table_name' => 'civicrm_county',
'name' => 'state_province_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('State'),
- 'description' => 'ID of State/Province that County belongs',
+ 'description' => ts('ID of State/Province that County belongs'),
'required' => TRUE,
'table_name' => 'civicrm_county',
'entity' => 'County',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Custom Field ID'),
- 'description' => 'Unique Custom Field ID',
+ 'description' => ts('Unique Custom Field ID'),
'required' => TRUE,
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'name' => 'custom_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Custom Group'),
- 'description' => 'FK to civicrm_custom_group.',
+ 'description' => ts('FK to civicrm_custom_group.'),
'required' => TRUE,
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Field Name'),
- 'description' => 'Variable name/programmatic handle for this group.',
+ 'description' => ts('Variable name/programmatic handle for this group.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_custom_field',
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Field Label'),
- 'description' => 'Text for form field label (also friendly name for administering this custom property).',
+ 'description' => ts('Text for form field label (also friendly name for administering this custom property).'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'data_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Field Data Type'),
- 'description' => 'Controls location of data storage in extended_data table.',
+ 'description' => ts('Controls location of data storage in extended_data table.'),
'required' => TRUE,
'maxlength' => 16,
'size' => CRM_Utils_Type::TWELVE,
'name' => 'html_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Field HTML Type'),
- 'description' => 'HTML types plus several built-in extended types.',
+ 'description' => ts('HTML types plus several built-in extended types.'),
'required' => TRUE,
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'name' => 'default_value',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Field Default'),
- 'description' => 'Use form_options.is_default for field_types which use options.',
+ 'description' => ts('Use form_options.is_default for field_types which use options.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_custom_field',
'name' => 'is_required',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Custom Field Is Required?'),
- 'description' => 'Is a value required for this property.',
+ 'description' => ts('Is a value required for this property.'),
'default' => '0',
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'name' => 'is_searchable',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Allow Searching on Field?'),
- 'description' => 'Is this property searchable.',
+ 'description' => ts('Is this property searchable.'),
'default' => '0',
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'name' => 'is_search_range',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Search as a Range'),
- 'description' => 'Is this property range searchable.',
+ 'description' => ts('Is this property range searchable.'),
'default' => '0',
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Controls field display order within an extended property group.',
+ 'description' => ts('Controls field display order within an extended property group.'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_custom_field',
'name' => 'help_pre',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Custom Field Pre Text'),
- 'description' => 'Description and/or help text to display before this field.',
+ 'description' => ts('Description and/or help text to display before this field.'),
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'bao' => 'CRM_Core_BAO_CustomField',
'name' => 'help_post',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Custom Field Post Text'),
- 'description' => 'Description and/or help text to display after this field.',
+ 'description' => ts('Description and/or help text to display after this field.'),
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'bao' => 'CRM_Core_BAO_CustomField',
'name' => 'mask',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Field Formatting'),
- 'description' => 'Optional format instructions for specific field types, like date types.',
+ 'description' => ts('Optional format instructions for specific field types, like date types.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_custom_field',
'name' => 'attributes',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Field Attributes'),
- 'description' => 'Store collection of type-appropriate attributes, e.g. textarea needs rows/cols attributes',
+ 'description' => ts('Store collection of type-appropriate attributes, e.g. textarea needs rows/cols attributes'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_custom_field',
'name' => 'javascript',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Field Javascript'),
- 'description' => 'Optional scripting attributes for field.',
+ 'description' => ts('Optional scripting attributes for field.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_custom_field',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Custom Field Is Active?'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'default' => '1',
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'name' => 'is_view',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Field is Viewable'),
- 'description' => 'Is this property set by PHP Code? A code field is viewable but not editable',
+ 'description' => ts('Is this property set by PHP Code? A code field is viewable but not editable'),
'default' => '0',
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'name' => 'options_per_line',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Field Options Per Line'),
- 'description' => 'number of options per line for checkbox and radio',
+ 'description' => ts('number of options per line for checkbox and radio'),
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'bao' => 'CRM_Core_BAO_CustomField',
'name' => 'text_length',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Field Length'),
- 'description' => 'field length if alphanumeric',
+ 'description' => ts('field length if alphanumeric'),
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'bao' => 'CRM_Core_BAO_CustomField',
'name' => 'start_date_years',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Field Start Date'),
- 'description' => 'Date may be up to start_date_years years prior to the current date.',
+ 'description' => ts('Date may be up to start_date_years years prior to the current date.'),
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'bao' => 'CRM_Core_BAO_CustomField',
'name' => 'end_date_years',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Field End Date'),
- 'description' => 'Date may be up to end_date_years years after the current date.',
+ 'description' => ts('Date may be up to end_date_years years after the current date.'),
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'bao' => 'CRM_Core_BAO_CustomField',
'name' => 'date_format',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Field Data Format'),
- 'description' => 'date format for custom date',
+ 'description' => ts('date format for custom date'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_custom_field',
'name' => 'time_format',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Field Time Format'),
- 'description' => 'time format for custom date',
+ 'description' => ts('time format for custom date'),
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'bao' => 'CRM_Core_BAO_CustomField',
'name' => 'note_columns',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Field Note Columns'),
- 'description' => ' Number of columns in Note Field ',
+ 'description' => ts(' Number of columns in Note Field '),
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'bao' => 'CRM_Core_BAO_CustomField',
'name' => 'note_rows',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Field Note Rows'),
- 'description' => ' Number of rows in Note Field ',
+ 'description' => ts(' Number of rows in Note Field '),
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'bao' => 'CRM_Core_BAO_CustomField',
'name' => 'column_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Field Column Name'),
- 'description' => 'Name of the column that holds the values for this field.',
+ 'description' => ts('Name of the column that holds the values for this field.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_custom_field',
'name' => 'option_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Field Option Group'),
- 'description' => 'For elements with options, the option group id that is used',
+ 'description' => ts('For elements with options, the option group id that is used'),
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'bao' => 'CRM_Core_BAO_CustomField',
'name' => 'filter',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Field Filter'),
- 'description' => 'Stores Contact Get API params contact reference custom fields. May be used for other filters in the future.',
+ 'description' => ts('Stores Contact Get API params contact reference custom fields. May be used for other filters in the future.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_custom_field',
'name' => 'in_selector',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Field Display'),
- 'description' => 'Should the multi-record custom field values be displayed in tab table listing',
+ 'description' => ts('Should the multi-record custom field values be displayed in tab table listing'),
'default' => '0',
'table_name' => 'civicrm_custom_field',
'entity' => 'CustomField',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Custom Group ID'),
- 'description' => 'Unique Custom Group ID',
+ 'description' => ts('Unique Custom Group ID'),
'required' => TRUE,
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Group Name'),
- 'description' => 'Variable name/programmatic handle for this group.',
+ 'description' => ts('Variable name/programmatic handle for this group.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_custom_group',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Group Title'),
- 'description' => 'Friendly Name.',
+ 'description' => ts('Friendly Name.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'extends',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Group Extends'),
- 'description' => 'Type of object this group extends (can add other options later e.g. contact_address, etc.).',
+ 'description' => ts('Type of object this group extends (can add other options later e.g. contact_address, etc.).'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'default' => 'Contact',
'name' => 'extends_entity_column_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Custom Group Subtype List'),
- 'description' => 'FK to civicrm_option_value.id (for option group custom_data_type.)',
+ 'description' => ts('FK to civicrm_option_value.id (for option group custom_data_type.)'),
'default' => 'NULL',
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'name' => 'extends_entity_column_value',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Group Subtype'),
- 'description' => 'linking custom group for dynamic object',
+ 'description' => ts('linking custom group for dynamic object'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_custom_group',
'name' => 'style',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Custom Group Style'),
- 'description' => 'Visual relationship between this form and its parent.',
+ 'description' => ts('Visual relationship between this form and its parent.'),
'maxlength' => 15,
'size' => CRM_Utils_Type::TWELVE,
'table_name' => 'civicrm_custom_group',
'name' => 'collapse_display',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Collapse Custom Group?'),
- 'description' => 'Will this group be in collapsed or expanded mode on initial display ?',
+ 'description' => ts('Will this group be in collapsed or expanded mode on initial display ?'),
'default' => '0',
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'name' => 'help_pre',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Custom Group Pre Text'),
- 'description' => 'Description and/or help text to display before fields in form.',
+ 'description' => ts('Description and/or help text to display before fields in form.'),
'rows' => 4,
'cols' => 80,
'table_name' => 'civicrm_custom_group',
'name' => 'help_post',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Custom Group Post Text'),
- 'description' => 'Description and/or help text to display after fields in form.',
+ 'description' => ts('Description and/or help text to display after fields in form.'),
'rows' => 4,
'cols' => 80,
'table_name' => 'civicrm_custom_group',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Controls display order when multiple extended property groups are setup for the same class.',
+ 'description' => ts('Controls display order when multiple extended property groups are setup for the same class.'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_custom_group',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Custom Group Is Active?'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'default' => '1',
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'name' => 'table_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Table Name'),
- 'description' => 'Name of the table that holds the values for this group.',
+ 'description' => ts('Name of the table that holds the values for this group.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_custom_group',
'name' => 'is_multiple',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Supports Multiple Records'),
- 'description' => 'Does this group hold multiple values?',
+ 'description' => ts('Does this group hold multiple values?'),
'default' => '0',
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'name' => 'min_multiple',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Minimum Multiple Records'),
- 'description' => 'minimum number of multiple records (typically 0?)',
+ 'description' => ts('minimum number of multiple records (typically 0?)'),
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'bao' => 'CRM_Core_BAO_CustomGroup',
'name' => 'max_multiple',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Maximum Multiple Records'),
- 'description' => 'maximum number of multiple records, if 0 - no max',
+ 'description' => ts('maximum number of multiple records, if 0 - no max'),
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'bao' => 'CRM_Core_BAO_CustomGroup',
'name' => 'collapse_adv_display',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Collapse Group Display'),
- 'description' => 'Will this group be in collapsed or expanded mode on advanced search display ?',
+ 'description' => ts('Will this group be in collapsed or expanded mode on advanced search display ?'),
'default' => '0',
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Custom Group Created By'),
- 'description' => 'FK to civicrm_contact, who created this custom group',
+ 'description' => ts('FK to civicrm_contact, who created this custom group'),
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'bao' => 'CRM_Core_BAO_CustomGroup',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Custom Group Created Date'),
- 'description' => 'Date and time this custom group was created.',
+ 'description' => ts('Date and time this custom group was created.'),
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'bao' => 'CRM_Core_BAO_CustomGroup',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Reserved Group?'),
- 'description' => 'Is this a reserved Custom Group?',
+ 'description' => ts('Is this a reserved Custom Group?'),
'default' => '0',
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'name' => 'is_public',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Custom Group Is Public?'),
- 'description' => 'Is this property public?',
+ 'description' => ts('Is this property public?'),
'default' => '1',
'table_name' => 'civicrm_custom_group',
'entity' => 'CustomGroup',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Dashlet Domain'),
- 'description' => 'Domain for dashboard',
+ 'description' => ts('Domain for dashboard'),
'required' => TRUE,
'table_name' => 'civicrm_dashboard',
'entity' => 'Dashboard',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Dashlet Name'),
- 'description' => 'Internal name of dashlet.',
+ 'description' => ts('Internal name of dashlet.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_dashboard',
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Dashlet Title'),
- 'description' => 'dashlet title',
+ 'description' => ts('dashlet title'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_dashboard',
'name' => 'url',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Dashlet URL'),
- 'description' => 'url in case of external dashlet',
+ 'description' => ts('url in case of external dashlet'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_dashboard',
'name' => 'permission',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Dashlet Permission'),
- 'description' => 'Permission for the dashlet',
+ 'description' => ts('Permission for the dashlet'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_dashboard',
'name' => 'permission_operator',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Dashlet Permission Operator'),
- 'description' => 'Permission Operator',
+ 'description' => ts('Permission Operator'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'table_name' => 'civicrm_dashboard',
'name' => 'fullscreen_url',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Fullscreen URL'),
- 'description' => 'fullscreen url for dashlet',
+ 'description' => ts('fullscreen url for dashlet'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_dashboard',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Dashlet Active?'),
- 'description' => 'Is this dashlet active?',
+ 'description' => ts('Is this dashlet active?'),
'default' => '0',
'table_name' => 'civicrm_dashboard',
'entity' => 'Dashboard',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Dashlet Reserved?'),
- 'description' => 'Is this dashlet reserved?',
+ 'description' => ts('Is this dashlet reserved?'),
'default' => '0',
'table_name' => 'civicrm_dashboard',
'entity' => 'Dashboard',
'name' => 'cache_minutes',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Cache Minutes'),
- 'description' => 'Number of minutes to cache dashlet content in browser localStorage.',
+ 'description' => ts('Number of minutes to cache dashlet content in browser localStorage.'),
'required' => TRUE,
'default' => '60',
'table_name' => 'civicrm_dashboard',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Discount ID'),
- 'description' => 'primary key',
+ 'description' => ts('primary key'),
'required' => TRUE,
'table_name' => 'civicrm_discount',
'entity' => 'Discount',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'physical tablename for entity being joined to discount, e.g. civicrm_event',
+ 'description' => ts('physical tablename for entity being joined to discount, e.g. civicrm_event'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_discount',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'FK to entity table specified in entity_table column.',
+ 'description' => ts('FK to entity table specified in entity_table column.'),
'required' => TRUE,
'table_name' => 'civicrm_discount',
'entity' => 'Discount',
'name' => 'price_set_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Discount Name'),
- 'description' => 'FK to civicrm_price_set',
+ 'description' => ts('FK to civicrm_price_set'),
'required' => TRUE,
'export' => TRUE,
'where' => 'civicrm_discount.price_set_id',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Discount Start Date'),
- 'description' => 'Date when discount starts.',
+ 'description' => ts('Date when discount starts.'),
'table_name' => 'civicrm_discount',
'entity' => 'Discount',
'bao' => 'CRM_Core_BAO_Discount',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Discount End Date'),
- 'description' => 'Date when discount ends.',
+ 'description' => ts('Date when discount ends.'),
'table_name' => 'civicrm_discount',
'entity' => 'Discount',
'bao' => 'CRM_Core_BAO_Discount',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Domain ID'),
- 'description' => 'Domain ID',
+ 'description' => ts('Domain ID'),
'required' => TRUE,
'table_name' => 'civicrm_domain',
'entity' => 'Domain',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Domain Name'),
- 'description' => 'Name of Domain / Organization',
+ 'description' => ts('Name of Domain / Organization'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_domain',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Domain Description'),
- 'description' => 'Description of Domain.',
+ 'description' => ts('Description of Domain.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_domain',
'name' => 'config_backend',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Domain Configuration'),
- 'description' => 'Backend configuration.',
+ 'description' => ts('Backend configuration.'),
'table_name' => 'civicrm_domain',
'entity' => 'Domain',
'bao' => 'CRM_Core_BAO_Domain',
'name' => 'version',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('CiviCRM Version'),
- 'description' => 'The civicrm version this instance is running',
+ 'description' => ts('The civicrm version this instance is running'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'table_name' => 'civicrm_domain',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Domain Contact'),
- 'description' => 'FK to Contact ID. This is specifically not an FK to avoid circular constraints',
+ 'description' => ts('FK to Contact ID. This is specifically not an FK to avoid circular constraints'),
'table_name' => 'civicrm_domain',
'entity' => 'Domain',
'bao' => 'CRM_Core_BAO_Domain',
'name' => 'locales',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Supported Languages'),
- 'description' => 'list of locales supported by the current db state (NULL for single-lang install)',
+ 'description' => ts('list of locales supported by the current db state (NULL for single-lang install)'),
'table_name' => 'civicrm_domain',
'entity' => 'Domain',
'bao' => 'CRM_Core_BAO_Domain',
'name' => 'locale_custom_strings',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Language Customizations'),
- 'description' => 'Locale specific string overrides',
+ 'description' => ts('Locale specific string overrides'),
'table_name' => 'civicrm_domain',
'entity' => 'Domain',
'bao' => 'CRM_Core_BAO_Domain',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Email ID'),
- 'description' => 'Unique Email ID',
+ 'description' => ts('Unique Email ID'),
'required' => TRUE,
'table_name' => 'civicrm_email',
'entity' => 'Email',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Email Contact'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_email',
'entity' => 'Email',
'bao' => 'CRM_Core_BAO_Email',
'name' => 'location_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Email Location Type'),
- 'description' => 'Which Location does this email belong to.',
+ 'description' => ts('Which Location does this email belong to.'),
'table_name' => 'civicrm_email',
'entity' => 'Email',
'bao' => 'CRM_Core_BAO_Email',
'name' => 'email',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Email'),
- 'description' => 'Email address',
+ 'description' => ts('Email address'),
'maxlength' => 254,
'size' => 30,
'import' => TRUE,
'name' => 'is_primary',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Primary email'),
- 'description' => 'Is this the primary?',
+ 'description' => ts('Is this the primary?'),
'default' => '0',
'table_name' => 'civicrm_email',
'entity' => 'Email',
'name' => 'is_billing',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Billing Email?'),
- 'description' => 'Is this the billing?',
+ 'description' => ts('Is this the billing?'),
'default' => '0',
'table_name' => 'civicrm_email',
'entity' => 'Email',
'name' => 'on_hold',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('On Hold'),
- 'description' => 'Implicit FK to civicrm_option_value where option_group = email_on_hold.',
+ 'description' => ts('Implicit FK to civicrm_option_value where option_group = email_on_hold.'),
'required' => TRUE,
'export' => TRUE,
'where' => 'civicrm_email.on_hold',
'name' => 'is_bulkmail',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Use for Bulk Mail'),
- 'description' => 'Is this address for bulk mail ?',
+ 'description' => ts('Is this address for bulk mail ?'),
'required' => TRUE,
'export' => TRUE,
'where' => 'civicrm_email.is_bulkmail',
'name' => 'hold_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Hold Date'),
- 'description' => 'When the address went on bounce hold',
+ 'description' => ts('When the address went on bounce hold'),
'table_name' => 'civicrm_email',
'entity' => 'Email',
'bao' => 'CRM_Core_BAO_Email',
'name' => 'reset_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Reset Date'),
- 'description' => 'When the address bounce status was last reset',
+ 'description' => ts('When the address bounce status was last reset'),
'table_name' => 'civicrm_email',
'entity' => 'Email',
'bao' => 'CRM_Core_BAO_Email',
'name' => 'signature_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Signature Text'),
- 'description' => 'Text formatted signature for the email.',
+ 'description' => ts('Text formatted signature for the email.'),
'import' => TRUE,
'where' => 'civicrm_email.signature_text',
'headerPattern' => '',
'name' => 'signature_html',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Signature Html'),
- 'description' => 'HTML formatted signature for the email.',
+ 'description' => ts('HTML formatted signature for the email.'),
'import' => TRUE,
'where' => 'civicrm_email.signature_html',
'headerPattern' => '',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity File ID'),
- 'description' => 'primary key',
+ 'description' => ts('primary key'),
'required' => TRUE,
'table_name' => 'civicrm_entity_file',
'entity' => 'EntityFile',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'physical tablename for entity being joined to file, e.g. civicrm_contact',
+ 'description' => ts('physical tablename for entity being joined to file, e.g. civicrm_contact'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_entity_file',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'FK to entity table specified in entity_table column.',
+ 'description' => ts('FK to entity table specified in entity_table column.'),
'required' => TRUE,
'table_name' => 'civicrm_entity_file',
'entity' => 'EntityFile',
'name' => 'file_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('File'),
- 'description' => 'FK to civicrm_file',
+ 'description' => ts('FK to civicrm_file'),
'required' => TRUE,
'table_name' => 'civicrm_entity_file',
'entity' => 'EntityFile',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity Tag ID'),
- 'description' => 'primary key',
+ 'description' => ts('primary key'),
'required' => TRUE,
'table_name' => 'civicrm_entity_tag',
'entity' => 'EntityTag',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'physical tablename for entity being joined to file, e.g. civicrm_contact',
+ 'description' => ts('physical tablename for entity being joined to file, e.g. civicrm_contact'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_entity_tag',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'FK to entity table specified in entity_table column.',
+ 'description' => ts('FK to entity table specified in entity_table column.'),
'required' => TRUE,
'table_name' => 'civicrm_entity_tag',
'entity' => 'EntityTag',
'name' => 'tag_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Tag'),
- 'description' => 'FK to civicrm_tag',
+ 'description' => ts('FK to civicrm_tag'),
'required' => TRUE,
'table_name' => 'civicrm_entity_tag',
'entity' => 'EntityTag',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Extension ID'),
- 'description' => 'Local Extension ID',
+ 'description' => ts('Local Extension ID'),
'required' => TRUE,
'table_name' => 'civicrm_extension',
'entity' => 'Extension',
'name' => 'full_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Key'),
- 'description' => 'Fully qualified extension name',
+ 'description' => ts('Fully qualified extension name'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Short name',
+ 'description' => ts('Short name'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Label'),
- 'description' => 'Short, printable name',
+ 'description' => ts('Short, printable name'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'file',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('File'),
- 'description' => 'Primary PHP file',
+ 'description' => ts('Primary PHP file'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'schema_version',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Schema Version'),
- 'description' => 'Revision code of the database schema; the format is module-defined',
+ 'description' => ts('Revision code of the database schema; the format is module-defined'),
'maxlength' => 63,
'size' => CRM_Utils_Type::BIG,
'import' => TRUE,
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Extension is Active?'),
- 'description' => 'Is this extension active?',
+ 'description' => ts('Is this extension active?'),
'default' => '1',
'table_name' => 'civicrm_extension',
'entity' => 'Extension',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('File ID'),
- 'description' => 'Unique ID',
+ 'description' => ts('Unique ID'),
'required' => TRUE,
'table_name' => 'civicrm_file',
'entity' => 'File',
'name' => 'file_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('File Type'),
- 'description' => 'Type of file (e.g. Transcript, Income Tax Return, etc). FK to civicrm_option_value.',
+ 'description' => ts('Type of file (e.g. Transcript, Income Tax Return, etc). FK to civicrm_option_value.'),
'table_name' => 'civicrm_file',
'entity' => 'File',
'bao' => 'CRM_Core_BAO_File',
'name' => 'mime_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mime Type'),
- 'description' => 'mime type of the document',
+ 'description' => ts('mime type of the document'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_file',
'name' => 'uri',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Path'),
- 'description' => 'uri of the file on disk',
+ 'description' => ts('uri of the file on disk'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_file',
'name' => 'document',
'type' => CRM_Utils_Type::T_MEDIUMBLOB,
'title' => ts('File Contents'),
- 'description' => 'contents of the document',
+ 'description' => ts('contents of the document'),
'table_name' => 'civicrm_file',
'entity' => 'File',
'bao' => 'CRM_Core_BAO_File',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('File Description'),
- 'description' => 'Additional descriptive text regarding this attachment (optional).',
+ 'description' => ts('Additional descriptive text regarding this attachment (optional).'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_file',
'name' => 'upload_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('File Upload Date'),
- 'description' => 'Date and time that this attachment was uploaded or written to server.',
+ 'description' => ts('Date and time that this attachment was uploaded or written to server.'),
'table_name' => 'civicrm_file',
'entity' => 'File',
'bao' => 'CRM_Core_BAO_File',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Created By Contact ID'),
- 'description' => 'FK to civicrm_contact, who uploaded this file',
+ 'description' => ts('FK to civicrm_contact, who uploaded this file'),
'table_name' => 'civicrm_file',
'entity' => 'File',
'bao' => 'CRM_Core_BAO_File',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Instant Messenger ID'),
- 'description' => 'Unique IM ID',
+ 'description' => ts('Unique IM ID'),
'required' => TRUE,
'table_name' => 'civicrm_im',
'entity' => 'IM',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('IM Contact'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_im',
'entity' => 'IM',
'bao' => 'CRM_Core_BAO_IM',
'name' => 'location_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('IM Location Type'),
- 'description' => 'Which Location does this email belong to.',
+ 'description' => ts('Which Location does this email belong to.'),
'table_name' => 'civicrm_im',
'entity' => 'IM',
'bao' => 'CRM_Core_BAO_IM',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('IM Screen Name'),
- 'description' => 'IM screen name',
+ 'description' => ts('IM screen name'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'import' => TRUE,
'name' => 'provider_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('IM Provider'),
- 'description' => 'Which IM Provider does this screen name belong to.',
+ 'description' => ts('Which IM Provider does this screen name belong to.'),
'table_name' => 'civicrm_im',
'entity' => 'IM',
'bao' => 'CRM_Core_BAO_IM',
'name' => 'is_primary',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is IM Primary?'),
- 'description' => 'Is this the primary IM for this contact and location.',
+ 'description' => ts('Is this the primary IM for this contact and location.'),
'default' => '0',
'table_name' => 'civicrm_im',
'entity' => 'IM',
'name' => 'is_billing',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is IM Billing?'),
- 'description' => 'Is this the billing?',
+ 'description' => ts('Is this the billing?'),
'default' => '0',
'table_name' => 'civicrm_im',
'entity' => 'IM',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Job ID'),
- 'description' => 'Job Id',
+ 'description' => ts('Job Id'),
'required' => TRUE,
'table_name' => 'civicrm_job',
'entity' => 'Job',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Job Domain'),
- 'description' => 'Which Domain is this scheduled job for',
+ 'description' => ts('Which Domain is this scheduled job for'),
'required' => TRUE,
'table_name' => 'civicrm_job',
'entity' => 'Job',
'name' => 'run_frequency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Job Frequency'),
- 'description' => 'Scheduled job run frequency.',
+ 'description' => ts('Scheduled job run frequency.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'default' => 'Daily',
'name' => 'last_run',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Last Run'),
- 'description' => 'When was this cron entry last run',
+ 'description' => ts('When was this cron entry last run'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_job',
'name' => 'scheduled_run_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Scheduled Run Date'),
- 'description' => 'When is this cron entry scheduled to run',
+ 'description' => ts('When is this cron entry scheduled to run'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_job',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Job Name'),
- 'description' => 'Title of the job',
+ 'description' => ts('Title of the job'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_job',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Job Description'),
- 'description' => 'Description of the job',
+ 'description' => ts('Description of the job'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_job',
'name' => 'api_entity',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('API Entity'),
- 'description' => 'Entity of the job api call',
+ 'description' => ts('Entity of the job api call'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_job',
'name' => 'api_action',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('API Action'),
- 'description' => 'Action of the job api call',
+ 'description' => ts('Action of the job api call'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_job',
'name' => 'parameters',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('API Parameters'),
- 'description' => 'List of parameters to the command.',
+ 'description' => ts('List of parameters to the command.'),
'rows' => 4,
'cols' => 60,
'table_name' => 'civicrm_job',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Job Is Active?'),
- 'description' => 'Is this job active?',
+ 'description' => ts('Is this job active?'),
'table_name' => 'civicrm_job',
'entity' => 'Job',
'bao' => 'CRM_Core_BAO_Job',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Job Log ID'),
- 'description' => 'Job log entry Id',
+ 'description' => ts('Job log entry Id'),
'required' => TRUE,
'table_name' => 'civicrm_job_log',
'entity' => 'JobLog',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Domain ID'),
- 'description' => 'Which Domain is this scheduled job for',
+ 'description' => ts('Which Domain is this scheduled job for'),
'required' => TRUE,
'table_name' => 'civicrm_job_log',
'entity' => 'JobLog',
'name' => 'run_time',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Timestamp'),
- 'description' => 'Log entry date',
+ 'description' => ts('Log entry date'),
'table_name' => 'civicrm_job_log',
'entity' => 'JobLog',
'bao' => 'CRM_Core_DAO_JobLog',
'name' => 'job_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Job ID'),
- 'description' => 'Pointer to job id - not a FK though, just for logging purposes',
+ 'description' => ts('Pointer to job id - not a FK though, just for logging purposes'),
'table_name' => 'civicrm_job_log',
'entity' => 'JobLog',
'bao' => 'CRM_Core_DAO_JobLog',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Job Name'),
- 'description' => 'Title of the job',
+ 'description' => ts('Title of the job'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_job_log',
'name' => 'command',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Command'),
- 'description' => 'Full path to file containing job script',
+ 'description' => ts('Full path to file containing job script'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_job_log',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Description'),
- 'description' => 'Title line of log entry',
+ 'description' => ts('Title line of log entry'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_job_log',
'name' => 'data',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Extended Data'),
- 'description' => 'Potential extended data for specific job run (e.g. tracebacks).',
+ 'description' => ts('Potential extended data for specific job run (e.g. tracebacks).'),
'table_name' => 'civicrm_job_log',
'entity' => 'JobLog',
'bao' => 'CRM_Core_DAO_JobLog',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Location Block ID'),
- 'description' => 'Unique ID',
+ 'description' => ts('Unique ID'),
'required' => TRUE,
'table_name' => 'civicrm_loc_block',
'entity' => 'LocBlock',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Location Type ID'),
- 'description' => 'Location Type ID',
+ 'description' => ts('Location Type ID'),
'required' => TRUE,
'table_name' => 'civicrm_location_type',
'entity' => 'LocationType',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Location Type'),
- 'description' => 'Location Type Name.',
+ 'description' => ts('Location Type Name.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_location_type',
'name' => 'display_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Display Name'),
- 'description' => 'Location Type Display Name.',
+ 'description' => ts('Location Type Display Name.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_location_type',
'name' => 'vcard_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('vCard Location Type'),
- 'description' => 'vCard Location Type Name.',
+ 'description' => ts('vCard Location Type Name.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_location_type',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Description'),
- 'description' => 'Location Type Description.',
+ 'description' => ts('Location Type Description.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_location_type',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Location Type is Reserved?'),
- 'description' => 'Is this location type a predefined system location?',
+ 'description' => ts('Is this location type a predefined system location?'),
'table_name' => 'civicrm_location_type',
'entity' => 'LocationType',
'bao' => 'CRM_Core_BAO_LocationType',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Location Type is Active?'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'table_name' => 'civicrm_location_type',
'entity' => 'LocationType',
'bao' => 'CRM_Core_BAO_LocationType',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Default Location Type?'),
- 'description' => 'Is this location type the default?',
+ 'description' => ts('Is this location type the default?'),
'table_name' => 'civicrm_location_type',
'entity' => 'LocationType',
'bao' => 'CRM_Core_BAO_LocationType',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Log ID'),
- 'description' => 'Log ID',
+ 'description' => ts('Log ID'),
'required' => TRUE,
'table_name' => 'civicrm_log',
'entity' => 'Log',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'Name of table where item being referenced is stored.',
+ 'description' => ts('Name of table where item being referenced is stored.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID '),
- 'description' => 'Foreign key to the referenced item.',
+ 'description' => ts('Foreign key to the referenced item.'),
'required' => TRUE,
'table_name' => 'civicrm_log',
'entity' => 'Log',
'name' => 'data',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Data'),
- 'description' => 'Updates does to this object if any.',
+ 'description' => ts('Updates does to this object if any.'),
'table_name' => 'civicrm_log',
'entity' => 'Log',
'bao' => 'CRM_Core_BAO_Log',
'name' => 'modified_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Modified By'),
- 'description' => 'FK to Contact ID of person under whose credentials this data modification was made.',
+ 'description' => ts('FK to Contact ID of person under whose credentials this data modification was made.'),
'table_name' => 'civicrm_log',
'entity' => 'Log',
'bao' => 'CRM_Core_BAO_Log',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Modified Date'),
- 'description' => 'When was the referenced entity created or modified or deleted.',
+ 'description' => ts('When was the referenced entity created or modified or deleted.'),
'table_name' => 'civicrm_log',
'entity' => 'Log',
'bao' => 'CRM_Core_BAO_Log',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mail Settings ID'),
- 'description' => 'primary key',
+ 'description' => ts('primary key'),
'required' => TRUE,
'table_name' => 'civicrm_mail_settings',
'entity' => 'MailSettings',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mail Settings Domain'),
- 'description' => 'Which Domain is this match entry for',
+ 'description' => ts('Which Domain is this match entry for'),
'required' => TRUE,
'table_name' => 'civicrm_mail_settings',
'entity' => 'MailSettings',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mail Settings Name'),
- 'description' => 'name of this group of settings',
+ 'description' => ts('name of this group of settings'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mail_settings',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Default Mail Settings?'),
- 'description' => 'whether this is the default set of settings for this domain',
+ 'description' => ts('whether this is the default set of settings for this domain'),
'table_name' => 'civicrm_mail_settings',
'entity' => 'MailSettings',
'bao' => 'CRM_Core_BAO_MailSettings',
'name' => 'domain',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('email Domain'),
- 'description' => 'email address domain (the part after @)',
+ 'description' => ts('email address domain (the part after @)'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mail_settings',
'name' => 'localpart',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('email Local Part'),
- 'description' => 'optional local part (like civimail+ for addresses like civimail+s.1.2@example.com)',
+ 'description' => ts('optional local part (like civimail+ for addresses like civimail+s.1.2@example.com)'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mail_settings',
'name' => 'return_path',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Return Path'),
- 'description' => 'contents of the Return-Path header',
+ 'description' => ts('contents of the Return-Path header'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mail_settings',
'name' => 'protocol',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Protocol'),
- 'description' => 'name of the protocol to use for polling (like IMAP, POP3 or Maildir)',
+ 'description' => ts('name of the protocol to use for polling (like IMAP, POP3 or Maildir)'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mail_settings',
'name' => 'server',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mail Server'),
- 'description' => 'server to use when polling',
+ 'description' => ts('server to use when polling'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mail_settings',
'name' => 'port',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mail Port'),
- 'description' => 'port to use when polling',
+ 'description' => ts('port to use when polling'),
'table_name' => 'civicrm_mail_settings',
'entity' => 'MailSettings',
'bao' => 'CRM_Core_BAO_MailSettings',
'name' => 'username',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mail Account Username'),
- 'description' => 'username to use when polling',
+ 'description' => ts('username to use when polling'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mail_settings',
'name' => 'password',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mail Account Password'),
- 'description' => 'password to use when polling',
+ 'description' => ts('password to use when polling'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mail_settings',
'name' => 'is_ssl',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Mail Account Uses SSL'),
- 'description' => 'whether to use SSL or not',
+ 'description' => ts('whether to use SSL or not'),
'table_name' => 'civicrm_mail_settings',
'entity' => 'MailSettings',
'bao' => 'CRM_Core_BAO_MailSettings',
'name' => 'source',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mail Folder'),
- 'description' => 'folder to poll from when using IMAP, path to poll from when using Maildir, etc.',
+ 'description' => ts('folder to poll from when using IMAP, path to poll from when using Maildir, etc.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mail_settings',
'name' => 'activity_status',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Activity Status'),
- 'description' => 'Name of status to use when creating email to activity.',
+ 'description' => ts('Name of status to use when creating email to activity.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mail_settings',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Managed ID'),
- 'description' => 'Surrogate Key',
+ 'description' => ts('Surrogate Key'),
'required' => TRUE,
'table_name' => 'civicrm_managed',
'entity' => 'Managed',
'name' => 'module',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Module'),
- 'description' => 'Name of the module which declared this object',
+ 'description' => ts('Name of the module which declared this object'),
'required' => TRUE,
'maxlength' => 127,
'size' => CRM_Utils_Type::HUGE,
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Symbolic name used by the module to identify the object',
+ 'description' => ts('Symbolic name used by the module to identify the object'),
'maxlength' => 127,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_managed',
'name' => 'entity_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Type'),
- 'description' => 'API entity type',
+ 'description' => ts('API entity type'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'Foreign key to the referenced item.',
+ 'description' => ts('Foreign key to the referenced item.'),
'required' => TRUE,
'table_name' => 'civicrm_managed',
'entity' => 'Managed',
'name' => 'cleanup',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Cleanup Setting'),
- 'description' => 'Policy on when to cleanup entity (always, never, unused)',
+ 'description' => ts('Policy on when to cleanup entity (always, never, unused)'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'table_name' => 'civicrm_managed',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mapping ID'),
- 'description' => 'Mapping ID',
+ 'description' => ts('Mapping ID'),
'required' => TRUE,
'table_name' => 'civicrm_mapping',
'entity' => 'Mapping',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Name of Mapping',
+ 'description' => ts('Name of Mapping'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_mapping',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Description'),
- 'description' => 'Description of Mapping.',
+ 'description' => ts('Description of Mapping.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mapping',
'name' => 'mapping_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mapping Type'),
- 'description' => 'Mapping Type',
+ 'description' => ts('Mapping Type'),
'table_name' => 'civicrm_mapping',
'entity' => 'Mapping',
'bao' => 'CRM_Core_BAO_Mapping',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mapping Field ID'),
- 'description' => 'Mapping Field ID',
+ 'description' => ts('Mapping Field ID'),
'required' => TRUE,
'table_name' => 'civicrm_mapping_field',
'entity' => 'MappingField',
'name' => 'mapping_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mapping ID'),
- 'description' => 'Mapping to which this field belongs',
+ 'description' => ts('Mapping to which this field belongs'),
'required' => TRUE,
'table_name' => 'civicrm_mapping_field',
'entity' => 'MappingField',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Mapping field key',
+ 'description' => ts('Mapping field key'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mapping_field',
'name' => 'contact_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Type'),
- 'description' => 'Contact Type in mapping',
+ 'description' => ts('Contact Type in mapping'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_mapping_field',
'name' => 'column_number',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Column Number'),
- 'description' => 'Column number for mapping set',
+ 'description' => ts('Column number for mapping set'),
'required' => TRUE,
'table_name' => 'civicrm_mapping_field',
'entity' => 'MappingField',
'name' => 'location_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Location type ID'),
- 'description' => 'Location type of this mapping, if required',
+ 'description' => ts('Location type of this mapping, if required'),
'table_name' => 'civicrm_mapping_field',
'entity' => 'MappingField',
'bao' => 'CRM_Core_DAO_MappingField',
'name' => 'phone_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Phone type ID'),
- 'description' => 'Which type of phone does this number belongs.',
+ 'description' => ts('Which type of phone does this number belongs.'),
'table_name' => 'civicrm_mapping_field',
'entity' => 'MappingField',
'bao' => 'CRM_Core_DAO_MappingField',
'name' => 'im_provider_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('IM provider ID'),
- 'description' => 'Which type of IM Provider does this name belong.',
+ 'description' => ts('Which type of IM Provider does this name belong.'),
'table_name' => 'civicrm_mapping_field',
'entity' => 'MappingField',
'bao' => 'CRM_Core_DAO_MappingField',
'name' => 'website_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Website type ID'),
- 'description' => 'Which type of website does this site belong',
+ 'description' => ts('Which type of website does this site belong'),
'table_name' => 'civicrm_mapping_field',
'entity' => 'MappingField',
'bao' => 'CRM_Core_DAO_MappingField',
'name' => 'relationship_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Relationship type ID'),
- 'description' => 'Relationship type, if required',
+ 'description' => ts('Relationship type, if required'),
'table_name' => 'civicrm_mapping_field',
'entity' => 'MappingField',
'bao' => 'CRM_Core_DAO_MappingField',
'name' => 'grouping',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Grouping'),
- 'description' => 'Used to group mapping_field records into related sets (e.g. for criteria sets in search builder
+ 'description' => ts('Used to group mapping_field records into related sets (e.g. for criteria sets in search builder
mappings).
- ',
+ '),
'default' => '1',
'table_name' => 'civicrm_mapping_field',
'entity' => 'MappingField',
'name' => 'operator',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Operator'),
- 'description' => 'SQL WHERE operator for search-builder mapping fields (search criteria).',
+ 'description' => ts('SQL WHERE operator for search-builder mapping fields (search criteria).'),
'maxlength' => 16,
'size' => CRM_Utils_Type::TWELVE,
'table_name' => 'civicrm_mapping_field',
'name' => 'value',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Value'),
- 'description' => 'SQL WHERE value for search-builder mapping fields.',
+ 'description' => ts('SQL WHERE value for search-builder mapping fields.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mapping_field',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Domain'),
- 'description' => 'Which Domain is this menu item for',
+ 'description' => ts('Which Domain is this menu item for'),
'required' => TRUE,
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'name' => 'path',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Path'),
- 'description' => 'Path Name',
+ 'description' => ts('Path Name'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_menu',
'name' => 'path_arguments',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Arguments'),
- 'description' => 'Arguments to pass to the url',
+ 'description' => ts('Arguments to pass to the url'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'access_callback',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Access Callback'),
- 'description' => 'Function to call to check access permissions',
+ 'description' => ts('Function to call to check access permissions'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_menu',
'name' => 'access_arguments',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Access Arguments'),
- 'description' => 'Arguments to pass to access callback',
+ 'description' => ts('Arguments to pass to access callback'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'page_callback',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Page Callback'),
- 'description' => 'function to call for this url',
+ 'description' => ts('function to call for this url'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_menu',
'name' => 'page_arguments',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Page Arguments'),
- 'description' => 'Arguments to pass to page callback',
+ 'description' => ts('Arguments to pass to page callback'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'breadcrumb',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Breadcrumb'),
- 'description' => 'Breadcrumb for the path.',
+ 'description' => ts('Breadcrumb for the path.'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'return_url',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Return Url'),
- 'description' => 'Url where a page should redirected to, if next url not known.',
+ 'description' => ts('Url where a page should redirected to, if next url not known.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_menu',
'name' => 'return_url_args',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Return Url Args'),
- 'description' => 'Arguments to pass to return_url',
+ 'description' => ts('Arguments to pass to return_url'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_menu',
'name' => 'component_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Component'),
- 'description' => 'Component that this menu item belongs to',
+ 'description' => ts('Component that this menu item belongs to'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Enabled?'),
- 'description' => 'Is this menu item active?',
+ 'description' => ts('Is this menu item active?'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'is_public',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Public?'),
- 'description' => 'Is this menu accessible to the public?',
+ 'description' => ts('Is this menu accessible to the public?'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'is_exposed',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Exposed?'),
- 'description' => 'Is this menu exposed to the navigation system?',
+ 'description' => ts('Is this menu exposed to the navigation system?'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'is_ssl',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Use SSL?'),
- 'description' => 'Should this menu be exposed via SSL if enabled?',
+ 'description' => ts('Should this menu be exposed via SSL if enabled?'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Ordering of the menu items in various blocks.',
+ 'description' => ts('Ordering of the menu items in various blocks.'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_menu',
'name' => 'type',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Type'),
- 'description' => 'Drupal menu type.',
+ 'description' => ts('Drupal menu type.'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_menu',
'name' => 'page_type',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Page Type'),
- 'description' => 'CiviCRM menu type.',
+ 'description' => ts('CiviCRM menu type.'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_menu',
'name' => 'skipBreadcrumb',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Hide Breadcrumb?'),
- 'description' => 'skip this url being exposed to breadcrumb',
+ 'description' => ts('skip this url being exposed to breadcrumb'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'module_data',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Other menu data'),
- 'description' => 'All other menu metadata not stored in other fields',
+ 'description' => ts('All other menu metadata not stored in other fields'),
'table_name' => 'civicrm_menu',
'entity' => 'Menu',
'bao' => 'CRM_Core_DAO_Menu',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Message Template ID'),
- 'description' => 'Message Template ID',
+ 'description' => ts('Message Template ID'),
'required' => TRUE,
'table_name' => 'civicrm_msg_template',
'entity' => 'MessageTemplate',
'name' => 'msg_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Message Template Title'),
- 'description' => 'Descriptive title of message',
+ 'description' => ts('Descriptive title of message'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_msg_template',
'name' => 'msg_subject',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Message Template Subject'),
- 'description' => 'Subject for email message.',
+ 'description' => ts('Subject for email message.'),
'table_name' => 'civicrm_msg_template',
'entity' => 'MessageTemplate',
'bao' => 'CRM_Core_BAO_MessageTemplate',
'name' => 'msg_text',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Message Template Text'),
- 'description' => 'Text formatted message',
+ 'description' => ts('Text formatted message'),
'table_name' => 'civicrm_msg_template',
'entity' => 'MessageTemplate',
'bao' => 'CRM_Core_BAO_MessageTemplate',
'name' => 'msg_html',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Message Template HTML'),
- 'description' => 'HTML formatted message',
+ 'description' => ts('HTML formatted message'),
'table_name' => 'civicrm_msg_template',
'entity' => 'MessageTemplate',
'bao' => 'CRM_Core_BAO_MessageTemplate',
'name' => 'workflow_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Message Template Workflow'),
- 'description' => 'a pseudo-FK to civicrm_option_value',
+ 'description' => ts('a pseudo-FK to civicrm_option_value'),
'table_name' => 'civicrm_msg_template',
'entity' => 'MessageTemplate',
'bao' => 'CRM_Core_BAO_MessageTemplate',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Message Template Is Default?'),
- 'description' => 'is this the default message template for the workflow referenced by workflow_id?',
+ 'description' => ts('is this the default message template for the workflow referenced by workflow_id?'),
'default' => '1',
'table_name' => 'civicrm_msg_template',
'entity' => 'MessageTemplate',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Message Template Is Reserved?'),
- 'description' => 'is this the reserved message template which we ship for the workflow referenced by workflow_id?',
+ 'description' => ts('is this the reserved message template which we ship for the workflow referenced by workflow_id?'),
'table_name' => 'civicrm_msg_template',
'entity' => 'MessageTemplate',
'bao' => 'CRM_Core_BAO_MessageTemplate',
'name' => 'is_sms',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Message Template is used for SMS?'),
- 'description' => 'Is this message template used for sms?',
+ 'description' => ts('Is this message template used for sms?'),
'default' => '0',
'table_name' => 'civicrm_msg_template',
'entity' => 'MessageTemplate',
'name' => 'pdf_format_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Message Template Format'),
- 'description' => 'a pseudo-FK to civicrm_option_value containing PDF Page Format.',
+ 'description' => ts('a pseudo-FK to civicrm_option_value containing PDF Page Format.'),
'table_name' => 'civicrm_msg_template',
'entity' => 'MessageTemplate',
'bao' => 'CRM_Core_BAO_MessageTemplate',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Navigation Domain'),
- 'description' => 'Which Domain is this navigation item for',
+ 'description' => ts('Which Domain is this navigation item for'),
'required' => TRUE,
'table_name' => 'civicrm_navigation',
'entity' => 'Navigation',
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Navigation Item Label'),
- 'description' => 'Navigation Title',
+ 'description' => ts('Navigation Title'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_navigation',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Navigation Item Machine Name'),
- 'description' => 'Internal Name',
+ 'description' => ts('Internal Name'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_navigation',
'name' => 'url',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Url'),
- 'description' => 'url in case of custom navigation link',
+ 'description' => ts('url in case of custom navigation link'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_navigation',
'name' => 'icon',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Icon'),
- 'description' => 'CSS class name for an icon',
+ 'description' => ts('CSS class name for an icon'),
'required' => FALSE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'permission',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Required Permission'),
- 'description' => 'Permission for menu item',
+ 'description' => ts('Permission for menu item'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_navigation',
'name' => 'permission_operator',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Permission Operator'),
- 'description' => 'Permission Operator',
+ 'description' => ts('Permission Operator'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'table_name' => 'civicrm_navigation',
'name' => 'parent_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Navigation parent ID'),
- 'description' => 'Parent navigation item, used for grouping',
+ 'description' => ts('Parent navigation item, used for grouping'),
'table_name' => 'civicrm_navigation',
'entity' => 'Navigation',
'bao' => 'CRM_Core_BAO_Navigation',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Active'),
- 'description' => 'Is this navigation item active?',
+ 'description' => ts('Is this navigation item active?'),
'table_name' => 'civicrm_navigation',
'entity' => 'Navigation',
'bao' => 'CRM_Core_BAO_Navigation',
'name' => 'has_separator',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Use separator'),
- 'description' => 'If separator needs to be added after this menu item',
+ 'description' => ts('If separator needs to be added after this menu item'),
'table_name' => 'civicrm_navigation',
'entity' => 'Navigation',
'bao' => 'CRM_Core_BAO_Navigation',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Ordering of the navigation items in various blocks.',
+ 'description' => ts('Ordering of the navigation items in various blocks.'),
'table_name' => 'civicrm_navigation',
'entity' => 'Navigation',
'bao' => 'CRM_Core_BAO_Navigation',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Note ID'),
- 'description' => 'Note ID',
+ 'description' => ts('Note ID'),
'required' => TRUE,
'table_name' => 'civicrm_note',
'entity' => 'Note',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Note Entity'),
- 'description' => 'Name of table where item being referenced is stored.',
+ 'description' => ts('Name of table where item being referenced is stored.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Note Entity ID'),
- 'description' => 'Foreign key to the referenced item.',
+ 'description' => ts('Foreign key to the referenced item.'),
'required' => TRUE,
'table_name' => 'civicrm_note',
'entity' => 'Note',
'name' => 'note',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Note'),
- 'description' => 'Note and/or Comment.',
+ 'description' => ts('Note and/or Comment.'),
'rows' => 4,
'cols' => 60,
'import' => TRUE,
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Note Created By'),
- 'description' => 'FK to Contact ID creator',
+ 'description' => ts('FK to Contact ID creator'),
'table_name' => 'civicrm_note',
'entity' => 'Note',
'bao' => 'CRM_Core_BAO_Note',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Note Modified By'),
- 'description' => 'When was this note last modified/edited',
+ 'description' => ts('When was this note last modified/edited'),
'table_name' => 'civicrm_note',
'entity' => 'Note',
'bao' => 'CRM_Core_BAO_Note',
'name' => 'subject',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Subject'),
- 'description' => 'subject of note description',
+ 'description' => ts('subject of note description'),
'maxlength' => 255,
'size' => 60,
'table_name' => 'civicrm_note',
'name' => 'privacy',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Privacy'),
- 'description' => 'Foreign Key to Note Privacy Level (which is an option value pair and hence an implicit FK)',
+ 'description' => ts('Foreign Key to Note Privacy Level (which is an option value pair and hence an implicit FK)'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_note',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Open ID identifier'),
- 'description' => 'Unique OpenID ID',
+ 'description' => ts('Unique OpenID ID'),
'required' => TRUE,
'table_name' => 'civicrm_openid',
'entity' => 'OpenID',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('OpenID Contact'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_openid',
'entity' => 'OpenID',
'bao' => 'CRM_Core_BAO_OpenID',
'name' => 'location_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('OpenID Location Type'),
- 'description' => 'Which Location does this email belong to.',
+ 'description' => ts('Which Location does this email belong to.'),
'table_name' => 'civicrm_openid',
'entity' => 'OpenID',
'bao' => 'CRM_Core_BAO_OpenID',
'name' => 'openid',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('OpenID'),
- 'description' => 'the OpenID (or OpenID-style http://username.domain/) unique identifier for this contact mainly used for logging in to CiviCRM',
+ 'description' => ts('the OpenID (or OpenID-style http://username.domain/) unique identifier for this contact mainly used for logging in to CiviCRM'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'allowed_to_login',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Allowed to login?'),
- 'description' => 'Whether or not this user is allowed to login',
+ 'description' => ts('Whether or not this user is allowed to login'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_openid',
'name' => 'is_primary',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is OpenID Primary?'),
- 'description' => 'Is this the primary email for this contact and location.',
+ 'description' => ts('Is this the primary email for this contact and location.'),
'default' => '0',
'table_name' => 'civicrm_openid',
'entity' => 'OpenID',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Option Group ID'),
- 'description' => 'Option Group ID',
+ 'description' => ts('Option Group ID'),
'required' => TRUE,
'table_name' => 'civicrm_option_group',
'entity' => 'OptionGroup',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Option Group Name'),
- 'description' => 'Option group name. Used as selection key by class properties which lookup options in civicrm_option_value.',
+ 'description' => ts('Option group name. Used as selection key by class properties which lookup options in civicrm_option_value.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Option Group title'),
- 'description' => 'Option Group title.',
+ 'description' => ts('Option Group title.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_option_group',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Option Group Description'),
- 'description' => 'Option group description.',
+ 'description' => ts('Option group description.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_option_group',
'name' => 'data_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Data Type for this option group'),
- 'description' => 'Option group description.',
+ 'description' => ts('Option group description.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_option_group',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Option Group Is Reserved?'),
- 'description' => 'Is this a predefined system option group (i.e. it can not be deleted)?',
+ 'description' => ts('Is this a predefined system option group (i.e. it can not be deleted)?'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_option_group',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Option Group Is Active?'),
- 'description' => 'Is this option group active?',
+ 'description' => ts('Is this option group active?'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_option_group',
'name' => 'is_locked',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Option Group Is Locked'),
- 'description' => 'A lock to remove the ability to add new options via the UI.',
+ 'description' => ts('A lock to remove the ability to add new options via the UI.'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_option_group',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Option Value ID'),
- 'description' => 'Option ID',
+ 'description' => ts('Option ID'),
'required' => TRUE,
'table_name' => 'civicrm_option_value',
'entity' => 'OptionValue',
'name' => 'option_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Option Group ID'),
- 'description' => 'Group which this option belongs to.',
+ 'description' => ts('Group which this option belongs to.'),
'required' => TRUE,
'table_name' => 'civicrm_option_value',
'entity' => 'OptionValue',
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Option Label'),
- 'description' => 'Option string as displayed to users - e.g. the label in an HTML OPTION tag.',
+ 'description' => ts('Option string as displayed to users - e.g. the label in an HTML OPTION tag.'),
'required' => TRUE,
'maxlength' => 512,
'size' => CRM_Utils_Type::HUGE,
'name' => 'value',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Option Value'),
- 'description' => 'The actual value stored (as a foreign key) in the data record. Functions which need lookup option_value.title should use civicrm_option_value.option_group_id plus civicrm_option_value.value as the key.',
+ 'description' => ts('The actual value stored (as a foreign key) in the data record. Functions which need lookup option_value.title should use civicrm_option_value.option_group_id plus civicrm_option_value.value as the key.'),
'required' => TRUE,
'maxlength' => 512,
'size' => CRM_Utils_Type::HUGE,
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Option Name'),
- 'description' => 'Stores a fixed (non-translated) name for this option value. Lookup functions should use the name as the key for the option value row.',
+ 'description' => ts('Stores a fixed (non-translated) name for this option value. Lookup functions should use the name as the key for the option value row.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'grouping',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Option Grouping Name'),
- 'description' => 'Use to sort and/or set display properties for sub-set(s) of options within an option group. EXAMPLE: Use for college_interest field, to differentiate partners from non-partners.',
+ 'description' => ts('Use to sort and/or set display properties for sub-set(s) of options within an option group. EXAMPLE: Use for college_interest field, to differentiate partners from non-partners.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_option_value',
'name' => 'filter',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Filter'),
- 'description' => 'Bitwise logic can be used to create subsets of options within an option_group for different uses.',
+ 'description' => ts('Bitwise logic can be used to create subsets of options within an option_group for different uses.'),
'table_name' => 'civicrm_option_value',
'entity' => 'OptionValue',
'bao' => 'CRM_Core_BAO_OptionValue',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Option is Default?'),
- 'description' => 'Is this the default option for the group?',
+ 'description' => ts('Is this the default option for the group?'),
'default' => '0',
'table_name' => 'civicrm_option_value',
'entity' => 'OptionValue',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Controls display sort order.',
+ 'description' => ts('Controls display sort order.'),
'required' => TRUE,
'table_name' => 'civicrm_option_value',
'entity' => 'OptionValue',
'name' => 'description',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Option Description'),
- 'description' => 'Optional description.',
+ 'description' => ts('Optional description.'),
'rows' => 8,
'cols' => 60,
'table_name' => 'civicrm_option_value',
'name' => 'is_optgroup',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Option is Header?'),
- 'description' => 'Is this row simply a display header? Expected usage is to render these as OPTGROUP tags within a SELECT field list of options?',
+ 'description' => ts('Is this row simply a display header? Expected usage is to render these as OPTGROUP tags within a SELECT field list of options?'),
'default' => '0',
'table_name' => 'civicrm_option_value',
'entity' => 'OptionValue',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Option Is Reserved?'),
- 'description' => 'Is this a predefined system object?',
+ 'description' => ts('Is this a predefined system object?'),
'default' => '0',
'table_name' => 'civicrm_option_value',
'entity' => 'OptionValue',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Option Is Active'),
- 'description' => 'Is this option active?',
+ 'description' => ts('Is this option active?'),
'default' => '1',
'table_name' => 'civicrm_option_value',
'entity' => 'OptionValue',
'name' => 'component_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Option Component'),
- 'description' => 'Component that this option value belongs/caters to.',
+ 'description' => ts('Component that this option value belongs/caters to.'),
'table_name' => 'civicrm_option_value',
'entity' => 'OptionValue',
'bao' => 'CRM_Core_BAO_OptionValue',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Option Domain'),
- 'description' => 'Which Domain is this option value for',
+ 'description' => ts('Which Domain is this option value for'),
'table_name' => 'civicrm_option_value',
'entity' => 'OptionValue',
'bao' => 'CRM_Core_BAO_OptionValue',
'name' => 'icon',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Icon'),
- 'description' => 'crm-i icon class',
+ 'description' => ts('crm-i icon class'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'default' => 'NULL',
'name' => 'color',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Color'),
- 'description' => 'Hex color value e.g. #ffffff',
+ 'description' => ts('Hex color value e.g. #ffffff'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'default' => 'NULL',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Persistent ID'),
- 'description' => 'Persistent Record Id',
+ 'description' => ts('Persistent Record Id'),
'required' => TRUE,
'table_name' => 'civicrm_persistent',
'entity' => 'Persistent',
'name' => 'context',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Context'),
- 'description' => 'Context for which name data pair is to be stored',
+ 'description' => ts('Context for which name data pair is to be stored'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Name of Context',
+ 'description' => ts('Name of Context'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'data',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Data'),
- 'description' => 'data associated with name',
+ 'description' => ts('data associated with name'),
'table_name' => 'civicrm_persistent',
'entity' => 'Persistent',
'bao' => 'CRM_Core_BAO_Persistent',
'name' => 'is_config',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Configuration?'),
- 'description' => 'Config Settings',
+ 'description' => ts('Config Settings'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_persistent',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Phone ID'),
- 'description' => 'Unique Phone ID',
+ 'description' => ts('Unique Phone ID'),
'required' => TRUE,
'table_name' => 'civicrm_phone',
'entity' => 'Phone',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Phone Contact'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_phone',
'entity' => 'Phone',
'bao' => 'CRM_Core_BAO_Phone',
'name' => 'location_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Phone Location Type'),
- 'description' => 'Which Location does this phone belong to.',
+ 'description' => ts('Which Location does this phone belong to.'),
'table_name' => 'civicrm_phone',
'entity' => 'Phone',
'bao' => 'CRM_Core_BAO_Phone',
'name' => 'is_primary',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Phone Primary?'),
- 'description' => 'Is this the primary phone for this contact and location.',
+ 'description' => ts('Is this the primary phone for this contact and location.'),
'default' => '0',
'table_name' => 'civicrm_phone',
'entity' => 'Phone',
'name' => 'is_billing',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Billing Phone'),
- 'description' => 'Is this the billing?',
+ 'description' => ts('Is this the billing?'),
'default' => '0',
'table_name' => 'civicrm_phone',
'entity' => 'Phone',
'name' => 'mobile_provider_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mobile Provider'),
- 'description' => 'Which Mobile Provider does this phone belong to.',
+ 'description' => ts('Which Mobile Provider does this phone belong to.'),
'table_name' => 'civicrm_phone',
'entity' => 'Phone',
'bao' => 'CRM_Core_BAO_Phone',
'name' => 'phone',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Phone'),
- 'description' => 'Complete phone number.',
+ 'description' => ts('Complete phone number.'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'import' => TRUE,
'name' => 'phone_ext',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Phone Extension'),
- 'description' => 'Optional extension for a phone number.',
+ 'description' => ts('Optional extension for a phone number.'),
'maxlength' => 16,
'size' => 4,
'import' => TRUE,
'name' => 'phone_numeric',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Phone Numeric'),
- 'description' => 'Phone number stripped of all whitespace, letters, and punctuation.',
+ 'description' => ts('Phone number stripped of all whitespace, letters, and punctuation.'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'table_name' => 'civicrm_phone',
'name' => 'phone_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Phone Type'),
- 'description' => 'Which type of phone does this number belongs.',
+ 'description' => ts('Which type of phone does this number belongs.'),
'export' => TRUE,
'where' => 'civicrm_phone.phone_type_id',
'headerPattern' => '',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Date Preference Name'),
- 'description' => 'The meta name for this date (fixed in code)',
+ 'description' => ts('The meta name for this date (fixed in code)'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Description'),
- 'description' => 'Description of this date type.',
+ 'description' => ts('Description of this date type.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_preferences_date',
'name' => 'start',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Start'),
- 'description' => 'The start offset relative to current year',
+ 'description' => ts('The start offset relative to current year'),
'required' => TRUE,
'table_name' => 'civicrm_preferences_date',
'entity' => 'PreferencesDate',
'name' => 'end',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('End Offset'),
- 'description' => 'The end offset relative to current year, can be negative',
+ 'description' => ts('The end offset relative to current year, can be negative'),
'required' => TRUE,
'table_name' => 'civicrm_preferences_date',
'entity' => 'PreferencesDate',
'name' => 'date_format',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Date Format'),
- 'description' => 'The date type',
+ 'description' => ts('The date type'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_preferences_date',
'name' => 'time_format',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Time Format'),
- 'description' => 'time format',
+ 'description' => ts('time format'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_preferences_date',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Prev Next Entity Table'),
- 'description' => 'physical tablename for entity being joined to discount, e.g. civicrm_event',
+ 'description' => ts('physical tablename for entity being joined to discount, e.g. civicrm_event'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_prevnext_cache',
'name' => 'entity_id1',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Prev Next Entity ID 1'),
- 'description' => 'FK to entity table specified in entity_table column.',
+ 'description' => ts('FK to entity table specified in entity_table column.'),
'required' => TRUE,
'table_name' => 'civicrm_prevnext_cache',
'entity' => 'PrevNextCache',
'name' => 'entity_id2',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Prev Next Entity ID 2'),
- 'description' => 'FK to entity table specified in entity_table column.',
+ 'description' => ts('FK to entity table specified in entity_table column.'),
'required' => FALSE,
'table_name' => 'civicrm_prevnext_cache',
'entity' => 'PrevNextCache',
'name' => 'cacheKey',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Cache Key'),
- 'description' => 'Unique path name for cache element of the searched item',
+ 'description' => ts('Unique path name for cache element of the searched item'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_prevnext_cache',
'name' => 'data',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Prev Next Data'),
- 'description' => 'cached snapshot of the serialized data',
+ 'description' => ts('cached snapshot of the serialized data'),
'table_name' => 'civicrm_prevnext_cache',
'entity' => 'PrevNextCache',
'bao' => 'CRM_Core_BAO_PrevNextCache',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Title'),
- 'description' => 'User title for for this label layout',
+ 'description' => ts('User title for for this label layout'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_print_label',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'variable name/programmatic handle for this field.',
+ 'description' => ts('variable name/programmatic handle for this field.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_print_label',
'name' => 'description',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Description'),
- 'description' => 'Description of this label layout',
+ 'description' => ts('Description of this label layout'),
'table_name' => 'civicrm_print_label',
'entity' => 'PrintLabel',
'bao' => 'CRM_Core_DAO_PrintLabel',
'name' => 'label_format_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Label Format'),
- 'description' => 'This refers to name column of civicrm_option_value row in name_badge option group',
+ 'description' => ts('This refers to name column of civicrm_option_value row in name_badge option group'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_print_label',
'name' => 'label_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Label Type'),
- 'description' => 'Implicit FK to civicrm_option_value row in NEW label_type option group',
+ 'description' => ts('Implicit FK to civicrm_option_value row in NEW label_type option group'),
'table_name' => 'civicrm_print_label',
'entity' => 'PrintLabel',
'bao' => 'CRM_Core_DAO_PrintLabel',
'name' => 'data',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Data'),
- 'description' => 'contains json encode configurations options',
+ 'description' => ts('contains json encode configurations options'),
'table_name' => 'civicrm_print_label',
'entity' => 'PrintLabel',
'bao' => 'CRM_Core_DAO_PrintLabel',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Label is Default?'),
- 'description' => 'Is this default?',
+ 'description' => ts('Is this default?'),
'default' => '1',
'table_name' => 'civicrm_print_label',
'entity' => 'PrintLabel',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Label Is Active?'),
- 'description' => 'Is this option active?',
+ 'description' => ts('Is this option active?'),
'default' => '1',
'table_name' => 'civicrm_print_label',
'entity' => 'PrintLabel',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Label Reserved?'),
- 'description' => 'Is this reserved label?',
+ 'description' => ts('Is this reserved label?'),
'default' => '1',
'table_name' => 'civicrm_print_label',
'entity' => 'PrintLabel',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Label Created By'),
- 'description' => 'FK to civicrm_contact, who created this label layout',
+ 'description' => ts('FK to civicrm_contact, who created this label layout'),
'table_name' => 'civicrm_print_label',
'entity' => 'PrintLabel',
'bao' => 'CRM_Core_DAO_PrintLabel',
'name' => 'parent_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Parent ID'),
- 'description' => 'Recurring Entity Parent ID',
+ 'description' => ts('Recurring Entity Parent ID'),
'required' => TRUE,
'table_name' => 'civicrm_recurring_entity',
'entity' => 'RecurringEntity',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'Recurring Entity Child ID',
+ 'description' => ts('Recurring Entity Child ID'),
'table_name' => 'civicrm_recurring_entity',
'entity' => 'RecurringEntity',
'bao' => 'CRM_Core_BAO_RecurringEntity',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'Physical tablename for entity, e.g. civicrm_event',
+ 'description' => ts('Physical tablename for entity, e.g. civicrm_event'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'mode',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Cascade Type'),
- 'description' => '1-this entity, 2-this and the following entities, 3-all the entities',
+ 'description' => ts('1-this entity, 2-this and the following entities, 3-all the entities'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_recurring_entity',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Setting Name'),
- 'description' => 'Unique name for setting',
+ 'description' => ts('Unique name for setting'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_setting',
'name' => 'value',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Value'),
- 'description' => 'data associated with this group / name combo',
+ 'description' => ts('data associated with this group / name combo'),
'table_name' => 'civicrm_setting',
'entity' => 'Setting',
'bao' => 'CRM_Core_BAO_Setting',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Setting Domain'),
- 'description' => 'Which Domain is this menu item for',
+ 'description' => ts('Which Domain is this menu item for'),
'required' => TRUE,
'table_name' => 'civicrm_setting',
'entity' => 'Setting',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Setting Contact'),
- 'description' => 'FK to Contact ID if the setting is localized to a contact',
+ 'description' => ts('FK to Contact ID if the setting is localized to a contact'),
'table_name' => 'civicrm_setting',
'entity' => 'Setting',
'bao' => 'CRM_Core_BAO_Setting',
'name' => 'is_domain',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Domain Setting?'),
- 'description' => 'Is this setting a contact specific or site wide setting?',
+ 'description' => ts('Is this setting a contact specific or site wide setting?'),
'table_name' => 'civicrm_setting',
'entity' => 'Setting',
'bao' => 'CRM_Core_BAO_Setting',
'name' => 'component_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Setting Component'),
- 'description' => 'Component that this menu item belongs to',
+ 'description' => ts('Component that this menu item belongs to'),
'table_name' => 'civicrm_setting',
'entity' => 'Setting',
'bao' => 'CRM_Core_BAO_Setting',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Setting Created Date'),
- 'description' => 'When was the setting created',
+ 'description' => ts('When was the setting created'),
'table_name' => 'civicrm_setting',
'entity' => 'Setting',
'bao' => 'CRM_Core_BAO_Setting',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Setting Created By'),
- 'description' => 'FK to civicrm_contact, who created this setting',
+ 'description' => ts('FK to civicrm_contact, who created this setting'),
'table_name' => 'civicrm_setting',
'entity' => 'Setting',
'bao' => 'CRM_Core_BAO_Setting',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('State ID'),
- 'description' => 'State/Province ID',
+ 'description' => ts('State/Province ID'),
'required' => TRUE,
'table_name' => 'civicrm_state_province',
'entity' => 'StateProvince',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('State'),
- 'description' => 'Name of State/Province',
+ 'description' => ts('Name of State/Province'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'import' => TRUE,
'name' => 'abbreviation',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('State Abbreviation'),
- 'description' => '2-4 Character Abbreviation of State/Province',
+ 'description' => ts('2-4 Character Abbreviation of State/Province'),
'maxlength' => 4,
'size' => CRM_Utils_Type::FOUR,
'table_name' => 'civicrm_state_province',
'name' => 'country_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Country'),
- 'description' => 'ID of Country that State/Province belong',
+ 'description' => ts('ID of Country that State/Province belong'),
'required' => TRUE,
'table_name' => 'civicrm_state_province',
'entity' => 'StateProvince',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Status Preference ID'),
- 'description' => 'Unique Status Preference ID',
+ 'description' => ts('Unique Status Preference ID'),
'required' => TRUE,
'table_name' => 'civicrm_status_pref',
'entity' => 'StatusPreference',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Setting Domain'),
- 'description' => 'Which Domain is this Status Preference for',
+ 'description' => ts('Which Domain is this Status Preference for'),
'required' => TRUE,
'table_name' => 'civicrm_status_pref',
'entity' => 'StatusPreference',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Status Check Name'),
- 'description' => 'Name of the status check this preference references.',
+ 'description' => ts('Name of the status check this preference references.'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'hush_until',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Snooze Status Notifications Until'),
- 'description' => 'expires ignore_severity. NULL never hushes.',
+ 'description' => ts('expires ignore_severity. NULL never hushes.'),
'import' => TRUE,
'where' => 'civicrm_status_pref.hush_until',
'headerPattern' => '',
'name' => 'ignore_severity',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Ignore Severity'),
- 'description' => 'Hush messages up to and including this severity.',
+ 'description' => ts('Hush messages up to and including this severity.'),
'import' => TRUE,
'where' => 'civicrm_status_pref.ignore_severity',
'headerPattern' => '',
'name' => 'prefs',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Status Preferences'),
- 'description' => 'These settings are per-check, and can\'t be compared across checks.',
+ 'description' => ts('These settings are per-check, and can\'t be compared across checks.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_status_pref',
'name' => 'check_info',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Check Info'),
- 'description' => 'These values are per-check, and can\'t be compared across checks.',
+ 'description' => ts('These values are per-check, and can\'t be compared across checks.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_status_pref',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('System Log ID'),
- 'description' => 'Primary key ID',
+ 'description' => ts('Primary key ID'),
'required' => TRUE,
'table_name' => 'civicrm_system_log',
'entity' => 'SystemLog',
'name' => 'message',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('System Log Message'),
- 'description' => 'Standardized message',
+ 'description' => ts('Standardized message'),
'required' => TRUE,
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'name' => 'context',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Detailed Log Data'),
- 'description' => 'JSON encoded data',
+ 'description' => ts('JSON encoded data'),
'table_name' => 'civicrm_system_log',
'entity' => 'SystemLog',
'bao' => 'CRM_Core_DAO_SystemLog',
'name' => 'level',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Detailed Log Data'),
- 'description' => 'error level per PSR3',
+ 'description' => ts('error level per PSR3'),
'maxlength' => 9,
'size' => CRM_Utils_Type::TWELVE,
'default' => 'info',
'name' => 'timestamp',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Log Timestamp'),
- 'description' => 'Timestamp of when event occurred.',
+ 'description' => ts('Timestamp of when event occurred.'),
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_system_log',
'entity' => 'SystemLog',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Log Contact ID'),
- 'description' => 'Optional Contact ID that created the log. Not an FK as we keep this regardless',
+ 'description' => ts('Optional Contact ID that created the log. Not an FK as we keep this regardless'),
'table_name' => 'civicrm_system_log',
'entity' => 'SystemLog',
'bao' => 'CRM_Core_DAO_SystemLog',
'name' => 'hostname',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Log Host'),
- 'description' => 'Optional Name of logging host',
+ 'description' => ts('Optional Name of logging host'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_system_log',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Tag ID'),
- 'description' => 'Tag ID',
+ 'description' => ts('Tag ID'),
'required' => TRUE,
'table_name' => 'civicrm_tag',
'entity' => 'Tag',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Tag Name'),
- 'description' => 'Name of Tag.',
+ 'description' => ts('Name of Tag.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Description'),
- 'description' => 'Optional verbose description of the tag.',
+ 'description' => ts('Optional verbose description of the tag.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_tag',
'name' => 'parent_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Parent Tag'),
- 'description' => 'Optional parent id for this tag.',
+ 'description' => ts('Optional parent id for this tag.'),
'default' => 'NULL',
'table_name' => 'civicrm_tag',
'entity' => 'Tag',
'name' => 'is_selectable',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Display Tag?'),
- 'description' => 'Is this tag selectable / displayed',
+ 'description' => ts('Is this tag selectable / displayed'),
'default' => '1',
'table_name' => 'civicrm_tag',
'entity' => 'Tag',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Tag Created By'),
- 'description' => 'FK to civicrm_contact, who created this tag',
+ 'description' => ts('FK to civicrm_contact, who created this tag'),
'table_name' => 'civicrm_tag',
'entity' => 'Tag',
'bao' => 'CRM_Core_BAO_Tag',
'name' => 'color',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Color'),
- 'description' => 'Hex color value e.g. #ffffff',
+ 'description' => ts('Hex color value e.g. #ffffff'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'default' => 'NULL',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Tag Created Date'),
- 'description' => 'Date and time that tag was created.',
+ 'description' => ts('Date and time that tag was created.'),
'table_name' => 'civicrm_tag',
'entity' => 'Tag',
'bao' => 'CRM_Core_BAO_Tag',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Timezone ID'),
- 'description' => 'Timezone Id',
+ 'description' => ts('Timezone Id'),
'required' => TRUE,
'table_name' => 'civicrm_timezone',
'entity' => 'Timezone',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Timezone Name'),
- 'description' => 'Timezone full name',
+ 'description' => ts('Timezone full name'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_timezone',
'name' => 'abbreviation',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Timezone Abbreviation'),
- 'description' => 'ISO Code for timezone abbreviation',
+ 'description' => ts('ISO Code for timezone abbreviation'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'table_name' => 'civicrm_timezone',
'name' => 'gmt',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('GMT Name of Timezone'),
- 'description' => 'GMT name of the timezone',
+ 'description' => ts('GMT name of the timezone'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_timezone',
'name' => 'country_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Country'),
- 'description' => 'Country Id',
+ 'description' => ts('Country Id'),
'required' => TRUE,
'table_name' => 'civicrm_timezone',
'entity' => 'Timezone',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Profile Field ID'),
- 'description' => 'Unique table ID',
+ 'description' => ts('Unique table ID'),
'required' => TRUE,
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'name' => 'uf_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Profile ID'),
- 'description' => 'Which form does this field belong to.',
+ 'description' => ts('Which form does this field belong to.'),
'required' => TRUE,
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'name' => 'field_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Profile Field Name'),
- 'description' => 'Name for CiviCRM field which is being exposed for sharing.',
+ 'description' => ts('Name for CiviCRM field which is being exposed for sharing.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Profile Field Is Active'),
- 'description' => 'Is this field currently shareable? If false, hide the field for all sharing contexts.',
+ 'description' => ts('Is this field currently shareable? If false, hide the field for all sharing contexts.'),
'default' => '1',
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'name' => 'is_view',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Profile Is View Only'),
- 'description' => 'the field is view only and not editable in user forms.',
+ 'description' => ts('the field is view only and not editable in user forms.'),
'default' => '0',
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'name' => 'is_required',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Profile Field Is Required'),
- 'description' => 'Is this field required when included in a user or registration form?',
+ 'description' => ts('Is this field required when included in a user or registration form?'),
'default' => '0',
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Controls field display order when user framework fields are displayed in registration and account editing forms.',
+ 'description' => ts('Controls field display order when user framework fields are displayed in registration and account editing forms.'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_uf_field',
'name' => 'help_post',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Profile Field Post Help'),
- 'description' => 'Description and/or help text to display after this field.',
+ 'description' => ts('Description and/or help text to display after this field.'),
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'bao' => 'CRM_Core_BAO_UFField',
'name' => 'help_pre',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Profile Field Pre Help'),
- 'description' => 'Description and/or help text to display before this field.',
+ 'description' => ts('Description and/or help text to display before this field.'),
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'bao' => 'CRM_Core_BAO_UFField',
'name' => 'visibility',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Profile Field Visibility'),
- 'description' => 'In what context(s) is this field visible.',
+ 'description' => ts('In what context(s) is this field visible.'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'default' => 'User and User Admin Only',
'name' => 'in_selector',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Profile Field Is a Filter'),
- 'description' => 'Is this field included as a column in the selector table?',
+ 'description' => ts('Is this field included as a column in the selector table?'),
'default' => '0',
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'name' => 'is_searchable',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Profile Field Is Searchable'),
- 'description' => 'Is this field included search form of profile?',
+ 'description' => ts('Is this field included search form of profile?'),
'default' => '0',
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'name' => 'location_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Profile Field Location Type'),
- 'description' => 'Location type of this mapping, if required',
+ 'description' => ts('Location type of this mapping, if required'),
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'bao' => 'CRM_Core_BAO_UFField',
'name' => 'phone_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Profile Field Phone Type'),
- 'description' => 'Phone Type Id, if required',
+ 'description' => ts('Phone Type Id, if required'),
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'bao' => 'CRM_Core_BAO_UFField',
'name' => 'website_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Profile Field Website Type'),
- 'description' => 'Website Type Id, if required',
+ 'description' => ts('Website Type Id, if required'),
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'bao' => 'CRM_Core_BAO_UFField',
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Profile Field Label'),
- 'description' => 'To save label for fields.',
+ 'description' => ts('To save label for fields.'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'field_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Profile Field Type'),
- 'description' => 'This field saves field type (ie individual,household.. field etc).',
+ 'description' => ts('This field saves field type (ie individual,household.. field etc).'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_uf_field',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Profile Field Is Reserved'),
- 'description' => 'Is this field reserved for use by some other CiviCRM functionality?',
+ 'description' => ts('Is this field reserved for use by some other CiviCRM functionality?'),
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'bao' => 'CRM_Core_BAO_UFField',
'name' => 'is_multi_summary',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Profile Field Supports Multiple'),
- 'description' => 'Include in multi-record listing?',
+ 'description' => ts('Include in multi-record listing?'),
'default' => '0',
'table_name' => 'civicrm_uf_field',
'entity' => 'UFField',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Profile ID'),
- 'description' => 'Unique table ID',
+ 'description' => ts('Unique table ID'),
'required' => TRUE,
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Profile Is Active'),
- 'description' => 'Is this form currently active? If false, hide all related fields for all sharing contexts.',
+ 'description' => ts('Is this form currently active? If false, hide all related fields for all sharing contexts.'),
'default' => '1',
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'name' => 'group_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Profile Group Type'),
- 'description' => 'Comma separated list of the type(s) of profile fields.',
+ 'description' => ts('Comma separated list of the type(s) of profile fields.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Title'),
- 'description' => 'Form title.',
+ 'description' => ts('Form title.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'frontend_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Frontend Title'),
- 'description' => 'Profile Form Public title',
+ 'description' => ts('Profile Form Public title'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_uf_group',
'name' => 'description',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Profile Description'),
- 'description' => 'Optional verbose description of the profile.',
+ 'description' => ts('Optional verbose description of the profile.'),
'rows' => 2,
'cols' => 60,
'table_name' => 'civicrm_uf_group',
'name' => 'help_pre',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Help Pre'),
- 'description' => 'Description and/or help text to display before fields in form.',
+ 'description' => ts('Description and/or help text to display before fields in form.'),
'rows' => 4,
'cols' => 80,
'table_name' => 'civicrm_uf_group',
'name' => 'help_post',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Profile Post Text'),
- 'description' => 'Description and/or help text to display after fields in form.',
+ 'description' => ts('Description and/or help text to display after fields in form.'),
'rows' => 4,
'cols' => 80,
'table_name' => 'civicrm_uf_group',
'name' => 'limit_listings_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Profile Search Limit Group'),
- 'description' => 'Group id, foreign key from civicrm_group',
+ 'description' => ts('Group id, foreign key from civicrm_group'),
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'bao' => 'CRM_Core_BAO_UFGroup',
'name' => 'post_URL',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Post Url'),
- 'description' => 'Redirect to URL.',
+ 'description' => ts('Redirect to URL.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_uf_group',
'name' => 'add_to_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Add Contact To Group'),
- 'description' => 'foreign key to civicrm_group_id',
+ 'description' => ts('foreign key to civicrm_group_id'),
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'bao' => 'CRM_Core_BAO_UFGroup',
'name' => 'add_captcha',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Show Captcha On Profile'),
- 'description' => 'Should a CAPTCHA widget be included this Profile form.',
+ 'description' => ts('Should a CAPTCHA widget be included this Profile form.'),
'default' => '0',
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'name' => 'is_map',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Map Profile'),
- 'description' => 'Do we want to map results from this profile.',
+ 'description' => ts('Do we want to map results from this profile.'),
'default' => '0',
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'name' => 'is_edit_link',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Show Edit Link?'),
- 'description' => 'Should edit link display in profile selector',
+ 'description' => ts('Should edit link display in profile selector'),
'default' => '0',
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'name' => 'is_uf_link',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Show Link to CMS User'),
- 'description' => 'Should we display a link to the website profile in profile selector',
+ 'description' => ts('Should we display a link to the website profile in profile selector'),
'default' => '0',
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'name' => 'is_update_dupe',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Update on Duplicate'),
- 'description' => 'Should we update the contact record if we find a duplicate',
+ 'description' => ts('Should we update the contact record if we find a duplicate'),
'default' => '0',
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'name' => 'cancel_URL',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Profile Cancel URL'),
- 'description' => 'Redirect to URL when Cancle button clik .',
+ 'description' => ts('Redirect to URL when Cancle button clik .'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_uf_group',
'name' => 'is_cms_user',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Create CMS User?'),
- 'description' => 'Should we create a cms user for this profile ',
+ 'description' => ts('Should we create a cms user for this profile '),
'default' => '0',
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Profile Is Reserved'),
- 'description' => 'Is this group reserved for use by some other CiviCRM functionality?',
+ 'description' => ts('Is this group reserved for use by some other CiviCRM functionality?'),
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'bao' => 'CRM_Core_BAO_UFGroup',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Profile Name'),
- 'description' => 'Name of the UF group for directly addressing it in the codebase',
+ 'description' => ts('Name of the UF group for directly addressing it in the codebase'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_uf_group',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Profile Created By'),
- 'description' => 'FK to civicrm_contact, who created this UF group',
+ 'description' => ts('FK to civicrm_contact, who created this UF group'),
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'bao' => 'CRM_Core_BAO_UFGroup',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('UF Group Created Date'),
- 'description' => 'Date and time this UF group was created.',
+ 'description' => ts('Date and time this UF group was created.'),
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'bao' => 'CRM_Core_BAO_UFGroup',
'name' => 'is_proximity_search',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Include Proximity Search?'),
- 'description' => 'Should we include proximity search feature in this profile search form?',
+ 'description' => ts('Should we include proximity search feature in this profile search form?'),
'default' => '0',
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'name' => 'cancel_button_text',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Cancel Button Text'),
- 'description' => 'Custom Text to display on the Cancel button when used in create or edit mode',
+ 'description' => ts('Custom Text to display on the Cancel button when used in create or edit mode'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'default' => 'NULL',
'name' => 'submit_button_text',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Submit Button Text'),
- 'description' => 'Custom Text to display on the submit button on profile edit/create screens',
+ 'description' => ts('Custom Text to display on the submit button on profile edit/create screens'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'default' => 'NULL',
'name' => 'add_cancel_button',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Include Cancel Button'),
- 'description' => 'Should a Cancel button be included in this Profile form.',
+ 'description' => ts('Should a Cancel button be included in this Profile form.'),
'default' => '1',
'table_name' => 'civicrm_uf_group',
'entity' => 'UFGroup',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('UF Join ID'),
- 'description' => 'Unique table ID',
+ 'description' => ts('Unique table ID'),
'required' => TRUE,
'table_name' => 'civicrm_uf_join',
'entity' => 'UFJoin',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Profile Use is active'),
- 'description' => 'Is this join currently active?',
+ 'description' => ts('Is this join currently active?'),
'default' => '1',
'table_name' => 'civicrm_uf_join',
'entity' => 'UFJoin',
'name' => 'module',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Profile Module'),
- 'description' => 'Module which owns this uf_join instance, e.g. User Registration, CiviDonate, etc.',
+ 'description' => ts('Module which owns this uf_join instance, e.g. User Registration, CiviDonate, etc.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Profile Entity Table'),
- 'description' => 'Name of table where item being referenced is stored. Modules which only need a single collection of uf_join instances may choose not to populate entity_table and entity_id.',
+ 'description' => ts('Name of table where item being referenced is stored. Modules which only need a single collection of uf_join instances may choose not to populate entity_table and entity_id.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_uf_join',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Profile Entity ID'),
- 'description' => 'Foreign key to the referenced item.',
+ 'description' => ts('Foreign key to the referenced item.'),
'table_name' => 'civicrm_uf_join',
'entity' => 'UFJoin',
'bao' => 'CRM_Core_BAO_UFJoin',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Controls display order when multiple user framework groups are setup for concurrent display.',
+ 'description' => ts('Controls display order when multiple user framework groups are setup for concurrent display.'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_uf_join',
'name' => 'uf_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Profile ID'),
- 'description' => 'Which form does this field belong to.',
+ 'description' => ts('Which form does this field belong to.'),
'required' => TRUE,
'table_name' => 'civicrm_uf_join',
'entity' => 'UFJoin',
'name' => 'module_data',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Profile Use Data'),
- 'description' => 'Json serialized array of data used by the ufjoin.module',
+ 'description' => ts('Json serialized array of data used by the ufjoin.module'),
'table_name' => 'civicrm_uf_join',
'entity' => 'UFJoin',
'bao' => 'CRM_Core_BAO_UFJoin',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('UF Match ID'),
- 'description' => 'System generated ID.',
+ 'description' => ts('System generated ID.'),
'required' => TRUE,
'table_name' => 'civicrm_uf_match',
'entity' => 'UFMatch',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('UF Match Domain ID'),
- 'description' => 'Which Domain is this match entry for',
+ 'description' => ts('Which Domain is this match entry for'),
'required' => TRUE,
'table_name' => 'civicrm_uf_match',
'entity' => 'UFMatch',
'name' => 'uf_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('CMS ID'),
- 'description' => 'UF ID',
+ 'description' => ts('UF ID'),
'required' => TRUE,
'table_name' => 'civicrm_uf_match',
'entity' => 'UFMatch',
'name' => 'uf_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('CMS Unique Identifier'),
- 'description' => 'UF Name',
+ 'description' => ts('UF Name'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_uf_match',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('CiviCRM Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_uf_match',
'entity' => 'UFMatch',
'bao' => 'CRM_Core_BAO_UFMatch',
'name' => 'language',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Preferred Language'),
- 'description' => 'UI language preferred by the given user/contact',
+ 'description' => ts('UI language preferred by the given user/contact'),
'maxlength' => 5,
'size' => CRM_Utils_Type::SIX,
'table_name' => 'civicrm_uf_match',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Website ID'),
- 'description' => 'Unique Website ID',
+ 'description' => ts('Unique Website ID'),
'required' => TRUE,
'table_name' => 'civicrm_website',
'entity' => 'Website',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_website',
'entity' => 'Website',
'bao' => 'CRM_Core_BAO_Website',
'name' => 'url',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Website'),
- 'description' => 'Website',
+ 'description' => ts('Website'),
'maxlength' => 128,
'size' => 30,
'import' => TRUE,
'name' => 'website_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Website Type'),
- 'description' => 'Which Website type does this website belong to.',
+ 'description' => ts('Which Website type does this website belong to.'),
'table_name' => 'civicrm_website',
'entity' => 'Website',
'bao' => 'CRM_Core_BAO_Website',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Word Replacement ID'),
- 'description' => 'Word replacement ID',
+ 'description' => ts('Word replacement ID'),
'required' => TRUE,
'table_name' => 'civicrm_word_replacement',
'entity' => 'WordReplacement',
'name' => 'find_word',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Replaced Word'),
- 'description' => 'Word which need to be replaced',
+ 'description' => ts('Word which need to be replaced'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_word_replacement',
'name' => 'replace_word',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Replacement Word'),
- 'description' => 'Word which will replace the word in find',
+ 'description' => ts('Word which will replace the word in find'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_word_replacement',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Word Replacement is Active'),
- 'description' => 'Is this entry active?',
+ 'description' => ts('Is this entry active?'),
'default' => '1',
'table_name' => 'civicrm_word_replacement',
'entity' => 'WordReplacement',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Word Replacement Domain ID'),
- 'description' => 'FK to Domain ID. This is for Domain specific word replacement',
+ 'description' => ts('FK to Domain ID. This is for Domain specific word replacement'),
'table_name' => 'civicrm_word_replacement',
'entity' => 'WordReplacement',
'bao' => 'CRM_Core_BAO_WordReplacement',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('World Region ID'),
- 'description' => 'Country Id',
+ 'description' => ts('Country Id'),
'required' => TRUE,
'table_name' => 'civicrm_worldregion',
'entity' => 'Worldregion',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('World Region'),
- 'description' => 'Region name to be associated with countries',
+ 'description' => ts('Region name to be associated with countries'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'export' => TRUE,
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Connection ID'),
- 'description' => 'Connection ID',
+ 'description' => ts('Connection ID'),
'required' => TRUE,
'table_name' => 'civicrm_cxn',
'entity' => 'Cxn',
'name' => 'app_guid',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Application GUID'),
- 'description' => 'Application GUID',
+ 'description' => ts('Application GUID'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_cxn',
'name' => 'app_meta',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Application Metadata (JSON)'),
- 'description' => 'Application Metadata (JSON)',
+ 'description' => ts('Application Metadata (JSON)'),
'table_name' => 'civicrm_cxn',
'entity' => 'Cxn',
'bao' => 'CRM_Cxn_BAO_Cxn',
'name' => 'cxn_guid',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Connection GUID'),
- 'description' => 'Connection GUID',
+ 'description' => ts('Connection GUID'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_cxn',
'name' => 'secret',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Secret'),
- 'description' => 'Shared secret',
+ 'description' => ts('Shared secret'),
'table_name' => 'civicrm_cxn',
'entity' => 'Cxn',
'bao' => 'CRM_Cxn_BAO_Cxn',
'name' => 'perm',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Perm'),
- 'description' => 'Permissions approved for the service (JSON)',
+ 'description' => ts('Permissions approved for the service (JSON)'),
'table_name' => 'civicrm_cxn',
'entity' => 'Cxn',
'bao' => 'CRM_Cxn_BAO_Cxn',
'name' => 'options',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Options'),
- 'description' => 'Options for the service (JSON)',
+ 'description' => ts('Options for the service (JSON)'),
'table_name' => 'civicrm_cxn',
'entity' => 'Cxn',
'bao' => 'CRM_Cxn_BAO_Cxn',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Active'),
- 'description' => 'Is connection currently enabled?',
+ 'description' => ts('Is connection currently enabled?'),
'default' => '1',
'table_name' => 'civicrm_cxn',
'entity' => 'Cxn',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Created Date'),
- 'description' => 'When was the connection was created.',
+ 'description' => ts('When was the connection was created.'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_cxn',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Modified Date'),
- 'description' => 'When the connection was created or modified.',
+ 'description' => ts('When the connection was created or modified.'),
'required' => FALSE,
'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP',
'table_name' => 'civicrm_cxn',
'name' => 'fetched_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Fetched Date'),
- 'description' => 'The last time the application metadata was fetched.',
+ 'description' => ts('The last time the application metadata was fetched.'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_cxn',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Dedupe Exception ID'),
- 'description' => 'Unique dedupe exception id',
+ 'description' => ts('Unique dedupe exception id'),
'required' => TRUE,
'table_name' => 'civicrm_dedupe_exception',
'entity' => 'Exception',
'name' => 'contact_id1',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('First Dupe Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_dedupe_exception',
'entity' => 'Exception',
'bao' => 'CRM_Dedupe_DAO_Exception',
'name' => 'contact_id2',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Second Dupe Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_dedupe_exception',
'entity' => 'Exception',
'bao' => 'CRM_Dedupe_DAO_Exception',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Dedupe Rule ID'),
- 'description' => 'Unique dedupe rule id',
+ 'description' => ts('Unique dedupe rule id'),
'required' => TRUE,
'table_name' => 'civicrm_dedupe_rule',
'entity' => 'Rule',
'name' => 'dedupe_rule_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Dedupe Rule Group'),
- 'description' => 'The id of the rule group this rule belongs to',
+ 'description' => ts('The id of the rule group this rule belongs to'),
'required' => TRUE,
'table_name' => 'civicrm_dedupe_rule',
'entity' => 'Rule',
'name' => 'rule_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Rule Table'),
- 'description' => 'The name of the table this rule is about',
+ 'description' => ts('The name of the table this rule is about'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'rule_field',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Rule Field'),
- 'description' => 'The name of the field of the table referenced in rule_table',
+ 'description' => ts('The name of the field of the table referenced in rule_table'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'rule_length',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Rule Length'),
- 'description' => 'The length of the matching substring',
+ 'description' => ts('The length of the matching substring'),
'table_name' => 'civicrm_dedupe_rule',
'entity' => 'Rule',
'bao' => 'CRM_Dedupe_BAO_Rule',
'name' => 'rule_weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'The weight of the rule',
+ 'description' => ts('The weight of the rule'),
'required' => TRUE,
'table_name' => 'civicrm_dedupe_rule',
'entity' => 'Rule',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Rule Group ID'),
- 'description' => 'Unique dedupe rule group id',
+ 'description' => ts('Unique dedupe rule group id'),
'required' => TRUE,
'table_name' => 'civicrm_dedupe_rule_group',
'entity' => 'RuleGroup',
'name' => 'contact_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Contact Type'),
- 'description' => 'The type of contacts this group applies to',
+ 'description' => ts('The type of contacts this group applies to'),
'maxlength' => 12,
'size' => CRM_Utils_Type::TWELVE,
'table_name' => 'civicrm_dedupe_rule_group',
'name' => 'threshold',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Threshold'),
- 'description' => 'The weight threshold the sum of the rule weights has to cross to consider two contacts the same',
+ 'description' => ts('The weight threshold the sum of the rule weights has to cross to consider two contacts the same'),
'required' => TRUE,
'table_name' => 'civicrm_dedupe_rule_group',
'entity' => 'RuleGroup',
'name' => 'used',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Length'),
- 'description' => 'Whether the rule should be used for cases where usage is Unsupervised, Supervised OR General(programatically)',
+ 'description' => ts('Whether the rule should be used for cases where usage is Unsupervised, Supervised OR General(programatically)'),
'required' => TRUE,
'maxlength' => 12,
'size' => CRM_Utils_Type::TWELVE,
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Name of the rule group',
+ 'description' => ts('Name of the rule group'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_dedupe_rule_group',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Title'),
- 'description' => 'Label of the rule group',
+ 'description' => ts('Label of the rule group'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_dedupe_rule_group',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Reserved?'),
- 'description' => 'Is this a reserved rule - a rule group that has been optimized and cannot be changed by the admin',
+ 'description' => ts('Is this a reserved rule - a rule group that has been optimized and cannot be changed by the admin'),
'table_name' => 'civicrm_dedupe_rule_group',
'entity' => 'RuleGroup',
'bao' => 'CRM_Dedupe_BAO_RuleGroup',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Cart ID'),
- 'description' => 'Cart Id',
+ 'description' => ts('Cart Id'),
'required' => TRUE,
'table_name' => 'civicrm_event_carts',
'entity' => 'Cart',
'name' => 'user_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Created By'),
- 'description' => 'FK to civicrm_contact who created this cart',
+ 'description' => ts('FK to civicrm_contact who created this cart'),
'table_name' => 'civicrm_event_carts',
'entity' => 'Cart',
'bao' => 'CRM_Event_Cart_BAO_Cart',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event In Cart'),
- 'description' => 'Event In Cart Id',
+ 'description' => ts('Event In Cart Id'),
'required' => TRUE,
'table_name' => 'civicrm_events_in_carts',
'entity' => 'EventInCart',
'name' => 'event_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event'),
- 'description' => 'FK to Event ID',
+ 'description' => ts('FK to Event ID'),
'table_name' => 'civicrm_events_in_carts',
'entity' => 'EventInCart',
'bao' => 'CRM_Event_Cart_BAO_EventInCart',
'name' => 'event_cart_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event In Cart'),
- 'description' => 'FK to Event Cart ID',
+ 'description' => ts('FK to Event Cart ID'),
'table_name' => 'civicrm_events_in_carts',
'entity' => 'EventInCart',
'bao' => 'CRM_Event_Cart_BAO_EventInCart',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event ID'),
- 'description' => 'Event',
+ 'description' => ts('Event'),
'required' => TRUE,
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Event Title'),
- 'description' => 'Event Title (e.g. Fall Fundraiser Dinner)',
+ 'description' => ts('Event Title (e.g. Fall Fundraiser Dinner)'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'summary',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Event Summary'),
- 'description' => 'Brief summary of event. Text and html allowed. Displayed on Event Registration form and can be used on other CMS pages which need an event summary.',
+ 'description' => ts('Brief summary of event. Text and html allowed. Displayed on Event Registration form and can be used on other CMS pages which need an event summary.'),
'rows' => 4,
'cols' => 60,
'table_name' => 'civicrm_event',
'name' => 'description',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Event Description'),
- 'description' => 'Full description of event. Text and html allowed. Displayed on built-in Event Information screens.',
+ 'description' => ts('Full description of event. Text and html allowed. Displayed on built-in Event Information screens.'),
'rows' => 8,
'cols' => 60,
'table_name' => 'civicrm_event',
'name' => 'event_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event Type'),
- 'description' => 'Event Type ID.Implicit FK to civicrm_option_value where option_group = event_type.',
+ 'description' => ts('Event Type ID.Implicit FK to civicrm_option_value where option_group = event_type.'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'participant_listing_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Participant Listing'),
- 'description' => 'Should we expose the participant list? Implicit FK to civicrm_option_value where option_group = participant_listing.',
+ 'description' => ts('Should we expose the participant list? Implicit FK to civicrm_option_value where option_group = participant_listing.'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'is_public',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Event Public'),
- 'description' => 'Public events will be included in the iCal feeds. Access to private event information may be limited using ACLs.',
+ 'description' => ts('Public events will be included in the iCal feeds. Access to private event information may be limited using ACLs.'),
'default' => '1',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Event Start Date'),
- 'description' => 'Date and time that event starts.',
+ 'description' => ts('Date and time that event starts.'),
'import' => TRUE,
'where' => 'civicrm_event.start_date',
'headerPattern' => '/^start|(s(tart\s)?date)$/i',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Event End Date'),
- 'description' => 'Date and time that event ends. May be NULL if no defined end date/time',
+ 'description' => ts('Date and time that event ends. May be NULL if no defined end date/time'),
'import' => TRUE,
'where' => 'civicrm_event.end_date',
'headerPattern' => '/^end|(e(nd\s)?date)$/i',
'name' => 'is_online_registration',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Online Registration'),
- 'description' => 'If true, include registration link on Event Info page.',
+ 'description' => ts('If true, include registration link on Event Info page.'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'registration_link_text',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Event Registration Link Text'),
- 'description' => 'Text for link to Event Registration form which is displayed on Event Information screen when is_online_registration is true.',
+ 'description' => ts('Text for link to Event Registration form which is displayed on Event Information screen when is_online_registration is true.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_event',
'name' => 'registration_start_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Registration Start Date'),
- 'description' => 'Date and time that online registration starts.',
+ 'description' => ts('Date and time that online registration starts.'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'registration_end_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Registration End Date'),
- 'description' => 'Date and time that online registration ends.',
+ 'description' => ts('Date and time that online registration ends.'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'max_participants',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Max Participants'),
- 'description' => 'Maximum number of registered participants to allow. After max is reached, a custom Event Full message is displayed. If NULL, allow unlimited number of participants.',
+ 'description' => ts('Maximum number of registered participants to allow. After max is reached, a custom Event Full message is displayed. If NULL, allow unlimited number of participants.'),
'default' => 'NULL',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'event_full_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Event Information'),
- 'description' => 'Message to display on Event Information page and INSTEAD OF Event Registration form if maximum participants are signed up. Can include email address/info about getting on a waiting list, etc. Text and html allowed.',
+ 'description' => ts('Message to display on Event Information page and INSTEAD OF Event Registration form if maximum participants are signed up. Can include email address/info about getting on a waiting list, etc. Text and html allowed.'),
'rows' => 4,
'cols' => 60,
'table_name' => 'civicrm_event',
'name' => 'is_monetary',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is this a PAID event?'),
- 'description' => 'If true, one or more fee amounts must be set and a Payment Processor must be configured for Online Event Registration.',
+ 'description' => ts('If true, one or more fee amounts must be set and a Payment Processor must be configured for Online Event Registration.'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'Financial type assigned to paid event registrations for this event. Required if is_monetary is true.',
+ 'description' => ts('Financial type assigned to paid event registrations for this event. Required if is_monetary is true.'),
'default' => 'NULL',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'payment_processor',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Payment Processor'),
- 'description' => 'Payment Processors configured for this Event (if is_monetary is true)',
+ 'description' => ts('Payment Processors configured for this Event (if is_monetary is true)'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_event',
'name' => 'is_map',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Map Enabled'),
- 'description' => 'Include a map block on the Event Information page when geocode info is available and a mapping provider has been specified?',
+ 'description' => ts('Include a map block on the Event Information page when geocode info is available and a mapping provider has been specified?'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Active'),
- 'description' => 'Is this Event enabled or disabled/cancelled?',
+ 'description' => ts('Is this Event enabled or disabled/cancelled?'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'is_show_location',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('show location'),
- 'description' => 'If true, show event location.',
+ 'description' => ts('If true, show event location.'),
'default' => '1',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'loc_block_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Location Block ID'),
- 'description' => 'FK to Location Block ID',
+ 'description' => ts('FK to Location Block ID'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'default_role_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Default Role'),
- 'description' => 'Participant role ID. Implicit FK to civicrm_option_value where option_group = participant_role.',
+ 'description' => ts('Participant role ID. Implicit FK to civicrm_option_value where option_group = participant_role.'),
'import' => TRUE,
'where' => 'civicrm_event.default_role_id',
'headerPattern' => '',
'name' => 'intro_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Introductory Message'),
- 'description' => 'Introductory message for Event Registration page. Text and html allowed. Displayed at the top of Event Registration form.',
+ 'description' => ts('Introductory message for Event Registration page. Text and html allowed. Displayed at the top of Event Registration form.'),
'rows' => 6,
'cols' => 50,
'table_name' => 'civicrm_event',
'name' => 'footer_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Footer Message'),
- 'description' => 'Footer message for Event Registration page. Text and html allowed. Displayed at the bottom of Event Registration form.',
+ 'description' => ts('Footer message for Event Registration page. Text and html allowed. Displayed at the bottom of Event Registration form.'),
'rows' => 6,
'cols' => 50,
'table_name' => 'civicrm_event',
'name' => 'confirm_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Confirmation Title'),
- 'description' => 'Title for Confirmation page.',
+ 'description' => ts('Title for Confirmation page.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'default' => 'NULL',
'name' => 'confirm_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Confirm Text'),
- 'description' => 'Introductory message for Event Registration page. Text and html allowed. Displayed at the top of Event Registration form.',
+ 'description' => ts('Introductory message for Event Registration page. Text and html allowed. Displayed at the top of Event Registration form.'),
'rows' => 6,
'cols' => 50,
'table_name' => 'civicrm_event',
'name' => 'confirm_footer_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Footer Text'),
- 'description' => 'Footer message for Event Registration page. Text and html allowed. Displayed at the bottom of Event Registration form.',
+ 'description' => ts('Footer message for Event Registration page. Text and html allowed. Displayed at the bottom of Event Registration form.'),
'rows' => 6,
'cols' => 50,
'table_name' => 'civicrm_event',
'name' => 'is_email_confirm',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is confirm email'),
- 'description' => 'If true, confirmation is automatically emailed to contact on successful registration.',
+ 'description' => ts('If true, confirmation is automatically emailed to contact on successful registration.'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'confirm_email_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Confirmation Email Text'),
- 'description' => 'text to include above standard event info on confirmation email. emails are text-only, so do not allow html for now',
+ 'description' => ts('text to include above standard event info on confirmation email. emails are text-only, so do not allow html for now'),
'rows' => 4,
'cols' => 50,
'table_name' => 'civicrm_event',
'name' => 'confirm_from_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Confirm From Name'),
- 'description' => 'FROM email name used for confirmation emails.',
+ 'description' => ts('FROM email name used for confirmation emails.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_event',
'name' => 'confirm_from_email',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Confirm From Email'),
- 'description' => 'FROM email address used for confirmation emails.',
+ 'description' => ts('FROM email address used for confirmation emails.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_event',
'name' => 'cc_confirm',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Cc Confirm'),
- 'description' => 'comma-separated list of email addresses to cc each time a confirmation is sent',
+ 'description' => ts('comma-separated list of email addresses to cc each time a confirmation is sent'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_event',
'name' => 'bcc_confirm',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Bcc Confirm'),
- 'description' => 'comma-separated list of email addresses to bcc each time a confirmation is sent',
+ 'description' => ts('comma-separated list of email addresses to bcc each time a confirmation is sent'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_event',
'name' => 'default_fee_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Default Fee ID'),
- 'description' => 'FK to civicrm_option_value.',
+ 'description' => ts('FK to civicrm_option_value.'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'default_discount_fee_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Default Discount Fee ID'),
- 'description' => 'FK to civicrm_option_value.',
+ 'description' => ts('FK to civicrm_option_value.'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'thankyou_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('ThankYou Title'),
- 'description' => 'Title for ThankYou page.',
+ 'description' => ts('Title for ThankYou page.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'default' => 'NULL',
'name' => 'thankyou_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('ThankYou Text'),
- 'description' => 'ThankYou Text.',
+ 'description' => ts('ThankYou Text.'),
'rows' => 6,
'cols' => 50,
'table_name' => 'civicrm_event',
'name' => 'thankyou_footer_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Footer Text'),
- 'description' => 'Footer message.',
+ 'description' => ts('Footer message.'),
'rows' => 6,
'cols' => 50,
'table_name' => 'civicrm_event',
'name' => 'is_pay_later',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Pay Later Allowed'),
- 'description' => 'if true - allows the user to send payment directly to the org later',
+ 'description' => ts('if true - allows the user to send payment directly to the org later'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'pay_later_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Pay Later Text'),
- 'description' => 'The text displayed to the user in the main form',
+ 'description' => ts('The text displayed to the user in the main form'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'pay_later_receipt',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Pay Later Receipt Text'),
- 'description' => 'The receipt sent to the user instead of the normal receipt text',
+ 'description' => ts('The receipt sent to the user instead of the normal receipt text'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'is_partial_payment',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Partial Payments Enabled'),
- 'description' => 'is partial payment enabled for this event',
+ 'description' => ts('is partial payment enabled for this event'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'initial_amount_label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Initial Amount Label'),
- 'description' => 'Initial amount label for partial payment',
+ 'description' => ts('Initial amount label for partial payment'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_event',
'name' => 'initial_amount_help_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Initial Amount Help Text'),
- 'description' => 'Initial amount help text for partial payment',
+ 'description' => ts('Initial amount help text for partial payment'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'min_initial_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Minimum Initial Amount'),
- 'description' => 'Minimum initial amount for partial payment',
+ 'description' => ts('Minimum initial amount for partial payment'),
'precision' => [
20,
2
'name' => 'is_multiple_registrations',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Allow Multiple Registrations'),
- 'description' => 'if true - allows the user to register multiple participants for event',
+ 'description' => ts('if true - allows the user to register multiple participants for event'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'max_additional_participants',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Maximum number of additional participants per registration'),
- 'description' => 'Maximum number of additional participants that can be registered on a single booking',
+ 'description' => ts('Maximum number of additional participants that can be registered on a single booking'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'allow_same_participant_emails',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Does Event allow multiple registrations from same email address?'),
- 'description' => 'if true - allows the user to register multiple registrations from same email address.',
+ 'description' => ts('if true - allows the user to register multiple registrations from same email address.'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'has_waitlist',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Waitlist Enabled'),
- 'description' => 'Whether the event has waitlist support.',
+ 'description' => ts('Whether the event has waitlist support.'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'requires_approval',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Requires Approval'),
- 'description' => 'Whether participants require approval before they can finish registering.',
+ 'description' => ts('Whether participants require approval before they can finish registering.'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'expiration_time',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Expiration Time'),
- 'description' => 'Expire pending but unconfirmed registrations after this many hours.',
+ 'description' => ts('Expire pending but unconfirmed registrations after this many hours.'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'allow_selfcancelxfer',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Allow Self-service Cancellation or Transfer'),
- 'description' => 'Allow self service cancellation or transfer for event?',
+ 'description' => ts('Allow self service cancellation or transfer for event?'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'selfcancelxfer_time',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Self-service Cancellation or Transfer Time'),
- 'description' => 'Number of hours prior to event start date to allow self-service cancellation or transfer.',
+ 'description' => ts('Number of hours prior to event start date to allow self-service cancellation or transfer.'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'waitlist_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Waitlist Text'),
- 'description' => 'Text to display when the event is full, but participants can signup for a waitlist.',
+ 'description' => ts('Text to display when the event is full, but participants can signup for a waitlist.'),
'rows' => 4,
'cols' => 60,
'table_name' => 'civicrm_event',
'name' => 'approval_req_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Approval Req Text'),
- 'description' => 'Text to display when the approval is required to complete registration for an event.',
+ 'description' => ts('Text to display when the approval is required to complete registration for an event.'),
'rows' => 4,
'cols' => 60,
'table_name' => 'civicrm_event',
'name' => 'is_template',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is an Event Template'),
- 'description' => 'whether the event has template',
+ 'description' => ts('whether the event has template'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_event',
'name' => 'template_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Event Template Title'),
- 'description' => 'Event Template Title',
+ 'description' => ts('Event Template Title'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Created By Contact ID'),
- 'description' => 'FK to civicrm_contact, who created this event',
+ 'description' => ts('FK to civicrm_contact, who created this event'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Event Created Date'),
- 'description' => 'Date and time that event was created.',
+ 'description' => ts('Date and time that event was created.'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'import' => TRUE,
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign'),
- 'description' => 'The campaign for which this event has been created.',
+ 'description' => ts('The campaign for which this event has been created.'),
'table_name' => 'civicrm_event',
'entity' => 'Event',
'bao' => 'CRM_Event_BAO_Event',
'name' => 'is_share',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is shared through social media'),
- 'description' => 'Can people share the event through social media?',
+ 'description' => ts('Can people share the event through social media?'),
'default' => '1',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'is_confirm_enabled',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is the booking confirmation screen enabled?'),
- 'description' => 'If false, the event booking confirmation screen gets skipped',
+ 'description' => ts('If false, the event booking confirmation screen gets skipped'),
'default' => '1',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'parent_event_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Parent Event ID'),
- 'description' => 'Implicit FK to civicrm_event: parent event',
+ 'description' => ts('Implicit FK to civicrm_event: parent event'),
'default' => 'NULL',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'slot_label_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Subevent Slot Label ID'),
- 'description' => 'Subevent slot label. Implicit FK to civicrm_option_value where option_group = conference_slot.',
+ 'description' => ts('Subevent slot label. Implicit FK to civicrm_option_value where option_group = conference_slot.'),
'default' => 'NULL',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'dedupe_rule_group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Dedupe Rule'),
- 'description' => 'Rule to use when matching registrations for this event',
+ 'description' => ts('Rule to use when matching registrations for this event'),
'default' => 'NULL',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'is_billing_required',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is billing block required'),
- 'description' => 'if true than billing block is required this event',
+ 'description' => ts('if true than billing block is required this event'),
'default' => '0',
'table_name' => 'civicrm_event',
'entity' => 'Event',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Participant ID'),
- 'description' => 'Participant Id',
+ 'description' => ts('Participant Id'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_participant.id',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_participant.contact_id',
'name' => 'event_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event'),
- 'description' => 'FK to Event ID',
+ 'description' => ts('FK to Event ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_participant.event_id',
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Participant Status'),
- 'description' => 'Participant status ID. FK to civicrm_participant_status_type. Default of 1 should map to status = Registered.',
+ 'description' => ts('Participant status ID. FK to civicrm_participant_status_type. Default of 1 should map to status = Registered.'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_participant.status_id',
'name' => 'role_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Participant Role'),
- 'description' => 'Participant role ID. Implicit FK to civicrm_option_value where option_group = participant_role.',
+ 'description' => ts('Participant role ID. Implicit FK to civicrm_option_value where option_group = participant_role.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'register_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Register date'),
- 'description' => 'When did contact register for event?',
+ 'description' => ts('When did contact register for event?'),
'import' => TRUE,
'where' => 'civicrm_participant.register_date',
'headerPattern' => '/^(r(egister\s)?date)$/i',
'name' => 'source',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Participant Source'),
- 'description' => 'Source of this event registration.',
+ 'description' => ts('Source of this event registration.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'fee_level',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Fee level'),
- 'description' => 'Populate with the label (text) associated with a fee level for paid events with multiple levels. Note that
+ 'description' => ts('Populate with the label (text) associated with a fee level for paid events with multiple levels. Note that
we store the label value and not the key
- ',
+ '),
'import' => TRUE,
'where' => 'civicrm_participant.fee_level',
'headerPattern' => '/^(f(ee\s)?level)$/i',
'name' => 'fee_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Fee Amount'),
- 'description' => 'actual processor fee if known - may be 0.',
+ 'description' => ts('actual processor fee if known - may be 0.'),
'precision' => [
20,
2
'name' => 'registered_by_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Registered By ID'),
- 'description' => 'FK to Participant ID',
+ 'description' => ts('FK to Participant ID'),
'import' => TRUE,
'where' => 'civicrm_participant.registered_by_id',
'headerPattern' => '',
'name' => 'discount_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Discount ID'),
- 'description' => 'FK to Discount ID',
+ 'description' => ts('FK to Discount ID'),
'default' => 'NULL',
'table_name' => 'civicrm_participant',
'entity' => 'Participant',
'name' => 'fee_currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Fee Currency'),
- 'description' => '3 character string, value derived from config setting.',
+ 'description' => ts('3 character string, value derived from config setting.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'import' => TRUE,
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign'),
- 'description' => 'The campaign for which this participant has been registered.',
+ 'description' => ts('The campaign for which this participant has been registered.'),
'import' => TRUE,
'where' => 'civicrm_participant.campaign_id',
'headerPattern' => '',
'name' => 'discount_amount',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Discount Amount'),
- 'description' => 'Discount Amount',
+ 'description' => ts('Discount Amount'),
'table_name' => 'civicrm_participant',
'entity' => 'Participant',
'bao' => 'CRM_Event_BAO_Participant',
'name' => 'cart_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event Cart ID'),
- 'description' => 'FK to civicrm_event_carts',
+ 'description' => ts('FK to civicrm_event_carts'),
'table_name' => 'civicrm_participant',
'entity' => 'Participant',
'bao' => 'CRM_Event_BAO_Participant',
'name' => 'must_wait',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Must Wait on List'),
- 'description' => 'On Waiting List',
+ 'description' => ts('On Waiting List'),
'table_name' => 'civicrm_participant',
'entity' => 'Participant',
'bao' => 'CRM_Event_BAO_Participant',
'name' => 'transferred_to_contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Transferred to Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'import' => TRUE,
'where' => 'civicrm_participant.transferred_to_contact_id',
'headerPattern' => '/transfer(.?id)?/i',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment ID'),
- 'description' => 'Participant Payment Id',
+ 'description' => ts('Participant Payment Id'),
'required' => TRUE,
'table_name' => 'civicrm_participant_payment',
'entity' => 'ParticipantPayment',
'name' => 'participant_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Participant ID'),
- 'description' => 'Participant Id (FK)',
+ 'description' => ts('Participant Id (FK)'),
'required' => TRUE,
'table_name' => 'civicrm_participant_payment',
'entity' => 'ParticipantPayment',
'name' => 'contribution_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution'),
- 'description' => 'FK to contribution table.',
+ 'description' => ts('FK to contribution table.'),
'required' => TRUE,
'table_name' => 'civicrm_participant_payment',
'entity' => 'ParticipantPayment',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Participant Status Type ID'),
- 'description' => 'unique participant status type id',
+ 'description' => ts('unique participant status type id'),
'required' => TRUE,
'table_name' => 'civicrm_participant_status_type',
'entity' => 'ParticipantStatusType',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Participant Status'),
- 'description' => 'non-localized name of the status type',
+ 'description' => ts('non-localized name of the status type'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'import' => TRUE,
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Participant Status Label'),
- 'description' => 'localized label for display of this status type',
+ 'description' => ts('localized label for display of this status type'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_participant_status_type',
'name' => 'class',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Participant Status Class'),
- 'description' => 'the general group of status type this one belongs to',
+ 'description' => ts('the general group of status type this one belongs to'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_participant_status_type',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Participant Status Is Reserved?>'),
- 'description' => 'whether this is a status type required by the system',
+ 'description' => ts('whether this is a status type required by the system'),
'table_name' => 'civicrm_participant_status_type',
'entity' => 'ParticipantStatusType',
'bao' => 'CRM_Event_BAO_ParticipantStatusType',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Participant Status is Active'),
- 'description' => 'whether this status type is active',
+ 'description' => ts('whether this status type is active'),
'default' => '1',
'table_name' => 'civicrm_participant_status_type',
'entity' => 'ParticipantStatusType',
'name' => 'is_counted',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Participant Status Counts?'),
- 'description' => 'whether this status type is counted against event size limit',
+ 'description' => ts('whether this status type is counted against event size limit'),
'table_name' => 'civicrm_participant_status_type',
'entity' => 'ParticipantStatusType',
'bao' => 'CRM_Event_BAO_ParticipantStatusType',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'controls sort order',
+ 'description' => ts('controls sort order'),
'required' => TRUE,
'table_name' => 'civicrm_participant_status_type',
'entity' => 'ParticipantStatusType',
'name' => 'visibility_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Participant Status Visibility'),
- 'description' => 'whether the status type is visible to the public, an implicit foreign key to option_value.value related to the `visibility` option_group',
+ 'description' => ts('whether the status type is visible to the public, an implicit foreign key to option_value.value related to the `visibility` option_group'),
'table_name' => 'civicrm_participant_status_type',
'entity' => 'ParticipantStatusType',
'bao' => 'CRM_Event_BAO_ParticipantStatusType',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Currency ID'),
- 'description' => 'Currency Id',
+ 'description' => ts('Currency Id'),
'required' => TRUE,
'table_name' => 'civicrm_currency',
'entity' => 'Currency',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Currency'),
- 'description' => 'Currency Name',
+ 'description' => ts('Currency Name'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'import' => TRUE,
'name' => 'symbol',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Currency Symbol'),
- 'description' => 'Currency Symbol',
+ 'description' => ts('Currency Symbol'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_currency',
'name' => 'numeric_code',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Currency Numeric Code'),
- 'description' => 'Numeric currency code',
+ 'description' => ts('Numeric currency code'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'import' => TRUE,
'name' => 'full_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Full Currency Name'),
- 'description' => 'Full currency name',
+ 'description' => ts('Full currency name'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_currency',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity Financial Account ID'),
- 'description' => 'ID',
+ 'description' => ts('ID'),
'required' => TRUE,
'table_name' => 'civicrm_entity_financial_account',
'entity' => 'EntityFinancialAccount',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'Links to an entity_table like civicrm_financial_type',
+ 'description' => ts('Links to an entity_table like civicrm_financial_type'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'Links to an id in the entity_table, such as vid in civicrm_financial_type',
+ 'description' => ts('Links to an id in the entity_table, such as vid in civicrm_financial_type'),
'required' => TRUE,
'table_name' => 'civicrm_entity_financial_account',
'entity' => 'EntityFinancialAccount',
'name' => 'account_relationship',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Account Relationship'),
- 'description' => 'FK to a new civicrm_option_value (account_relationship)',
+ 'description' => ts('FK to a new civicrm_option_value (account_relationship)'),
'required' => TRUE,
'table_name' => 'civicrm_entity_financial_account',
'entity' => 'EntityFinancialAccount',
'name' => 'financial_account_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Account'),
- 'description' => 'FK to the financial_account_id',
+ 'description' => ts('FK to the financial_account_id'),
'required' => TRUE,
'table_name' => 'civicrm_entity_financial_account',
'entity' => 'EntityFinancialAccount',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity Financial Transaction ID'),
- 'description' => 'ID',
+ 'description' => ts('ID'),
'required' => TRUE,
'table_name' => 'civicrm_entity_financial_trxn',
'entity' => 'EntityFinancialTrxn',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'May contain civicrm_financial_item, civicrm_contribution, civicrm_financial_trxn, civicrm_grant, etc',
+ 'description' => ts('May contain civicrm_financial_item, civicrm_contribution, civicrm_financial_trxn, civicrm_grant, etc'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Amount'),
- 'description' => 'allocated amount of transaction to this entity',
+ 'description' => ts('allocated amount of transaction to this entity'),
'required' => TRUE,
'precision' => [
20,
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Account ID'),
- 'description' => 'ID',
+ 'description' => ts('ID'),
'required' => TRUE,
'table_name' => 'civicrm_financial_account',
'entity' => 'FinancialAccount',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Financial Account Name'),
- 'description' => 'Financial Account Name.',
+ 'description' => ts('Financial Account Name.'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to Contact ID that is responsible for the funds in this account',
+ 'description' => ts('FK to Contact ID that is responsible for the funds in this account'),
'table_name' => 'civicrm_financial_account',
'entity' => 'FinancialAccount',
'bao' => 'CRM_Financial_BAO_FinancialAccount',
'name' => 'financial_account_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Account Type'),
- 'description' => 'pseudo FK into civicrm_option_value.',
+ 'description' => ts('pseudo FK into civicrm_option_value.'),
'required' => TRUE,
'default' => '3',
'table_name' => 'civicrm_financial_account',
'name' => 'accounting_code',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Accounting Code'),
- 'description' => 'Optional value for mapping monies owed and received to accounting system codes.',
+ 'description' => ts('Optional value for mapping monies owed and received to accounting system codes.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'export' => TRUE,
'name' => 'account_type_code',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Account Type Code'),
- 'description' => 'Optional value for mapping account types to accounting system account categories (QuickBooks Account Type Codes for example).',
+ 'description' => ts('Optional value for mapping account types to accounting system account categories (QuickBooks Account Type Codes for example).'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'export' => TRUE,
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Financial Account Description'),
- 'description' => 'Financial Type Description.',
+ 'description' => ts('Financial Type Description.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_financial_account',
'name' => 'parent_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Account Parent'),
- 'description' => 'Parent ID in account hierarchy',
+ 'description' => ts('Parent ID in account hierarchy'),
'table_name' => 'civicrm_financial_account',
'entity' => 'FinancialAccount',
'bao' => 'CRM_Financial_BAO_FinancialAccount',
'name' => 'is_header_account',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Header Financial Account?'),
- 'description' => 'Is this a header account which does not allow transactions to be posted against it directly, but only to its sub-accounts?',
+ 'description' => ts('Is this a header account which does not allow transactions to be posted against it directly, but only to its sub-accounts?'),
'default' => '0',
'table_name' => 'civicrm_financial_account',
'entity' => 'FinancialAccount',
'name' => 'is_deductible',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Deductible Financial Account?'),
- 'description' => 'Is this account tax-deductible?',
+ 'description' => ts('Is this account tax-deductible?'),
'default' => '1',
'table_name' => 'civicrm_financial_account',
'entity' => 'FinancialAccount',
'name' => 'is_tax',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Tax Financial Account?'),
- 'description' => 'Is this account for taxes?',
+ 'description' => ts('Is this account for taxes?'),
'default' => '0',
'table_name' => 'civicrm_financial_account',
'entity' => 'FinancialAccount',
'name' => 'tax_rate',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Financial Account Tax Rate'),
- 'description' => 'The percentage of the total_amount that is due for this tax.',
+ 'description' => ts('The percentage of the total_amount that is due for this tax.'),
'precision' => [
10,
8
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Reserved Financial Account?'),
- 'description' => 'Is this a predefined system object?',
+ 'description' => ts('Is this a predefined system object?'),
'table_name' => 'civicrm_financial_account',
'entity' => 'FinancialAccount',
'bao' => 'CRM_Financial_BAO_FinancialAccount',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Financial Account is Active'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'table_name' => 'civicrm_financial_account',
'entity' => 'FinancialAccount',
'bao' => 'CRM_Financial_BAO_FinancialAccount',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Default Financial Account'),
- 'description' => 'Is this account the default one (or default tax one) for its financial_account_type?',
+ 'description' => ts('Is this account the default one (or default tax one) for its financial_account_type?'),
'table_name' => 'civicrm_financial_account',
'entity' => 'FinancialAccount',
'bao' => 'CRM_Financial_BAO_FinancialAccount',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Financial Item Created Date'),
- 'description' => 'Date and time the item was created',
+ 'description' => ts('Date and time the item was created'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_financial_item',
'name' => 'transaction_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Financial Item Transaction Date'),
- 'description' => 'Date and time of the source transaction',
+ 'description' => ts('Date and time of the source transaction'),
'required' => TRUE,
'table_name' => 'civicrm_financial_item',
'entity' => 'FinancialItem',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Item Contact ID'),
- 'description' => 'FK to Contact ID of contact the item is from',
+ 'description' => ts('FK to Contact ID of contact the item is from'),
'required' => TRUE,
'export' => TRUE,
'where' => 'civicrm_financial_item.contact_id',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Financial Item Description'),
- 'description' => 'Human readable description of this item, to ease display without lookup of source item.',
+ 'description' => ts('Human readable description of this item, to ease display without lookup of source item.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_financial_item',
'name' => 'amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Amount'),
- 'description' => 'Total amount of this item',
+ 'description' => ts('Total amount of this item'),
'required' => TRUE,
'precision' => [
20,
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Financial Item Currency'),
- 'description' => 'Currency for the amount',
+ 'description' => ts('Currency for the amount'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'export' => TRUE,
'name' => 'financial_account_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Account ID'),
- 'description' => 'FK to civicrm_financial_account',
+ 'description' => ts('FK to civicrm_financial_account'),
'table_name' => 'civicrm_financial_item',
'entity' => 'FinancialItem',
'bao' => 'CRM_Financial_BAO_FinancialItem',
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Item Status ID'),
- 'description' => 'Payment status: test, paid, part_paid, unpaid (if empty assume unpaid)',
+ 'description' => ts('Payment status: test, paid, part_paid, unpaid (if empty assume unpaid)'),
'export' => TRUE,
'where' => 'civicrm_financial_item.status_id',
'headerPattern' => '',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'The table providing the source of this item such as civicrm_line_item',
+ 'description' => ts('The table providing the source of this item such as civicrm_line_item'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_financial_item',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'The specific source item that is responsible for the creation of this financial_item',
+ 'description' => ts('The specific source item that is responsible for the creation of this financial_item'),
'table_name' => 'civicrm_financial_item',
'entity' => 'FinancialItem',
'bao' => 'CRM_Financial_BAO_FinancialItem',
'name' => 'from_financial_account_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Transaction From Account'),
- 'description' => 'FK to financial_account table.',
+ 'description' => ts('FK to financial_account table.'),
'table_name' => 'civicrm_financial_trxn',
'entity' => 'FinancialTrxn',
'bao' => 'CRM_Financial_DAO_FinancialTrxn',
'name' => 'to_financial_account_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Transaction To Account'),
- 'description' => 'FK to financial_financial_account table.',
+ 'description' => ts('FK to financial_financial_account table.'),
'table_name' => 'civicrm_financial_trxn',
'entity' => 'FinancialTrxn',
'bao' => 'CRM_Financial_DAO_FinancialTrxn',
'name' => 'trxn_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Financial Transaction Date'),
- 'description' => 'date transaction occurred',
+ 'description' => ts('date transaction occurred'),
'default' => 'NULL',
'table_name' => 'civicrm_financial_trxn',
'entity' => 'FinancialTrxn',
'name' => 'total_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Financial Total Amount'),
- 'description' => 'amount of transaction',
+ 'description' => ts('amount of transaction'),
'required' => TRUE,
'precision' => [
20,
'name' => 'fee_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Financial Fee Amount'),
- 'description' => 'actual processor fee if known - may be 0.',
+ 'description' => ts('actual processor fee if known - may be 0.'),
'precision' => [
20,
2
'name' => 'net_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Financial Net Amount'),
- 'description' => 'actual funds transfer amount. total less fees. if processor does not report actual fee during transaction, this is set to total_amount.',
+ 'description' => ts('actual funds transfer amount. total less fees. if processor does not report actual fee during transaction, this is set to total_amount.'),
'precision' => [
20,
2
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Financial Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'import' => TRUE,
'name' => 'is_payment',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Payment?'),
- 'description' => 'Is this entry either a payment or a reversal of a payment?',
+ 'description' => ts('Is this entry either a payment or a reversal of a payment?'),
'import' => TRUE,
'where' => 'civicrm_financial_trxn.is_payment',
'headerPattern' => '',
'name' => 'trxn_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Transaction ID'),
- 'description' => 'Transaction id supplied by external processor. This may not be unique.',
+ 'description' => ts('Transaction id supplied by external processor. This may not be unique.'),
'maxlength' => 255,
'size' => 10,
'table_name' => 'civicrm_financial_trxn',
'name' => 'trxn_result_code',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Transaction Result Code'),
- 'description' => 'processor result code',
+ 'description' => ts('processor result code'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_financial_trxn',
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Transaction Status Id'),
- 'description' => 'pseudo FK to civicrm_option_value of contribution_status_id option_group',
+ 'description' => ts('pseudo FK to civicrm_option_value of contribution_status_id option_group'),
'import' => TRUE,
'where' => 'civicrm_financial_trxn.status_id',
'headerPattern' => '/status/i',
'name' => 'payment_processor_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Processor'),
- 'description' => 'Payment Processor for this financial transaction',
+ 'description' => ts('Payment Processor for this financial transaction'),
'table_name' => 'civicrm_financial_trxn',
'entity' => 'FinancialTrxn',
'bao' => 'CRM_Financial_DAO_FinancialTrxn',
'name' => 'payment_instrument_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Method'),
- 'description' => 'FK to payment_instrument option group values',
+ 'description' => ts('FK to payment_instrument option group values'),
'table_name' => 'civicrm_financial_trxn',
'entity' => 'FinancialTrxn',
'bao' => 'CRM_Financial_DAO_FinancialTrxn',
'name' => 'card_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Card Type ID'),
- 'description' => 'FK to accept_creditcard option group values',
+ 'description' => ts('FK to accept_creditcard option group values'),
'table_name' => 'civicrm_financial_trxn',
'entity' => 'FinancialTrxn',
'bao' => 'CRM_Financial_DAO_FinancialTrxn',
'name' => 'check_number',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Check Number'),
- 'description' => 'Check number',
+ 'description' => ts('Check number'),
'maxlength' => 255,
'size' => 6,
'table_name' => 'civicrm_financial_trxn',
'name' => 'pan_truncation',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Pan Truncation'),
- 'description' => 'Last 4 digits of credit card',
+ 'description' => ts('Last 4 digits of credit card'),
'maxlength' => 4,
'size' => 4,
'table_name' => 'civicrm_financial_trxn',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type ID'),
- 'description' => 'ID of original financial_type so you can search this table by the financial_type.id and then select the relevant version based on the timestamp',
+ 'description' => ts('ID of original financial_type so you can search this table by the financial_type.id and then select the relevant version based on the timestamp'),
'required' => TRUE,
'table_name' => 'civicrm_financial_type',
'entity' => 'FinancialType',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Financial Type'),
- 'description' => 'Financial Type Name.',
+ 'description' => ts('Financial Type Name.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Description'),
- 'description' => 'Financial Type Description.',
+ 'description' => ts('Financial Type Description.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_financial_type',
'name' => 'is_deductible',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Tax Deductible?'),
- 'description' => 'Is this financial type tax-deductible? If true, contributions of this type may be fully OR partially deductible - non-deductible amount is stored in the Contribution record.',
+ 'description' => ts('Is this financial type tax-deductible? If true, contributions of this type may be fully OR partially deductible - non-deductible amount is stored in the Contribution record.'),
'default' => '1',
'table_name' => 'civicrm_financial_type',
'entity' => 'FinancialType',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Financial Type is Reserved?'),
- 'description' => 'Is this a predefined system object?',
+ 'description' => ts('Is this a predefined system object?'),
'table_name' => 'civicrm_financial_type',
'entity' => 'FinancialType',
'bao' => 'CRM_Financial_BAO_FinancialType',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Financial Type Is Active?'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'table_name' => 'civicrm_financial_type',
'entity' => 'FinancialType',
'bao' => 'CRM_Financial_BAO_FinancialType',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Processor ID'),
- 'description' => 'Payment Processor ID',
+ 'description' => ts('Payment Processor ID'),
'required' => TRUE,
'table_name' => 'civicrm_payment_processor',
'entity' => 'PaymentProcessor',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Processor Domain'),
- 'description' => 'Which Domain is this match entry for',
+ 'description' => ts('Which Domain is this match entry for'),
'required' => TRUE,
'table_name' => 'civicrm_payment_processor',
'entity' => 'PaymentProcessor',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Payment Processor'),
- 'description' => 'Payment Processor Name.',
+ 'description' => ts('Payment Processor Name.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_payment_processor',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Processor Description'),
- 'description' => 'Payment Processor Description.',
+ 'description' => ts('Payment Processor Description.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_payment_processor',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Processor is Active?'),
- 'description' => 'Is this processor active?',
+ 'description' => ts('Is this processor active?'),
'table_name' => 'civicrm_payment_processor',
'entity' => 'PaymentProcessor',
'bao' => 'CRM_Financial_BAO_PaymentProcessor',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Processor Is Default?'),
- 'description' => 'Is this processor the default?',
+ 'description' => ts('Is this processor the default?'),
'table_name' => 'civicrm_payment_processor',
'entity' => 'PaymentProcessor',
'bao' => 'CRM_Financial_BAO_PaymentProcessor',
'name' => 'is_test',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Test Processor?'),
- 'description' => 'Is this processor for a test site?',
+ 'description' => ts('Is this processor for a test site?'),
'table_name' => 'civicrm_payment_processor',
'entity' => 'PaymentProcessor',
'bao' => 'CRM_Financial_BAO_PaymentProcessor',
'name' => 'billing_mode',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Processor Billing Mode'),
- 'description' => 'Billing Mode (deprecated)',
+ 'description' => ts('Billing Mode (deprecated)'),
'required' => TRUE,
'table_name' => 'civicrm_payment_processor',
'entity' => 'PaymentProcessor',
'name' => 'is_recur',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Processor Supports Recurring?'),
- 'description' => 'Can process recurring contributions',
+ 'description' => ts('Can process recurring contributions'),
'table_name' => 'civicrm_payment_processor',
'entity' => 'PaymentProcessor',
'bao' => 'CRM_Financial_BAO_PaymentProcessor',
'name' => 'payment_type',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Type'),
- 'description' => 'Payment Type: Credit or Debit (deprecated)',
+ 'description' => ts('Payment Type: Credit or Debit (deprecated)'),
'default' => '1',
'table_name' => 'civicrm_payment_processor',
'entity' => 'PaymentProcessor',
'name' => 'payment_instrument_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Method'),
- 'description' => 'Payment Instrument ID',
+ 'description' => ts('Payment Instrument ID'),
'default' => '1',
'table_name' => 'civicrm_payment_processor',
'entity' => 'PaymentProcessor',
'name' => 'accepted_credit_cards',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Accepted Credit Cards'),
- 'description' => 'array of accepted credit card types',
+ 'description' => ts('array of accepted credit card types'),
'default' => 'NULL',
'table_name' => 'civicrm_payment_processor',
'entity' => 'PaymentProcessor',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Processor Type ID'),
- 'description' => 'Payment Processor Type ID',
+ 'description' => ts('Payment Processor Type ID'),
'required' => TRUE,
'table_name' => 'civicrm_payment_processor_type',
'entity' => 'PaymentProcessorType',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Payment Processor variable name to be used in code'),
- 'description' => 'Payment Processor Name.',
+ 'description' => ts('Payment Processor Name.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_payment_processor_type',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Payment Processor Title'),
- 'description' => 'Payment Processor Name.',
+ 'description' => ts('Payment Processor Name.'),
'maxlength' => 127,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_payment_processor_type',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Processor Type Description'),
- 'description' => 'Payment Processor Description.',
+ 'description' => ts('Payment Processor Description.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_payment_processor_type',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Processor Type Is Active?'),
- 'description' => 'Is this processor active?',
+ 'description' => ts('Is this processor active?'),
'table_name' => 'civicrm_payment_processor_type',
'entity' => 'PaymentProcessorType',
'bao' => 'CRM_Financial_BAO_PaymentProcessorType',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Processor Type is Default?'),
- 'description' => 'Is this processor the default?',
+ 'description' => ts('Is this processor the default?'),
'table_name' => 'civicrm_payment_processor_type',
'entity' => 'PaymentProcessorType',
'bao' => 'CRM_Financial_BAO_PaymentProcessorType',
'name' => 'billing_mode',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Billing Mode'),
- 'description' => 'Billing Mode (deprecated)',
+ 'description' => ts('Billing Mode (deprecated)'),
'required' => TRUE,
'table_name' => 'civicrm_payment_processor_type',
'entity' => 'PaymentProcessorType',
'name' => 'is_recur',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Processor Type Supports Recurring?'),
- 'description' => 'Can process recurring contributions',
+ 'description' => ts('Can process recurring contributions'),
'table_name' => 'civicrm_payment_processor_type',
'entity' => 'PaymentProcessorType',
'bao' => 'CRM_Financial_BAO_PaymentProcessorType',
'name' => 'payment_type',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Processor Type Payment Type'),
- 'description' => 'Payment Type: Credit or Debit (deprecated)',
+ 'description' => ts('Payment Type: Credit or Debit (deprecated)'),
'default' => '1',
'table_name' => 'civicrm_payment_processor_type',
'entity' => 'PaymentProcessorType',
'name' => 'payment_instrument_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Method'),
- 'description' => 'Payment Instrument ID',
+ 'description' => ts('Payment Instrument ID'),
'default' => '1',
'table_name' => 'civicrm_payment_processor_type',
'entity' => 'PaymentProcessorType',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Payment Token ID'),
- 'description' => 'Payment Token ID',
+ 'description' => ts('Payment Token ID'),
'required' => TRUE,
'table_name' => 'civicrm_payment_token',
'entity' => 'PaymentToken',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to Contact ID for the owner of the token',
+ 'description' => ts('FK to Contact ID for the owner of the token'),
'required' => TRUE,
'table_name' => 'civicrm_payment_token',
'entity' => 'PaymentToken',
'name' => 'token',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Token'),
- 'description' => 'Externally provided token string',
+ 'description' => ts('Externally provided token string'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'created_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Created Date'),
- 'description' => 'Date created',
+ 'description' => ts('Date created'),
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_payment_token',
'entity' => 'PaymentToken',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Created ID'),
- 'description' => 'Contact ID of token creator',
+ 'description' => ts('Contact ID of token creator'),
'table_name' => 'civicrm_payment_token',
'entity' => 'PaymentToken',
'bao' => 'CRM_Financial_DAO_PaymentToken',
'name' => 'expiry_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Expiry Date'),
- 'description' => 'Date this token expires',
+ 'description' => ts('Date this token expires'),
'table_name' => 'civicrm_payment_token',
'entity' => 'PaymentToken',
'bao' => 'CRM_Financial_DAO_PaymentToken',
'name' => 'email',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Email'),
- 'description' => 'Email at the time of token creation. Useful for fraud forensics',
+ 'description' => ts('Email at the time of token creation. Useful for fraud forensics'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_payment_token',
'name' => 'billing_first_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Billing First Name'),
- 'description' => 'Billing first name at the time of token creation. Useful for fraud forensics',
+ 'description' => ts('Billing first name at the time of token creation. Useful for fraud forensics'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_payment_token',
'name' => 'billing_middle_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Billing Middle Name'),
- 'description' => 'Billing middle name at the time of token creation. Useful for fraud forensics',
+ 'description' => ts('Billing middle name at the time of token creation. Useful for fraud forensics'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_payment_token',
'name' => 'billing_last_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Billing Last Name'),
- 'description' => 'Billing last name at the time of token creation. Useful for fraud forensics',
+ 'description' => ts('Billing last name at the time of token creation. Useful for fraud forensics'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_payment_token',
'name' => 'masked_account_number',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Masked Account Number'),
- 'description' => 'Holds the part of the card number or account details that may be retained or displayed',
+ 'description' => ts('Holds the part of the card number or account details that may be retained or displayed'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_payment_token',
'name' => 'ip_address',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('IP Address'),
- 'description' => 'IP used when creating the token. Useful for fraud forensics',
+ 'description' => ts('IP used when creating the token. Useful for fraud forensics'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_payment_token',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Friend ID'),
- 'description' => 'Friend ID',
+ 'description' => ts('Friend ID'),
'required' => TRUE,
'table_name' => 'civicrm_tell_friend',
'entity' => 'Friend',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'Name of table where item being referenced is stored.',
+ 'description' => ts('Name of table where item being referenced is stored.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity ID'),
- 'description' => 'Foreign key to the referenced item.',
+ 'description' => ts('Foreign key to the referenced item.'),
'required' => TRUE,
'table_name' => 'civicrm_tell_friend',
'entity' => 'Friend',
'name' => 'intro',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Intro'),
- 'description' => 'Introductory message to contributor or participant displayed on the Tell a Friend form.',
+ 'description' => ts('Introductory message to contributor or participant displayed on the Tell a Friend form.'),
'table_name' => 'civicrm_tell_friend',
'entity' => 'Friend',
'bao' => 'CRM_Friend_BAO_Friend',
'name' => 'suggested_message',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Suggested Message'),
- 'description' => 'Suggested message to friends, provided as default on the Tell A Friend form.',
+ 'description' => ts('Suggested message to friends, provided as default on the Tell A Friend form.'),
'table_name' => 'civicrm_tell_friend',
'entity' => 'Friend',
'bao' => 'CRM_Friend_BAO_Friend',
'name' => 'general_link',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('General Link'),
- 'description' => 'URL for general info about the organization - included in the email sent to friends.',
+ 'description' => ts('URL for general info about the organization - included in the email sent to friends.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'thankyou_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Thank You Title'),
- 'description' => 'Text for Tell a Friend thank you page header and HTML title.',
+ 'description' => ts('Text for Tell a Friend thank you page header and HTML title.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_tell_friend',
'name' => 'thankyou_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Thank You Text'),
- 'description' => 'Thank you message displayed on success page.',
+ 'description' => ts('Thank you message displayed on success page.'),
'table_name' => 'civicrm_tell_friend',
'entity' => 'Friend',
'bao' => 'CRM_Friend_BAO_Friend',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Grant ID'),
- 'description' => 'Unique Grant id',
+ 'description' => ts('Unique Grant id'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_grant.id',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'Contact ID of contact record given grant belongs to.',
+ 'description' => ts('Contact ID of contact record given grant belongs to.'),
'required' => TRUE,
'export' => TRUE,
'where' => 'civicrm_grant.contact_id',
'name' => 'application_received_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Application received date'),
- 'description' => 'Date on which grant application was received by donor.',
+ 'description' => ts('Date on which grant application was received by donor.'),
'import' => TRUE,
'where' => 'civicrm_grant.application_received_date',
'headerPattern' => '',
'name' => 'decision_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Decision date'),
- 'description' => 'Date on which grant decision was made.',
+ 'description' => ts('Date on which grant decision was made.'),
'import' => TRUE,
'where' => 'civicrm_grant.decision_date',
'headerPattern' => '',
'name' => 'money_transfer_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Grant Money transfer date'),
- 'description' => 'Date on which grant money transfer was made.',
+ 'description' => ts('Date on which grant money transfer was made.'),
'import' => TRUE,
'where' => 'civicrm_grant.money_transfer_date',
'headerPattern' => '',
'name' => 'grant_due_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Grant Due Date'),
- 'description' => 'Date on which grant report is due.',
+ 'description' => ts('Date on which grant report is due.'),
'import' => TRUE,
'where' => 'civicrm_grant.grant_due_date',
'headerPattern' => '',
'name' => 'grant_report_received',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Grant report received'),
- 'description' => 'Yes/No field stating whether grant report was received by donor.',
+ 'description' => ts('Yes/No field stating whether grant report was received by donor.'),
'import' => TRUE,
'where' => 'civicrm_grant.grant_report_received',
'headerPattern' => '',
'name' => 'grant_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Grant Type'),
- 'description' => 'Type of grant. Implicit FK to civicrm_option_value in grant_type option_group.',
+ 'description' => ts('Type of grant. Implicit FK to civicrm_option_value in grant_type option_group.'),
'required' => TRUE,
'export' => TRUE,
'where' => 'civicrm_grant.grant_type_id',
'name' => 'amount_total',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Total Amount'),
- 'description' => 'Requested grant amount, in default currency.',
+ 'description' => ts('Requested grant amount, in default currency.'),
'required' => TRUE,
'precision' => [
20,
'name' => 'amount_requested',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Amount Requested'),
- 'description' => 'Requested grant amount, in original currency (optional).',
+ 'description' => ts('Requested grant amount, in original currency (optional).'),
'precision' => [
20,
2
'name' => 'amount_granted',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Amount granted'),
- 'description' => 'Granted amount, in default currency.',
+ 'description' => ts('Granted amount, in default currency.'),
'precision' => [
20,
2
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Grant Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'required' => TRUE,
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'name' => 'rationale',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Grant Rationale'),
- 'description' => 'Grant rationale.',
+ 'description' => ts('Grant rationale.'),
'rows' => 4,
'cols' => 60,
'import' => TRUE,
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Grant Status'),
- 'description' => 'Id of Grant status.',
+ 'description' => ts('Id of Grant status.'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_grant.status_id',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'FK to Financial Type.',
+ 'description' => ts('FK to Financial Type.'),
'default' => 'NULL',
'table_name' => 'civicrm_grant',
'entity' => 'Grant',
'name' => 'bounce_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Bounce Type'),
- 'description' => 'Type of bounce',
+ 'description' => ts('Type of bounce'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_bounce_pattern',
'entity' => 'BouncePattern',
'name' => 'pattern',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Pattern'),
- 'description' => 'A regexp to match a message to a bounce type',
+ 'description' => ts('A regexp to match a message to a bounce type'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing_bounce_pattern',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Bounce Type Name'),
- 'description' => 'Type of bounce',
+ 'description' => ts('Type of bounce'),
'required' => TRUE,
'maxlength' => 24,
'size' => CRM_Utils_Type::MEDIUM,
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Bounce Type Description'),
- 'description' => 'A description of this bounce type',
+ 'description' => ts('A description of this bounce type'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing_bounce_type',
'name' => 'hold_threshold',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Hold Threshold'),
- 'description' => 'Number of bounces of this type required before the email address is put on bounce hold',
+ 'description' => ts('Number of bounces of this type required before the email address is put on bounce hold'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_bounce_type',
'entity' => 'BounceType',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Domain'),
- 'description' => 'Which site is this mailing for',
+ 'description' => ts('Which site is this mailing for'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'header_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Header'),
- 'description' => 'FK to the header component.',
+ 'description' => ts('FK to the header component.'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'footer_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Footer'),
- 'description' => 'FK to the footer component.',
+ 'description' => ts('FK to the footer component.'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'reply_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Reply'),
- 'description' => 'FK to the auto-responder component.',
+ 'description' => ts('FK to the auto-responder component.'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'unsubscribe_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Unsubscribe'),
- 'description' => 'FK to the unsubscribe component.',
+ 'description' => ts('FK to the unsubscribe component.'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'optout_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Opt Out'),
- 'description' => 'FK to the opt-out component.',
+ 'description' => ts('FK to the opt-out component.'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Name'),
- 'description' => 'Mailing Name.',
+ 'description' => ts('Mailing Name.'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing',
'name' => 'mailing_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Type'),
- 'description' => 'differentiate between standalone mailings, A/B tests, and A/B final-winner',
+ 'description' => ts('differentiate between standalone mailings, A/B tests, and A/B final-winner'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'table_name' => 'civicrm_mailing',
'name' => 'from_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing From Name'),
- 'description' => 'From Header of mailing',
+ 'description' => ts('From Header of mailing'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing',
'name' => 'from_email',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing From Email'),
- 'description' => 'From Email of mailing',
+ 'description' => ts('From Email of mailing'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing',
'name' => 'replyto_email',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Replyto Email'),
- 'description' => 'Reply-To Email of mailing',
+ 'description' => ts('Reply-To Email of mailing'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing',
'name' => 'template_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Template Type'),
- 'description' => 'The language/processing system used for email templates.',
+ 'description' => ts('The language/processing system used for email templates.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'template_options',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Template Options (JSON)'),
- 'description' => 'Advanced options used by the email templating system. (JSON encoded)',
+ 'description' => ts('Advanced options used by the email templating system. (JSON encoded)'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'subject',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Subject'),
- 'description' => 'Subject of mailing',
+ 'description' => ts('Subject of mailing'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing',
'name' => 'body_text',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Body Text'),
- 'description' => 'Body of the mailing in text format.',
+ 'description' => ts('Body of the mailing in text format.'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'body_html',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Body Html'),
- 'description' => 'Body of the mailing in html format.',
+ 'description' => ts('Body of the mailing in html format.'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'url_tracking',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Url Tracking'),
- 'description' => 'Should we track URL click-throughs for this mailing?',
+ 'description' => ts('Should we track URL click-throughs for this mailing?'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'forward_replies',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Forward Replies'),
- 'description' => 'Should we forward replies back to the author?',
+ 'description' => ts('Should we forward replies back to the author?'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'auto_responder',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Auto Responder'),
- 'description' => 'Should we enable the auto-responder?',
+ 'description' => ts('Should we enable the auto-responder?'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'open_tracking',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Track Mailing?'),
- 'description' => 'Should we track when recipients open/read this mailing?',
+ 'description' => ts('Should we track when recipients open/read this mailing?'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'is_completed',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Mailing Completed'),
- 'description' => 'Has at least one job associated with this mailing finished?',
+ 'description' => ts('Has at least one job associated with this mailing finished?'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'msg_template_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Message Template'),
- 'description' => 'FK to the message template.',
+ 'description' => ts('FK to the message template.'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'override_verp',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Override Verp'),
- 'description' => 'Should we overrite VERP address in Reply-To',
+ 'description' => ts('Should we overrite VERP address in Reply-To'),
'default' => '0',
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Creator'),
- 'description' => 'FK to Contact ID who first created this mailing',
+ 'description' => ts('FK to Contact ID who first created this mailing'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Mailing Created Date'),
- 'description' => 'Date and time this mailing was created.',
+ 'description' => ts('Date and time this mailing was created.'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_mailing',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Modified Date'),
- 'description' => 'When the mailing (or closely related entity) was created or modified or deleted.',
+ 'description' => ts('When the mailing (or closely related entity) was created or modified or deleted.'),
'required' => FALSE,
'export' => TRUE,
'where' => 'civicrm_mailing.modified_date',
'name' => 'scheduled_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Scheduled By'),
- 'description' => 'FK to Contact ID who scheduled this mailing',
+ 'description' => ts('FK to Contact ID who scheduled this mailing'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'scheduled_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Mailing Scheduled Date'),
- 'description' => 'Date and time this mailing was scheduled.',
+ 'description' => ts('Date and time this mailing was scheduled.'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_mailing',
'name' => 'approver_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Approved By'),
- 'description' => 'FK to Contact ID who approved this mailing',
+ 'description' => ts('FK to Contact ID who approved this mailing'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'approval_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Mailing Approved Date'),
- 'description' => 'Date and time this mailing was approved.',
+ 'description' => ts('Date and time this mailing was approved.'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_mailing',
'name' => 'approval_status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Approval Status'),
- 'description' => 'The status of this mailing. Values: none, approved, rejected',
+ 'description' => ts('The status of this mailing. Values: none, approved, rejected'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'approval_note',
'type' => CRM_Utils_Type::T_LONGTEXT,
'title' => ts('Approval Note'),
- 'description' => 'Note behind the decision.',
+ 'description' => ts('Note behind the decision.'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'is_archived',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Mailing Archived?'),
- 'description' => 'Is this mailing archived?',
+ 'description' => ts('Is this mailing archived?'),
'default' => '0',
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'name' => 'visibility',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Visibility'),
- 'description' => 'In what context(s) is the mailing contents visible (online viewing)',
+ 'description' => ts('In what context(s) is the mailing contents visible (online viewing)'),
'maxlength' => 40,
'size' => CRM_Utils_Type::BIG,
'default' => 'Public Pages',
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Campaign'),
- 'description' => 'The campaign for which this mailing has been initiated.',
+ 'description' => ts('The campaign for which this mailing has been initiated.'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'dedupe_email',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('No Duplicate emails?'),
- 'description' => 'Remove duplicate emails?',
+ 'description' => ts('Remove duplicate emails?'),
'default' => '0',
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'name' => 'hash',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Hash'),
- 'description' => 'Key for validating requests related to this mailing.',
+ 'description' => ts('Key for validating requests related to this mailing.'),
'maxlength' => 16,
'size' => CRM_Utils_Type::TWELVE,
'table_name' => 'civicrm_mailing',
'name' => 'location_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Location Type'),
- 'description' => 'With email_selection_method, determines which email address to use',
+ 'description' => ts('With email_selection_method, determines which email address to use'),
'table_name' => 'civicrm_mailing',
'entity' => 'Mailing',
'bao' => 'CRM_Mailing_BAO_Mailing',
'name' => 'email_selection_method',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Email Selection Method'),
- 'description' => 'With location_type_id, determine how to choose the email address to use.',
+ 'description' => ts('With location_type_id, determine how to choose the email address to use.'),
'maxlength' => 20,
'size' => CRM_Utils_Type::MEDIUM,
'default' => 'automatic',
'name' => 'language',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Language'),
- 'description' => 'Language of the content of the mailing. Useful for tokens.',
+ 'description' => ts('Language of the content of the mailing. Useful for tokens.'),
'maxlength' => 5,
'size' => CRM_Utils_Type::SIX,
'table_name' => 'civicrm_mailing',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Name of the A/B test',
+ 'description' => ts('Name of the A/B test'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing_abtest',
'name' => 'status',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Status'),
- 'description' => 'Status',
+ 'description' => ts('Status'),
'maxlength' => 32,
'size' => CRM_Utils_Type::MEDIUM,
'table_name' => 'civicrm_mailing_abtest',
'name' => 'mailing_id_a',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing ID (A)'),
- 'description' => 'The first experimental mailing ("A" condition)',
+ 'description' => ts('The first experimental mailing ("A" condition)'),
'table_name' => 'civicrm_mailing_abtest',
'entity' => 'MailingAB',
'bao' => 'CRM_Mailing_BAO_MailingAB',
'name' => 'mailing_id_b',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing ID (B)'),
- 'description' => 'The second experimental mailing ("B" condition)',
+ 'description' => ts('The second experimental mailing ("B" condition)'),
'table_name' => 'civicrm_mailing_abtest',
'entity' => 'MailingAB',
'bao' => 'CRM_Mailing_BAO_MailingAB',
'name' => 'mailing_id_c',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing ID (C)'),
- 'description' => 'The final, general mailing (derived from A or B)',
+ 'description' => ts('The final, general mailing (derived from A or B)'),
'table_name' => 'civicrm_mailing_abtest',
'entity' => 'MailingAB',
'bao' => 'CRM_Mailing_BAO_MailingAB',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Domain ID'),
- 'description' => 'Which site is this mailing for',
+ 'description' => ts('Which site is this mailing for'),
'table_name' => 'civicrm_mailing_abtest',
'entity' => 'MailingAB',
'bao' => 'CRM_Mailing_BAO_MailingAB',
'name' => 'specific_url',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('URL for Winner Criteria'),
- 'description' => 'What specific url to track',
+ 'description' => ts('What specific url to track'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing_abtest',
'name' => 'declare_winning_time',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Declaration Time'),
- 'description' => 'In how much time to declare winner',
+ 'description' => ts('In how much time to declare winner'),
'table_name' => 'civicrm_mailing_abtest',
'entity' => 'MailingAB',
'bao' => 'CRM_Mailing_BAO_MailingAB',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('AB Test Created By'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'table_name' => 'civicrm_mailing_abtest',
'entity' => 'MailingAB',
'bao' => 'CRM_Mailing_BAO_MailingAB',
'name' => 'created_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('AB Test Created Date'),
- 'description' => 'When was this item created',
+ 'description' => ts('When was this item created'),
'required' => FALSE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_mailing_abtest',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Component Name'),
- 'description' => 'The name of this component',
+ 'description' => ts('The name of this component'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_mailing_component',
'name' => 'component_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Component Type'),
- 'description' => 'Type of Component.',
+ 'description' => ts('Type of Component.'),
'maxlength' => 12,
'size' => CRM_Utils_Type::TWELVE,
'table_name' => 'civicrm_mailing_component',
'name' => 'body_html',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Mailing Component Body HTML'),
- 'description' => 'Body of the component in html format.',
+ 'description' => ts('Body of the component in html format.'),
'rows' => 8,
'cols' => 80,
'table_name' => 'civicrm_mailing_component',
'name' => 'body_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Body Text'),
- 'description' => 'Body of the component in text format.',
+ 'description' => ts('Body of the component in text format.'),
'rows' => 8,
'cols' => 80,
'table_name' => 'civicrm_mailing_component',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Mailing Component is Default?'),
- 'description' => 'Is this the default component for this component_type?',
+ 'description' => ts('Is this the default component for this component_type?'),
'default' => '0',
'table_name' => 'civicrm_mailing_component',
'entity' => 'MailingComponent',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Mailing Component Is Active?'),
- 'description' => 'Is this property active?',
+ 'description' => ts('Is this property active?'),
'table_name' => 'civicrm_mailing_component',
'entity' => 'MailingComponent',
'bao' => 'CRM_Mailing_BAO_MailingComponent',
'name' => 'mailing_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing'),
- 'description' => 'The ID of a previous mailing to include/exclude recipients.',
+ 'description' => ts('The ID of a previous mailing to include/exclude recipients.'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_group',
'entity' => 'MailingGroup',
'name' => 'group_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Group Type'),
- 'description' => 'Are the members of the group included or excluded?.',
+ 'description' => ts('Are the members of the group included or excluded?.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_mailing_group',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Group Entity Table'),
- 'description' => 'Name of table where item being referenced is stored.',
+ 'description' => ts('Name of table where item being referenced is stored.'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Group Entity'),
- 'description' => 'Foreign key to the referenced item.',
+ 'description' => ts('Foreign key to the referenced item.'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_group',
'entity' => 'MailingGroup',
'name' => 'search_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Group Search'),
- 'description' => 'The filtering search. custom search id or -1 for civicrm api search',
+ 'description' => ts('The filtering search. custom search id or -1 for civicrm api search'),
'table_name' => 'civicrm_mailing_group',
'entity' => 'MailingGroup',
'bao' => 'CRM_Mailing_DAO_MailingGroup',
'name' => 'search_args',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Mailing Group Search Arguments'),
- 'description' => 'The arguments to be sent to the search function',
+ 'description' => ts('The arguments to be sent to the search function'),
'table_name' => 'civicrm_mailing_group',
'entity' => 'MailingGroup',
'bao' => 'CRM_Mailing_DAO_MailingGroup',
'name' => 'mailing_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing'),
- 'description' => 'The ID of the mailing this Job will send.',
+ 'description' => ts('The ID of the mailing this Job will send.'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_job',
'entity' => 'MailingJob',
'name' => 'scheduled_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Mailing Scheduled Date'),
- 'description' => 'date on which this job was scheduled.',
+ 'description' => ts('date on which this job was scheduled.'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_mailing_job',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Mailing Job Start Date'),
- 'description' => 'date on which this job was started.',
+ 'description' => ts('date on which this job was started.'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_mailing_job',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Mailing Job End Date'),
- 'description' => 'date on which this job ended.',
+ 'description' => ts('date on which this job ended.'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_mailing_job',
'name' => 'status',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Job Status'),
- 'description' => 'The state of this job',
+ 'description' => ts('The state of this job'),
'maxlength' => 12,
'size' => CRM_Utils_Type::TWELVE,
'table_name' => 'civicrm_mailing_job',
'name' => 'is_test',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Mailing Job Is Test?'),
- 'description' => 'Is this job for a test mail?',
+ 'description' => ts('Is this job for a test mail?'),
'default' => '0',
'table_name' => 'civicrm_mailing_job',
'entity' => 'MailingJob',
'name' => 'job_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Job Type'),
- 'description' => 'Type of mailling job: null | child ',
+ 'description' => ts('Type of mailling job: null | child '),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing_job',
'name' => 'parent_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Job Parent'),
- 'description' => 'Parent job id',
+ 'description' => ts('Parent job id'),
'default' => 'NULL',
'table_name' => 'civicrm_mailing_job',
'entity' => 'MailingJob',
'name' => 'job_offset',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Job Offset'),
- 'description' => 'Offset of the child job',
+ 'description' => ts('Offset of the child job'),
'default' => '0',
'table_name' => 'civicrm_mailing_job',
'entity' => 'MailingJob',
'name' => 'job_limit',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Job Limit'),
- 'description' => 'Queue size limit for each child job',
+ 'description' => ts('Queue size limit for each child job'),
'default' => '0',
'table_name' => 'civicrm_mailing_job',
'entity' => 'MailingJob',
'name' => 'mailing_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing'),
- 'description' => 'The ID of the mailing this Job will send.',
+ 'description' => ts('The ID of the mailing this Job will send.'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_recipients',
'entity' => 'Recipients',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Recipient'),
- 'description' => 'FK to Contact',
+ 'description' => ts('FK to Contact'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_recipients',
'entity' => 'Recipients',
'name' => 'email_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Recipient Email'),
- 'description' => 'FK to Email',
+ 'description' => ts('FK to Email'),
'default' => 'NULL',
'table_name' => 'civicrm_mailing_recipients',
'entity' => 'Recipients',
'name' => 'phone_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Recipient Phone'),
- 'description' => 'FK to Phone',
+ 'description' => ts('FK to Phone'),
'default' => 'NULL',
'table_name' => 'civicrm_mailing_recipients',
'entity' => 'Recipients',
'name' => 'job_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Job'),
- 'description' => 'The ID of the Job .',
+ 'description' => ts('The ID of the Job .'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_spool',
'entity' => 'Spool',
'name' => 'recipient_email',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Recipient Email'),
- 'description' => 'The email of the receipients this mail is to be sent.',
+ 'description' => ts('The email of the receipients this mail is to be sent.'),
'table_name' => 'civicrm_mailing_spool',
'entity' => 'Spool',
'bao' => 'CRM_Mailing_BAO_Spool',
'name' => 'headers',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Headers'),
- 'description' => 'The header information of this mailing .',
+ 'description' => ts('The header information of this mailing .'),
'table_name' => 'civicrm_mailing_spool',
'entity' => 'Spool',
'bao' => 'CRM_Mailing_BAO_Spool',
'name' => 'body',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Body'),
- 'description' => 'The body of this mailing.',
+ 'description' => ts('The body of this mailing.'),
'table_name' => 'civicrm_mailing_spool',
'entity' => 'Spool',
'bao' => 'CRM_Mailing_BAO_Spool',
'name' => 'added_at',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Added'),
- 'description' => 'date on which this job was added.',
+ 'description' => ts('date on which this job was added.'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_mailing_spool',
'name' => 'removed_at',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Removed'),
- 'description' => 'date on which this job was removed.',
+ 'description' => ts('date on which this job was removed.'),
'required' => FALSE,
'default' => 'NULL',
'table_name' => 'civicrm_mailing_spool',
'name' => 'url',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Url'),
- 'description' => 'The URL to be tracked.',
+ 'description' => ts('The URL to be tracked.'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_trackable_url',
'entity' => 'TrackableURL',
'name' => 'mailing_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing'),
- 'description' => 'FK to the mailing',
+ 'description' => ts('FK to the mailing'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_trackable_url',
'entity' => 'TrackableURL',
'name' => 'event_queue_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event Queue'),
- 'description' => 'FK to EventQueue',
+ 'description' => ts('FK to EventQueue'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_bounce',
'entity' => 'Bounce',
'name' => 'bounce_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Bounce Type'),
- 'description' => 'What type of bounce was it?',
+ 'description' => ts('What type of bounce was it?'),
'table_name' => 'civicrm_mailing_event_bounce',
'entity' => 'Bounce',
'bao' => 'CRM_Mailing_Event_BAO_Bounce',
'name' => 'bounce_reason',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Bounce Reason'),
- 'description' => 'The reason the email bounced.',
+ 'description' => ts('The reason the email bounced.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_mailing_event_bounce',
'name' => 'time_stamp',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Timestamp'),
- 'description' => 'When this bounce event occurred.',
+ 'description' => ts('When this bounce event occurred.'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_mailing_event_bounce',
'name' => 'event_subscribe_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Subscribe ID'),
- 'description' => 'FK to civicrm_mailing_event_subscribe',
+ 'description' => ts('FK to civicrm_mailing_event_subscribe'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_confirm',
'entity' => 'Confirm',
'name' => 'time_stamp',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Confirm Timestamp'),
- 'description' => 'When this confirmation event occurred.',
+ 'description' => ts('When this confirmation event occurred.'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_mailing_event_confirm',
'name' => 'event_queue_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event Queue'),
- 'description' => 'FK to EventQueue',
+ 'description' => ts('FK to EventQueue'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_delivered',
'entity' => 'Delivered',
'name' => 'time_stamp',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Timestamp'),
- 'description' => 'When this delivery event occurred.',
+ 'description' => ts('When this delivery event occurred.'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_mailing_event_delivered',
'name' => 'event_queue_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Event Queue'),
- 'description' => 'FK to EventQueue',
+ 'description' => ts('FK to EventQueue'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_forward',
'entity' => 'Forward',
'name' => 'dest_queue_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Destination Queue'),
- 'description' => 'FK to EventQueue for destination',
+ 'description' => ts('FK to EventQueue for destination'),
'table_name' => 'civicrm_mailing_event_forward',
'entity' => 'Forward',
'bao' => 'CRM_Mailing_Event_BAO_Forward',
'name' => 'time_stamp',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Timestamp'),
- 'description' => 'When this forward event occurred.',
+ 'description' => ts('When this forward event occurred.'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_mailing_event_forward',
'name' => 'event_queue_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event Queue'),
- 'description' => 'FK to EventQueue',
+ 'description' => ts('FK to EventQueue'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_opened',
'entity' => 'Opened',
'name' => 'time_stamp',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Timestamp'),
- 'description' => 'When this open event occurred.',
+ 'description' => ts('When this open event occurred.'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_mailing_event_opened',
'name' => 'job_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Job ID'),
- 'description' => 'FK to Job',
+ 'description' => ts('FK to Job'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_queue',
'entity' => 'Queue',
'name' => 'email_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Email ID'),
- 'description' => 'FK to Email',
+ 'description' => ts('FK to Email'),
'default' => 'NULL',
'table_name' => 'civicrm_mailing_event_queue',
'entity' => 'Queue',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to Contact',
+ 'description' => ts('FK to Contact'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_queue',
'entity' => 'Queue',
'name' => 'hash',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Security Hash'),
- 'description' => 'Security hash',
+ 'description' => ts('Security hash'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'phone_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Phone ID'),
- 'description' => 'FK to Phone',
+ 'description' => ts('FK to Phone'),
'default' => 'NULL',
'table_name' => 'civicrm_mailing_event_queue',
'entity' => 'Queue',
'name' => 'event_queue_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event Queue'),
- 'description' => 'FK to EventQueue',
+ 'description' => ts('FK to EventQueue'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_reply',
'entity' => 'Reply',
'name' => 'time_stamp',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Reply Timestamp'),
- 'description' => 'When this reply event occurred.',
+ 'description' => ts('When this reply event occurred.'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_mailing_event_reply',
'name' => 'group_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Subscribe Group'),
- 'description' => 'FK to Group',
+ 'description' => ts('FK to Group'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_subscribe',
'entity' => 'Subscribe',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Subscribe Contact'),
- 'description' => 'FK to Contact',
+ 'description' => ts('FK to Contact'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_subscribe',
'entity' => 'Subscribe',
'name' => 'hash',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Mailing Subscribe Hash'),
- 'description' => 'Security hash',
+ 'description' => ts('Security hash'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'time_stamp',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Mailing Subscribe Timestamp'),
- 'description' => 'When this subscription event occurred.',
+ 'description' => ts('When this subscription event occurred.'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_mailing_event_subscribe',
'name' => 'event_queue_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Event Queue'),
- 'description' => 'FK to EventQueue',
+ 'description' => ts('FK to EventQueue'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_trackable_url_open',
'entity' => 'TrackableURLOpen',
'name' => 'trackable_url_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Trackable Url'),
- 'description' => 'FK to TrackableURL',
+ 'description' => ts('FK to TrackableURL'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_trackable_url_open',
'entity' => 'TrackableURLOpen',
'name' => 'time_stamp',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Timestamp'),
- 'description' => 'When this trackable URL open occurred.',
+ 'description' => ts('When this trackable URL open occurred.'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_mailing_event_trackable_url_open',
'name' => 'event_queue_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Mailing Event Queue'),
- 'description' => 'FK to EventQueue',
+ 'description' => ts('FK to EventQueue'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_unsubscribe',
'entity' => 'Unsubscribe',
'name' => 'org_unsubscribe',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Unsubscribe is for Organization?'),
- 'description' => 'Unsubscribe at org- or group-level',
+ 'description' => ts('Unsubscribe at org- or group-level'),
'required' => TRUE,
'table_name' => 'civicrm_mailing_event_unsubscribe',
'entity' => 'Unsubscribe',
'name' => 'time_stamp',
'type' => CRM_Utils_Type::T_TIMESTAMP,
'title' => ts('Unsubscribe Timestamp'),
- 'description' => 'When this delivery event occurred.',
+ 'description' => ts('When this delivery event occurred.'),
'required' => TRUE,
'default' => 'CURRENT_TIMESTAMP',
'table_name' => 'civicrm_mailing_event_unsubscribe',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership ID'),
- 'description' => 'Membership Id',
+ 'description' => ts('Membership Id'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_membership.id',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_membership.contact_id',
'name' => 'membership_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Type Id'),
- 'description' => 'FK to Membership Type',
+ 'description' => ts('FK to Membership Type'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_membership.membership_type_id',
'name' => 'join_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Member Since'),
- 'description' => 'Beginning of initial membership period (member since...).',
+ 'description' => ts('Beginning of initial membership period (member since...).'),
'import' => TRUE,
'where' => 'civicrm_membership.join_date',
'headerPattern' => '/^join|(j(oin\s)?date)$/i',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Membership Start Date'),
- 'description' => 'Beginning of current uninterrupted membership period.',
+ 'description' => ts('Beginning of current uninterrupted membership period.'),
'import' => TRUE,
'where' => 'civicrm_membership.start_date',
'headerPattern' => '/(member(ship)?.)?start(s)?(.date$)?/i',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Membership Expiration Date'),
- 'description' => 'Current membership period expire date.',
+ 'description' => ts('Current membership period expire date.'),
'import' => TRUE,
'where' => 'civicrm_membership.end_date',
'headerPattern' => '/(member(ship)?.)?end(s)?(.date$)?/i',
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Status Id'),
- 'description' => 'FK to Membership Status',
+ 'description' => ts('FK to Membership Status'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_membership.status_id',
'name' => 'is_override',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Status Override'),
- 'description' => 'Admin users may set a manual status which overrides the calculated status. When this flag is true, automated status update scripts should NOT modify status for the record.',
+ 'description' => ts('Admin users may set a manual status which overrides the calculated status. When this flag is true, automated status update scripts should NOT modify status for the record.'),
'import' => TRUE,
'where' => 'civicrm_membership.is_override',
'headerPattern' => '/override$/i',
'name' => 'status_override_end_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Status Override End Date'),
- 'description' => 'Then end date of membership status override if \'Override until selected date\' override type is selected.',
+ 'description' => ts('Then end date of membership status override if \'Override until selected date\' override type is selected.'),
'import' => TRUE,
'where' => 'civicrm_membership.status_override_end_date',
'headerPattern' => '',
'name' => 'owner_membership_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Primary Member ID'),
- 'description' => 'Optional FK to Parent Membership.',
+ 'description' => ts('Optional FK to Parent Membership.'),
'export' => TRUE,
'where' => 'civicrm_membership.owner_membership_id',
'headerPattern' => '',
'name' => 'max_related',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Max Related'),
- 'description' => 'Maximum number of related memberships (membership_type override).',
+ 'description' => ts('Maximum number of related memberships (membership_type override).'),
'table_name' => 'civicrm_membership',
'entity' => 'Membership',
'bao' => 'CRM_Member_BAO_Membership',
'name' => 'contribution_recur_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Recurring Contribution'),
- 'description' => 'Conditional foreign key to civicrm_contribution_recur id. Each membership in connection with a recurring contribution carries a foreign key to the recurring contribution record. This assumes we can track these processor initiated events.',
+ 'description' => ts('Conditional foreign key to civicrm_contribution_recur id. Each membership in connection with a recurring contribution carries a foreign key to the recurring contribution record. This assumes we can track these processor initiated events.'),
'table_name' => 'civicrm_membership',
'entity' => 'Membership',
'bao' => 'CRM_Member_BAO_Membership',
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign'),
- 'description' => 'The campaign for which this membership is attached.',
+ 'description' => ts('The campaign for which this membership is attached.'),
'import' => TRUE,
'where' => 'civicrm_membership.campaign_id',
'headerPattern' => '',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Block ID'),
- 'description' => 'Membership Id',
+ 'description' => ts('Membership Id'),
'required' => TRUE,
'table_name' => 'civicrm_membership_block',
'entity' => 'MembershipBlock',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Block Entity Table'),
- 'description' => 'Name for Membership Status',
+ 'description' => ts('Name for Membership Status'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_membership_block',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Block Entity ID'),
- 'description' => 'FK to civicrm_contribution_page.id',
+ 'description' => ts('FK to civicrm_contribution_page.id'),
'required' => TRUE,
'table_name' => 'civicrm_membership_block',
'entity' => 'MembershipBlock',
'name' => 'membership_types',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Block Membership Types'),
- 'description' => 'Membership types to be exposed by this block',
+ 'description' => ts('Membership types to be exposed by this block'),
'maxlength' => 1024,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_membership_block',
'name' => 'membership_type_default',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Block Default Type'),
- 'description' => 'Optional foreign key to membership_type',
+ 'description' => ts('Optional foreign key to membership_type'),
'table_name' => 'civicrm_membership_block',
'entity' => 'MembershipBlock',
'bao' => 'CRM_Member_BAO_MembershipBlock',
'name' => 'display_min_fee',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Membership Block Display Minimum Fee'),
- 'description' => 'Display minimum membership fee',
+ 'description' => ts('Display minimum membership fee'),
'default' => '1',
'table_name' => 'civicrm_membership_block',
'entity' => 'MembershipBlock',
'name' => 'is_separate_payment',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Membership Block Is Separate Payment'),
- 'description' => 'Should membership transactions be processed separately',
+ 'description' => ts('Should membership transactions be processed separately'),
'default' => '1',
'table_name' => 'civicrm_membership_block',
'entity' => 'MembershipBlock',
'name' => 'new_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Block New Title'),
- 'description' => 'Title to display at top of block',
+ 'description' => ts('Title to display at top of block'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_membership_block',
'name' => 'new_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Membership Block New Text'),
- 'description' => 'Text to display below title',
+ 'description' => ts('Text to display below title'),
'table_name' => 'civicrm_membership_block',
'entity' => 'MembershipBlock',
'bao' => 'CRM_Member_BAO_MembershipBlock',
'name' => 'renewal_title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Block Renewal Title'),
- 'description' => 'Title for renewal',
+ 'description' => ts('Title for renewal'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_membership_block',
'name' => 'renewal_text',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Membership Block Renewal Text'),
- 'description' => 'Text to display for member renewal',
+ 'description' => ts('Text to display for member renewal'),
'table_name' => 'civicrm_membership_block',
'entity' => 'MembershipBlock',
'bao' => 'CRM_Member_BAO_MembershipBlock',
'name' => 'is_required',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Required'),
- 'description' => 'Is membership sign up optional',
+ 'description' => ts('Is membership sign up optional'),
'default' => '0',
'table_name' => 'civicrm_membership_block',
'entity' => 'MembershipBlock',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Active'),
- 'description' => 'Is this membership_block enabled',
+ 'description' => ts('Is this membership_block enabled'),
'default' => '1',
'table_name' => 'civicrm_membership_block',
'entity' => 'MembershipBlock',
'name' => 'membership_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership ID'),
- 'description' => 'FK to Membership table',
+ 'description' => ts('FK to Membership table'),
'required' => TRUE,
'table_name' => 'civicrm_membership_log',
'entity' => 'MembershipLog',
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Status'),
- 'description' => 'New status assigned to membership by this action. FK to Membership Status',
+ 'description' => ts('New status assigned to membership by this action. FK to Membership Status'),
'required' => TRUE,
'table_name' => 'civicrm_membership_log',
'entity' => 'MembershipLog',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Membership Log Start Date'),
- 'description' => 'New membership period start date',
+ 'description' => ts('New membership period start date'),
'table_name' => 'civicrm_membership_log',
'entity' => 'MembershipLog',
'bao' => 'CRM_Member_BAO_MembershipLog',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Membership Log End Date'),
- 'description' => 'New membership period expiration date.',
+ 'description' => ts('New membership period expiration date.'),
'table_name' => 'civicrm_membership_log',
'entity' => 'MembershipLog',
'bao' => 'CRM_Member_BAO_MembershipLog',
'name' => 'modified_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Log modified By'),
- 'description' => 'FK to Contact ID of person under whose credentials this data modification was made.',
+ 'description' => ts('FK to Contact ID of person under whose credentials this data modification was made.'),
'table_name' => 'civicrm_membership_log',
'entity' => 'MembershipLog',
'bao' => 'CRM_Member_BAO_MembershipLog',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_DATE,
'title' => ts('Membership Change Date'),
- 'description' => 'Date this membership modification action was logged.',
+ 'description' => ts('Date this membership modification action was logged.'),
'table_name' => 'civicrm_membership_log',
'entity' => 'MembershipLog',
'bao' => 'CRM_Member_BAO_MembershipLog',
'name' => 'membership_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Type ID'),
- 'description' => 'FK to Membership Type.',
+ 'description' => ts('FK to Membership Type.'),
'table_name' => 'civicrm_membership_log',
'entity' => 'MembershipLog',
'bao' => 'CRM_Member_BAO_MembershipLog',
'name' => 'max_related',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Maximum Related Memberships'),
- 'description' => 'Maximum number of related memberships.',
+ 'description' => ts('Maximum number of related memberships.'),
'table_name' => 'civicrm_membership_log',
'entity' => 'MembershipLog',
'bao' => 'CRM_Member_BAO_MembershipLog',
'name' => 'membership_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership'),
- 'description' => 'FK to Membership table',
+ 'description' => ts('FK to Membership table'),
'required' => TRUE,
'table_name' => 'civicrm_membership_payment',
'entity' => 'MembershipPayment',
'name' => 'contribution_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution'),
- 'description' => 'FK to contribution table.',
+ 'description' => ts('FK to contribution table.'),
'table_name' => 'civicrm_membership_payment',
'entity' => 'MembershipPayment',
'bao' => 'CRM_Member_BAO_MembershipPayment',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Status ID'),
- 'description' => 'Membership Id',
+ 'description' => ts('Membership Id'),
'required' => TRUE,
'table_name' => 'civicrm_membership_status',
'entity' => 'MembershipStatus',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Status'),
- 'description' => 'Name for Membership Status',
+ 'description' => ts('Name for Membership Status'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Label'),
- 'description' => 'Label for Membership Status',
+ 'description' => ts('Label for Membership Status'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_membership_status',
'name' => 'start_event',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Start Event'),
- 'description' => 'Event when this status starts.',
+ 'description' => ts('Event when this status starts.'),
'maxlength' => 12,
'size' => CRM_Utils_Type::TWELVE,
'table_name' => 'civicrm_membership_status',
'name' => 'start_event_adjust_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Start Event Adjust Unit'),
- 'description' => 'Unit used for adjusting from start_event.',
+ 'description' => ts('Unit used for adjusting from start_event.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_membership_status',
'name' => 'start_event_adjust_interval',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Start Event Adjust Interval'),
- 'description' => 'Status range begins this many units from start_event.',
+ 'description' => ts('Status range begins this many units from start_event.'),
'table_name' => 'civicrm_membership_status',
'entity' => 'MembershipStatus',
'bao' => 'CRM_Member_BAO_MembershipStatus',
'name' => 'end_event',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('End Event'),
- 'description' => 'Event after which this status ends.',
+ 'description' => ts('Event after which this status ends.'),
'maxlength' => 12,
'size' => CRM_Utils_Type::TWELVE,
'table_name' => 'civicrm_membership_status',
'name' => 'end_event_adjust_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('End Event Adjust Unit'),
- 'description' => 'Unit used for adjusting from the ending event.',
+ 'description' => ts('Unit used for adjusting from the ending event.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_membership_status',
'name' => 'end_event_adjust_interval',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('End Event Adjust Interval'),
- 'description' => 'Status range ends this many units from end_event.',
+ 'description' => ts('Status range ends this many units from end_event.'),
'table_name' => 'civicrm_membership_status',
'entity' => 'MembershipStatus',
'bao' => 'CRM_Member_BAO_MembershipStatus',
'name' => 'is_current_member',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Current Membership?'),
- 'description' => 'Does this status aggregate to current members (e.g. New, Renewed, Grace might all be TRUE... while Unrenewed, Lapsed, Inactive would be FALSE).',
+ 'description' => ts('Does this status aggregate to current members (e.g. New, Renewed, Grace might all be TRUE... while Unrenewed, Lapsed, Inactive would be FALSE).'),
'table_name' => 'civicrm_membership_status',
'entity' => 'MembershipStatus',
'bao' => 'CRM_Member_BAO_MembershipStatus',
'name' => 'is_admin',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Administrator Only?'),
- 'description' => 'Is this status for admin/manual assignment only.',
+ 'description' => ts('Is this status for admin/manual assignment only.'),
'table_name' => 'civicrm_membership_status',
'entity' => 'MembershipStatus',
'bao' => 'CRM_Member_BAO_MembershipStatus',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Default Status?'),
- 'description' => 'Assign this status to a membership record if no other status match is found.',
+ 'description' => ts('Assign this status to a membership record if no other status match is found.'),
'table_name' => 'civicrm_membership_status',
'entity' => 'MembershipStatus',
'bao' => 'CRM_Member_BAO_MembershipStatus',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Active'),
- 'description' => 'Is this membership_status enabled.',
+ 'description' => ts('Is this membership_status enabled.'),
'default' => '1',
'table_name' => 'civicrm_membership_status',
'entity' => 'MembershipStatus',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Reserved'),
- 'description' => 'Is this membership_status reserved.',
+ 'description' => ts('Is this membership_status reserved.'),
'default' => '0',
'table_name' => 'civicrm_membership_status',
'entity' => 'MembershipStatus',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Type ID'),
- 'description' => 'Membership Id',
+ 'description' => ts('Membership Id'),
'required' => TRUE,
'table_name' => 'civicrm_membership_type',
'entity' => 'MembershipType',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Type Domain'),
- 'description' => 'Which Domain is this match entry for',
+ 'description' => ts('Which Domain is this match entry for'),
'required' => TRUE,
'table_name' => 'civicrm_membership_type',
'entity' => 'MembershipType',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Type'),
- 'description' => 'Name of Membership Type',
+ 'description' => ts('Name of Membership Type'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Type Description'),
- 'description' => 'Description of Membership Type',
+ 'description' => ts('Description of Membership Type'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_membership_type',
'name' => 'member_of_contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Type Organization'),
- 'description' => 'Owner organization for this membership type. FK to Contact ID',
+ 'description' => ts('Owner organization for this membership type. FK to Contact ID'),
'required' => TRUE,
'table_name' => 'civicrm_membership_type',
'entity' => 'MembershipType',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Financial Type'),
- 'description' => 'If membership is paid by a contribution - what financial type should be used. FK to civicrm_financial_type.id',
+ 'description' => ts('If membership is paid by a contribution - what financial type should be used. FK to civicrm_financial_type.id'),
'required' => TRUE,
'table_name' => 'civicrm_membership_type',
'entity' => 'MembershipType',
'name' => 'minimum_fee',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Membership Type Minimum Fee'),
- 'description' => 'Minimum fee for this membership (0 for free/complimentary memberships).',
+ 'description' => ts('Minimum fee for this membership (0 for free/complimentary memberships).'),
'precision' => [
18,
9
'name' => 'duration_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Type Duration Unit'),
- 'description' => 'Unit in which membership period is expressed.',
+ 'description' => ts('Unit in which membership period is expressed.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_membership_type',
'name' => 'duration_interval',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Type Duration Interval'),
- 'description' => 'Number of duration units in membership period (e.g. 1 year, 12 months).',
+ 'description' => ts('Number of duration units in membership period (e.g. 1 year, 12 months).'),
'table_name' => 'civicrm_membership_type',
'entity' => 'MembershipType',
'bao' => 'CRM_Member_BAO_MembershipType',
'name' => 'period_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Type Plan'),
- 'description' => 'Rolling membership period starts on signup date. Fixed membership periods start on fixed_period_start_day.',
+ 'description' => ts('Rolling membership period starts on signup date. Fixed membership periods start on fixed_period_start_day.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'table_name' => 'civicrm_membership_type',
'name' => 'fixed_period_start_day',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Fixed Period Start Day'),
- 'description' => 'For fixed period memberships, month and day (mmdd) on which subscription/membership will start. Period start is back-dated unless after rollover day.',
+ 'description' => ts('For fixed period memberships, month and day (mmdd) on which subscription/membership will start. Period start is back-dated unless after rollover day.'),
'table_name' => 'civicrm_membership_type',
'entity' => 'MembershipType',
'bao' => 'CRM_Member_BAO_MembershipType',
'name' => 'fixed_period_rollover_day',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Fixed Period Rollover Day'),
- 'description' => 'For fixed period memberships, signups after this day (mmdd) rollover to next period.',
+ 'description' => ts('For fixed period memberships, signups after this day (mmdd) rollover to next period.'),
'table_name' => 'civicrm_membership_type',
'entity' => 'MembershipType',
'bao' => 'CRM_Member_BAO_MembershipType',
'name' => 'relationship_type_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Type Relationship'),
- 'description' => 'FK to Relationship Type ID',
+ 'description' => ts('FK to Relationship Type ID'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_membership_type',
'name' => 'max_related',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Max Related Members for Type'),
- 'description' => 'Maximum number of related memberships.',
+ 'description' => ts('Maximum number of related memberships.'),
'table_name' => 'civicrm_membership_type',
'entity' => 'MembershipType',
'bao' => 'CRM_Member_BAO_MembershipType',
'name' => 'receipt_text_signup',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Type Receipt Text'),
- 'description' => 'Receipt Text for membership signup',
+ 'description' => ts('Receipt Text for membership signup'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_membership_type',
'name' => 'receipt_text_renewal',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Membership Type Renewal Text'),
- 'description' => 'Receipt Text for membership renewal',
+ 'description' => ts('Receipt Text for membership renewal'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_membership_type',
'name' => 'auto_renew',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Auto Renew'),
- 'description' => '0 = No auto-renew option; 1 = Give option, but not required; 2 = Auto-renew required;',
+ 'description' => ts('0 = No auto-renew option; 1 = Give option, but not required; 2 = Auto-renew required;'),
'default' => '0',
'table_name' => 'civicrm_membership_type',
'entity' => 'MembershipType',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Active'),
- 'description' => 'Is this membership_type enabled',
+ 'description' => ts('Is this membership_type enabled'),
'default' => '1',
'table_name' => 'civicrm_membership_type',
'entity' => 'MembershipType',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Personal Campaign Page ID'),
- 'description' => 'Personal Campaign Page ID',
+ 'description' => ts('Personal Campaign Page ID'),
'required' => TRUE,
'table_name' => 'civicrm_pcp',
'entity' => 'PCP',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'FK to Contact ID',
+ 'description' => ts('FK to Contact ID'),
'required' => TRUE,
'table_name' => 'civicrm_pcp',
'entity' => 'PCP',
'name' => 'page_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution Page'),
- 'description' => 'The Contribution or Event Page which triggered this pcp',
+ 'description' => ts('The Contribution or Event Page which triggered this pcp'),
'required' => TRUE,
'table_name' => 'civicrm_pcp',
'entity' => 'PCP',
'name' => 'page_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('PCP Page Type'),
- 'description' => 'The type of PCP this is: contribute or event',
+ 'description' => ts('The type of PCP this is: contribute or event'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'default' => 'contribute',
'name' => 'pcp_block_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('PCP Block'),
- 'description' => 'The pcp block that this pcp page was created from',
+ 'description' => ts('The pcp block that this pcp page was created from'),
'required' => TRUE,
'table_name' => 'civicrm_pcp',
'entity' => 'PCP',
'name' => 'goal_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Goal Amount'),
- 'description' => 'Goal amount of this Personal Campaign Page.',
+ 'description' => ts('Goal amount of this Personal Campaign Page.'),
'precision' => [
20,
2
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'default' => 'NULL',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Enabled?'),
- 'description' => 'Is Personal Campaign Page enabled/active?',
+ 'description' => ts('Is Personal Campaign Page enabled/active?'),
'default' => '0',
'table_name' => 'civicrm_pcp',
'entity' => 'PCP',
'name' => 'is_notify',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Notify Owner?'),
- 'description' => 'Notify owner via email when someone donates to page?',
+ 'description' => ts('Notify owner via email when someone donates to page?'),
'default' => '0',
'table_name' => 'civicrm_pcp',
'entity' => 'PCP',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('PCP Block ID'),
- 'description' => 'PCP block Id',
+ 'description' => ts('PCP block Id'),
'required' => TRUE,
'table_name' => 'civicrm_pcp_block',
'entity' => 'PCPBlock',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity'),
- 'description' => 'FK to civicrm_contribution_page.id OR civicrm_event.id',
+ 'description' => ts('FK to civicrm_contribution_page.id OR civicrm_event.id'),
'required' => TRUE,
'table_name' => 'civicrm_pcp_block',
'entity' => 'PCPBlock',
'name' => 'target_entity_type',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Target Entity'),
- 'description' => 'The type of entity that this pcp targets',
+ 'description' => ts('The type of entity that this pcp targets'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'target_entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Target Entity ID'),
- 'description' => 'The entity that this pcp targets',
+ 'description' => ts('The entity that this pcp targets'),
'required' => TRUE,
'table_name' => 'civicrm_pcp_block',
'entity' => 'PCPBlock',
'name' => 'supporter_profile_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Supporter Profile'),
- 'description' => 'FK to civicrm_uf_group.id. Does Personal Campaign Page require manual activation by administrator? (is inactive by default after setup)?',
+ 'description' => ts('FK to civicrm_uf_group.id. Does Personal Campaign Page require manual activation by administrator? (is inactive by default after setup)?'),
'default' => 'NULL',
'table_name' => 'civicrm_pcp_block',
'entity' => 'PCPBlock',
'name' => 'owner_notify_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Owner Notification'),
- 'description' => 'FK to civicrm_option_group with name = PCP owner notifications',
+ 'description' => ts('FK to civicrm_option_group with name = PCP owner notifications'),
'default' => '0',
'table_name' => 'civicrm_pcp_block',
'entity' => 'PCPBlock',
'name' => 'is_approval_needed',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Approval Required?'),
- 'description' => 'Does Personal Campaign Page require manual activation by administrator? (is inactive by default after setup)?',
+ 'description' => ts('Does Personal Campaign Page require manual activation by administrator? (is inactive by default after setup)?'),
'default' => 'NULL',
'table_name' => 'civicrm_pcp_block',
'entity' => 'PCPBlock',
'name' => 'is_tellfriend_enabled',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Tell a Friend Enabled?'),
- 'description' => 'Does Personal Campaign Page allow using tell a friend?',
+ 'description' => ts('Does Personal Campaign Page allow using tell a friend?'),
'default' => 'NULL',
'table_name' => 'civicrm_pcp_block',
'entity' => 'PCPBlock',
'name' => 'tellfriend_limit',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Tell A Friend Limit'),
- 'description' => 'Maximum recipient fields allowed in tell a friend',
+ 'description' => ts('Maximum recipient fields allowed in tell a friend'),
'default' => 'NULL',
'table_name' => 'civicrm_pcp_block',
'entity' => 'PCPBlock',
'name' => 'link_text',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Link Text'),
- 'description' => 'Link text for PCP.',
+ 'description' => ts('Link text for PCP.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'default' => 'NULL',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Enabled?'),
- 'description' => 'Is Personal Campaign Page Block enabled/active?',
+ 'description' => ts('Is Personal Campaign Page Block enabled/active?'),
'default' => '1',
'table_name' => 'civicrm_pcp_block',
'entity' => 'PCPBlock',
'name' => 'notify_email',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Notification Email'),
- 'description' => 'If set, notification is automatically emailed to this email-address on create/update Personal Campaign Page',
+ 'description' => ts('If set, notification is automatically emailed to this email-address on create/update Personal Campaign Page'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'default' => 'NULL',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Pledge ID'),
- 'description' => 'Pledge ID',
+ 'description' => ts('Pledge ID'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_pledge.id',
'name' => 'contact_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contact ID'),
- 'description' => 'Foreign key to civicrm_contact.id .',
+ 'description' => ts('Foreign key to civicrm_contact.id .'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_pledge.contact_id',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Type'),
- 'description' => 'FK to Financial Type',
+ 'description' => ts('FK to Financial Type'),
'table_name' => 'civicrm_pledge',
'entity' => 'Pledge',
'bao' => 'CRM_Pledge_BAO_Pledge',
'name' => 'contribution_page_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Pledge Contribution Page'),
- 'description' => 'The Contribution Page which triggered this contribution',
+ 'description' => ts('The Contribution Page which triggered this contribution'),
'table_name' => 'civicrm_pledge',
'entity' => 'Pledge',
'bao' => 'CRM_Pledge_BAO_Pledge',
'name' => 'amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Total Pledged'),
- 'description' => 'Total pledged amount.',
+ 'description' => ts('Total pledged amount.'),
'required' => TRUE,
'precision' => [
20,
'name' => 'original_installment_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Original Installment Amount'),
- 'description' => 'Original amount for each of the installments.',
+ 'description' => ts('Original amount for each of the installments.'),
'required' => TRUE,
'precision' => [
20,
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Pledge Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'default' => 'NULL',
'name' => 'frequency_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Pledge Frequency Unit'),
- 'description' => 'Time units for recurrence of pledge payments.',
+ 'description' => ts('Time units for recurrence of pledge payments.'),
'maxlength' => 8,
'size' => CRM_Utils_Type::EIGHT,
'default' => 'month',
'name' => 'frequency_interval',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Pledge Frequency Interval'),
- 'description' => 'Number of time units for recurrence of pledge payments.',
+ 'description' => ts('Number of time units for recurrence of pledge payments.'),
'required' => TRUE,
'default' => '1',
'table_name' => 'civicrm_pledge',
'name' => 'frequency_day',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Pledge day'),
- 'description' => 'Day in the period when the pledge payment is due e.g. 1st of month, 15th etc. Use this to set the scheduled dates for pledge payments.',
+ 'description' => ts('Day in the period when the pledge payment is due e.g. 1st of month, 15th etc. Use this to set the scheduled dates for pledge payments.'),
'required' => TRUE,
'default' => '3',
'table_name' => 'civicrm_pledge',
'name' => 'installments',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Pledge Number of Installments'),
- 'description' => 'Total number of payments to be made.',
+ 'description' => ts('Total number of payments to be made.'),
'export' => TRUE,
'where' => 'civicrm_pledge.installments',
'headerPattern' => '',
'name' => 'start_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Pledge Start Date'),
- 'description' => 'The date the first scheduled pledge occurs.',
+ 'description' => ts('The date the first scheduled pledge occurs.'),
'required' => TRUE,
'table_name' => 'civicrm_pledge',
'entity' => 'Pledge',
'name' => 'create_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Pledge Made'),
- 'description' => 'When this pledge record was created.',
+ 'description' => ts('When this pledge record was created.'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_pledge.create_date',
'name' => 'acknowledge_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Pledge Acknowledged'),
- 'description' => 'When a pledge acknowledgement message was sent to the contributor.',
+ 'description' => ts('When a pledge acknowledgement message was sent to the contributor.'),
'table_name' => 'civicrm_pledge',
'entity' => 'Pledge',
'bao' => 'CRM_Pledge_BAO_Pledge',
'name' => 'modified_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Pledge Modified Date'),
- 'description' => 'Last updated date for this pledge record.',
+ 'description' => ts('Last updated date for this pledge record.'),
'table_name' => 'civicrm_pledge',
'entity' => 'Pledge',
'bao' => 'CRM_Pledge_BAO_Pledge',
'name' => 'cancel_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Pledge Cancelled Date'),
- 'description' => 'Date this pledge was cancelled by contributor.',
+ 'description' => ts('Date this pledge was cancelled by contributor.'),
'table_name' => 'civicrm_pledge',
'entity' => 'Pledge',
'bao' => 'CRM_Pledge_BAO_Pledge',
'name' => 'end_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Pledge End Date'),
- 'description' => 'Date this pledge finished successfully (total pledge payments equal to or greater than pledged amount).',
+ 'description' => ts('Date this pledge finished successfully (total pledge payments equal to or greater than pledged amount).'),
'table_name' => 'civicrm_pledge',
'entity' => 'Pledge',
'bao' => 'CRM_Pledge_BAO_Pledge',
'name' => 'max_reminders',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Maximum Number of Reminders'),
- 'description' => 'The maximum number of payment reminders to send for any given payment.',
+ 'description' => ts('The maximum number of payment reminders to send for any given payment.'),
'default' => '1',
'table_name' => 'civicrm_pledge',
'entity' => 'Pledge',
'name' => 'initial_reminder_day',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Initial Reminder Day'),
- 'description' => 'Send initial reminder this many days prior to the payment due date.',
+ 'description' => ts('Send initial reminder this many days prior to the payment due date.'),
'default' => '5',
'table_name' => 'civicrm_pledge',
'entity' => 'Pledge',
'name' => 'additional_reminder_day',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Additional Reminder Days'),
- 'description' => 'Send additional reminder this many days after last one sent, up to maximum number of reminders.',
+ 'description' => ts('Send additional reminder this many days after last one sent, up to maximum number of reminders.'),
'default' => '5',
'table_name' => 'civicrm_pledge',
'entity' => 'Pledge',
'name' => 'status_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Pledge Status Id'),
- 'description' => 'Implicit foreign key to civicrm_option_values in the pledge_status option group.',
+ 'description' => ts('Implicit foreign key to civicrm_option_values in the pledge_status option group.'),
'import' => TRUE,
'where' => 'civicrm_pledge.status_id',
'headerPattern' => '',
'name' => 'campaign_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Campaign'),
- 'description' => 'The campaign for which this pledge has been initiated.',
+ 'description' => ts('The campaign for which this pledge has been initiated.'),
'import' => TRUE,
'where' => 'civicrm_pledge.campaign_id',
'headerPattern' => '',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Pledge Block ID'),
- 'description' => 'Pledge ID',
+ 'description' => ts('Pledge ID'),
'required' => TRUE,
'table_name' => 'civicrm_pledge_block',
'entity' => 'PledgeBlock',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'physical tablename for entity being joined to pledge, e.g. civicrm_contact',
+ 'description' => ts('physical tablename for entity being joined to pledge, e.g. civicrm_contact'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_pledge_block',
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity Id'),
- 'description' => 'FK to entity table specified in entity_table column.',
+ 'description' => ts('FK to entity table specified in entity_table column.'),
'required' => TRUE,
'table_name' => 'civicrm_pledge_block',
'entity' => 'PledgeBlock',
'name' => 'pledge_frequency_unit',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Pledge Frequency Unit'),
- 'description' => 'Delimited list of supported frequency units',
+ 'description' => ts('Delimited list of supported frequency units'),
'maxlength' => 128,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_pledge_block',
'name' => 'is_pledge_interval',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Expose Frequency Interval?'),
- 'description' => 'Is frequency interval exposed on the contribution form.',
+ 'description' => ts('Is frequency interval exposed on the contribution form.'),
'default' => '0',
'table_name' => 'civicrm_pledge_block',
'entity' => 'PledgeBlock',
'name' => 'max_reminders',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Maximum Number of Reminders'),
- 'description' => 'The maximum number of payment reminders to send for any given payment.',
+ 'description' => ts('The maximum number of payment reminders to send for any given payment.'),
'default' => '1',
'table_name' => 'civicrm_pledge_block',
'entity' => 'PledgeBlock',
'name' => 'initial_reminder_day',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Initial Reminder Day'),
- 'description' => 'Send initial reminder this many days prior to the payment due date.',
+ 'description' => ts('Send initial reminder this many days prior to the payment due date.'),
'default' => '5',
'table_name' => 'civicrm_pledge_block',
'entity' => 'PledgeBlock',
'name' => 'additional_reminder_day',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Additional Reminder Days'),
- 'description' => 'Send additional reminder this many days after last one sent, up to maximum number of reminders.',
+ 'description' => ts('Send additional reminder this many days after last one sent, up to maximum number of reminders.'),
'default' => '5',
'table_name' => 'civicrm_pledge_block',
'entity' => 'PledgeBlock',
'name' => 'pledge_start_date',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Pledge Start Date'),
- 'description' => 'The date the first scheduled pledge occurs.',
+ 'description' => ts('The date the first scheduled pledge occurs.'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_pledge_block',
'name' => 'is_pledge_start_date_visible',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Show Recurring Donation Start Date?'),
- 'description' => 'If true - recurring start date is shown.',
+ 'description' => ts('If true - recurring start date is shown.'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_pledge_block',
'name' => 'is_pledge_start_date_editable',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Allow Edits to Recurring Donation Start Date?'),
- 'description' => 'If true - recurring start date is editable.',
+ 'description' => ts('If true - recurring start date is editable.'),
'required' => TRUE,
'default' => '0',
'table_name' => 'civicrm_pledge_block',
'name' => 'pledge_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Pledge'),
- 'description' => 'FK to Pledge table',
+ 'description' => ts('FK to Pledge table'),
'required' => TRUE,
'table_name' => 'civicrm_pledge_payment',
'entity' => 'PledgePayment',
'name' => 'contribution_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Contribution'),
- 'description' => 'FK to contribution table.',
+ 'description' => ts('FK to contribution table.'),
'table_name' => 'civicrm_pledge_payment',
'entity' => 'PledgePayment',
'bao' => 'CRM_Pledge_BAO_PledgePayment',
'name' => 'scheduled_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Scheduled Amount'),
- 'description' => 'Pledged amount for this payment (the actual contribution amount might be different).',
+ 'description' => ts('Pledged amount for this payment (the actual contribution amount might be different).'),
'required' => TRUE,
'precision' => [
20,
'name' => 'actual_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Actual Amount'),
- 'description' => 'Actual amount that is paid as the Pledged installment amount.',
+ 'description' => ts('Actual amount that is paid as the Pledged installment amount.'),
'precision' => [
20,
2
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Currency'),
- 'description' => '3 character string, value from config setting or input via user.',
+ 'description' => ts('3 character string, value from config setting or input via user.'),
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'default' => 'NULL',
'name' => 'scheduled_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Scheduled Date'),
- 'description' => 'The date the pledge payment is supposed to happen.',
+ 'description' => ts('The date the pledge payment is supposed to happen.'),
'required' => TRUE,
'import' => TRUE,
'where' => 'civicrm_pledge_payment.scheduled_date',
'name' => 'reminder_date',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Last Reminder'),
- 'description' => 'The date that the most recent payment reminder was sent.',
+ 'description' => ts('The date that the most recent payment reminder was sent.'),
'import' => TRUE,
'where' => 'civicrm_pledge_payment.reminder_date',
'headerPattern' => '',
'name' => 'reminder_count',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Reminders Sent'),
- 'description' => 'The number of payment reminders sent.',
+ 'description' => ts('The number of payment reminders sent.'),
'import' => TRUE,
'where' => 'civicrm_pledge_payment.reminder_count',
'headerPattern' => '',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Line Item ID'),
- 'description' => 'Line Item',
+ 'description' => ts('Line Item'),
'required' => TRUE,
'table_name' => 'civicrm_line_item',
'entity' => 'LineItem',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Line Item Entity Type'),
- 'description' => 'table which has the transaction',
+ 'description' => ts('table which has the transaction'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Line Item Entity'),
- 'description' => 'entry in table',
+ 'description' => ts('entry in table'),
'required' => TRUE,
'table_name' => 'civicrm_line_item',
'entity' => 'LineItem',
'name' => 'contribution_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Line Item Contribution'),
- 'description' => 'FK to civicrm_contribution',
+ 'description' => ts('FK to civicrm_contribution'),
'table_name' => 'civicrm_line_item',
'entity' => 'LineItem',
'bao' => 'CRM_Price_BAO_LineItem',
'name' => 'price_field_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Line Item Price Field'),
- 'description' => 'FK to civicrm_price_field',
+ 'description' => ts('FK to civicrm_price_field'),
'table_name' => 'civicrm_line_item',
'entity' => 'LineItem',
'bao' => 'CRM_Price_BAO_LineItem',
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Line Item Label'),
- 'description' => 'descriptive label for item - from price_field_value.label',
+ 'description' => ts('descriptive label for item - from price_field_value.label'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'default' => 'NULL',
'name' => 'qty',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Line Item Quantity'),
- 'description' => 'How many items ordered',
+ 'description' => ts('How many items ordered'),
'required' => TRUE,
'precision' => [
20,
'name' => 'unit_price',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Unit Price'),
- 'description' => 'price of each item',
+ 'description' => ts('price of each item'),
'required' => TRUE,
'precision' => [
20,
'name' => 'line_total',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Line Item Total'),
- 'description' => 'qty * unit_price',
+ 'description' => ts('qty * unit_price'),
'required' => TRUE,
'precision' => [
20,
'name' => 'participant_count',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Line Item Participant Count'),
- 'description' => 'Participant count for field',
+ 'description' => ts('Participant count for field'),
'default' => 'NULL',
'table_name' => 'civicrm_line_item',
'entity' => 'LineItem',
'name' => 'price_field_value_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Line Item Option'),
- 'description' => 'FK to civicrm_price_field_value',
+ 'description' => ts('FK to civicrm_price_field_value'),
'default' => 'NULL',
'table_name' => 'civicrm_line_item',
'entity' => 'LineItem',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'FK to Financial Type.',
+ 'description' => ts('FK to Financial Type.'),
'default' => 'NULL',
'table_name' => 'civicrm_line_item',
'entity' => 'LineItem',
'name' => 'non_deductible_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Non-deductible Amount'),
- 'description' => 'Portion of total amount which is NOT tax deductible.',
+ 'description' => ts('Portion of total amount which is NOT tax deductible.'),
'required' => TRUE,
'precision' => [
20,
'name' => 'tax_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Tax Amount'),
- 'description' => 'tax of each item',
+ 'description' => ts('tax of each item'),
'precision' => [
20,
2
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Field ID'),
- 'description' => 'Price Field',
+ 'description' => ts('Price Field'),
'required' => TRUE,
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'price_set_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Set'),
- 'description' => 'FK to civicrm_price_set',
+ 'description' => ts('FK to civicrm_price_set'),
'required' => TRUE,
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Variable name/programmatic handle for this field.',
+ 'description' => ts('Variable name/programmatic handle for this field.'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Label'),
- 'description' => 'Text for form field label (also friendly name for administering this field).',
+ 'description' => ts('Text for form field label (also friendly name for administering this field).'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'is_enter_qty',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Price Field Quantity Required?'),
- 'description' => 'Enter a quantity for this field?',
+ 'description' => ts('Enter a quantity for this field?'),
'default' => '0',
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'help_pre',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Price Field Pre Text'),
- 'description' => 'Description and/or help text to display before this field.',
+ 'description' => ts('Description and/or help text to display before this field.'),
'rows' => 4,
'cols' => 80,
'table_name' => 'civicrm_price_field',
'name' => 'help_post',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Price Field Post Text'),
- 'description' => 'Description and/or help text to display after this field.',
+ 'description' => ts('Description and/or help text to display after this field.'),
'rows' => 4,
'cols' => 80,
'table_name' => 'civicrm_price_field',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Order in which the fields should appear',
+ 'description' => ts('Order in which the fields should appear'),
'default' => '1',
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'is_display_amounts',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Price Field Show Amounts?'),
- 'description' => 'Should the price be displayed next to the label for each option?',
+ 'description' => ts('Should the price be displayed next to the label for each option?'),
'default' => '1',
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'options_per_line',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Field Options per Row'),
- 'description' => 'number of options per line for checkbox and radio',
+ 'description' => ts('number of options per line for checkbox and radio'),
'default' => '1',
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Price Field Is Active?'),
- 'description' => 'Is this price field active',
+ 'description' => ts('Is this price field active'),
'default' => '1',
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'is_required',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Price Field is Required?'),
- 'description' => 'Is this price field required (value must be > 1)',
+ 'description' => ts('Is this price field required (value must be > 1)'),
'default' => '1',
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'active_on',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Price Field Start Date'),
- 'description' => 'If non-zero, do not show this field before the date specified',
+ 'description' => ts('If non-zero, do not show this field before the date specified'),
'default' => 'NULL',
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'expire_on',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Price Field End Date'),
- 'description' => 'If non-zero, do not show this field after the date specified',
+ 'description' => ts('If non-zero, do not show this field after the date specified'),
'default' => 'NULL',
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'javascript',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Price Field Javascript'),
- 'description' => 'Optional scripting attributes for field',
+ 'description' => ts('Optional scripting attributes for field'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_price_field',
'name' => 'visibility_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Field Visibility'),
- 'description' => 'Implicit FK to civicrm_option_group with name = \'visibility\'',
+ 'description' => ts('Implicit FK to civicrm_option_group with name = \'visibility\''),
'default' => '1',
'table_name' => 'civicrm_price_field',
'entity' => 'PriceField',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Field Value ID'),
- 'description' => 'Price Field Value',
+ 'description' => ts('Price Field Value'),
'required' => TRUE,
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'price_field_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Field'),
- 'description' => 'FK to civicrm_price_field',
+ 'description' => ts('FK to civicrm_price_field'),
'required' => TRUE,
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Price field option name',
+ 'description' => ts('Price field option name'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_price_field_value',
'name' => 'label',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Label'),
- 'description' => 'Price field option label',
+ 'description' => ts('Price field option label'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_price_field_value',
'name' => 'description',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Description'),
- 'description' => '>Price field option description.',
+ 'description' => ts('>Price field option description.'),
'rows' => 2,
'cols' => 60,
'default' => 'NULL',
'name' => 'help_pre',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Help Pre'),
- 'description' => 'Price field option pre help text.',
+ 'description' => ts('Price field option pre help text.'),
'rows' => 2,
'cols' => 60,
'default' => 'NULL',
'name' => 'help_post',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Help Post'),
- 'description' => 'Price field option post field help.',
+ 'description' => ts('Price field option post field help.'),
'rows' => 2,
'cols' => 60,
'default' => 'NULL',
'name' => 'amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Amount'),
- 'description' => 'Price field option amount',
+ 'description' => ts('Price field option amount'),
'required' => TRUE,
'precision' => [
18,
'name' => 'count',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Count'),
- 'description' => 'Number of participants per field option',
+ 'description' => ts('Number of participants per field option'),
'default' => 'NULL',
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'max_value',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Max Value'),
- 'description' => 'Max number of participants per field options',
+ 'description' => ts('Max number of participants per field options'),
'default' => 'NULL',
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Order'),
- 'description' => 'Order in which the field options should appear',
+ 'description' => ts('Order in which the field options should appear'),
'default' => '1',
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'membership_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Type'),
- 'description' => 'FK to Membership Type',
+ 'description' => ts('FK to Membership Type'),
'default' => 'NULL',
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'membership_num_terms',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Membership Num Terms'),
- 'description' => 'Number of terms for this membership',
+ 'description' => ts('Number of terms for this membership'),
'default' => 'NULL',
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'is_default',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Default Price Field Option?'),
- 'description' => 'Is this default price field option',
+ 'description' => ts('Is this default price field option'),
'default' => '0',
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Price Field Value is Active'),
- 'description' => 'Is this price field value active',
+ 'description' => ts('Is this price field value active'),
'default' => '1',
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'FK to Financial Type.',
+ 'description' => ts('FK to Financial Type.'),
'default' => 'NULL',
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'non_deductible_amount',
'type' => CRM_Utils_Type::T_MONEY,
'title' => ts('Non-deductible Amount'),
- 'description' => 'Portion of total amount which is NOT tax deductible.',
+ 'description' => ts('Portion of total amount which is NOT tax deductible.'),
'required' => TRUE,
'precision' => [
20,
'name' => 'visibility_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Field Option Visibility'),
- 'description' => 'Implicit FK to civicrm_option_group with name = \'visibility\'',
+ 'description' => ts('Implicit FK to civicrm_option_group with name = \'visibility\''),
'default' => '1',
'table_name' => 'civicrm_price_field_value',
'entity' => 'PriceFieldValue',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Set ID'),
- 'description' => 'Price Set',
+ 'description' => ts('Price Set'),
'required' => TRUE,
'table_name' => 'civicrm_price_set',
'entity' => 'PriceSet',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Set Domain'),
- 'description' => 'Which Domain is this price-set for',
+ 'description' => ts('Which Domain is this price-set for'),
'table_name' => 'civicrm_price_set',
'entity' => 'PriceSet',
'bao' => 'CRM_Price_BAO_PriceSet',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Name'),
- 'description' => 'Variable name/programmatic handle for this set of price fields.',
+ 'description' => ts('Variable name/programmatic handle for this set of price fields.'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Price Set Title'),
- 'description' => 'Displayed title for the Price Set.',
+ 'description' => ts('Displayed title for the Price Set.'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Price Set Is Active?'),
- 'description' => 'Is this price set active',
+ 'description' => ts('Is this price set active'),
'default' => '1',
'table_name' => 'civicrm_price_set',
'entity' => 'PriceSet',
'name' => 'help_pre',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Price Set Pre Help'),
- 'description' => 'Description and/or help text to display before fields in form.',
+ 'description' => ts('Description and/or help text to display before fields in form.'),
'rows' => 4,
'cols' => 80,
'table_name' => 'civicrm_price_set',
'name' => 'help_post',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Price Set Post Help'),
- 'description' => 'Description and/or help text to display after fields in form.',
+ 'description' => ts('Description and/or help text to display after fields in form.'),
'rows' => 4,
'cols' => 80,
'table_name' => 'civicrm_price_set',
'name' => 'javascript',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Price Set Javascript'),
- 'description' => 'Optional Javascript script function(s) included on the form with this price_set. Can be used for conditional',
+ 'description' => ts('Optional Javascript script function(s) included on the form with this price_set. Can be used for conditional'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_price_set',
'name' => 'extends',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Price Set Extends'),
- 'description' => 'What components are using this price set?',
+ 'description' => ts('What components are using this price set?'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type'),
- 'description' => 'FK to Financial Type(for membership price sets only).',
+ 'description' => ts('FK to Financial Type(for membership price sets only).'),
'default' => 'NULL',
'table_name' => 'civicrm_price_set',
'entity' => 'PriceSet',
'name' => 'is_quick_config',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Is Price Set Quick Config?'),
- 'description' => 'Is set if edited on Contribution or Event Page rather than through Manage Price Sets',
+ 'description' => ts('Is set if edited on Contribution or Event Page rather than through Manage Price Sets'),
'default' => '0',
'table_name' => 'civicrm_price_set',
'entity' => 'PriceSet',
'name' => 'is_reserved',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Price Set Is Reserved'),
- 'description' => 'Is this a predefined system price set (i.e. it can not be deleted, edited)?',
+ 'description' => ts('Is this a predefined system price set (i.e. it can not be deleted, edited)?'),
'default' => '0',
'table_name' => 'civicrm_price_set',
'entity' => 'PriceSet',
'name' => 'min_amount',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Minimum Amount'),
- 'description' => 'Minimum Amount required for this set.',
+ 'description' => ts('Minimum Amount required for this set.'),
'default' => '0',
'table_name' => 'civicrm_price_set',
'entity' => 'PriceSet',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Set Entity ID'),
- 'description' => 'Price Set Entity',
+ 'description' => ts('Price Set Entity'),
'required' => TRUE,
'table_name' => 'civicrm_price_set_entity',
'entity' => 'PriceSetEntity',
'name' => 'entity_table',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Entity Table'),
- 'description' => 'Table which uses this price set',
+ 'description' => ts('Table which uses this price set'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'entity_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Entity IF'),
- 'description' => 'Item in table',
+ 'description' => ts('Item in table'),
'required' => TRUE,
'table_name' => 'civicrm_price_set_entity',
'entity' => 'PriceSetEntity',
'name' => 'price_set_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Price Set'),
- 'description' => 'price set being used',
+ 'description' => ts('price set being used'),
'required' => TRUE,
'table_name' => 'civicrm_price_set_entity',
'entity' => 'PriceSetEntity',
'name' => 'queue_name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Queue Name'),
- 'description' => 'Name of the queue which includes this item',
+ 'description' => ts('Name of the queue which includes this item'),
'required' => TRUE,
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'name' => 'submit_time',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Submit Time'),
- 'description' => 'date on which this item was submitted to the queue',
+ 'description' => ts('date on which this item was submitted to the queue'),
'required' => TRUE,
'table_name' => 'civicrm_queue_item',
'entity' => 'QueueItem',
'name' => 'release_time',
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
'title' => ts('Release Time'),
- 'description' => 'date on which this job becomes available; null if ASAP',
+ 'description' => ts('date on which this job becomes available; null if ASAP'),
'table_name' => 'civicrm_queue_item',
'entity' => 'QueueItem',
'bao' => 'CRM_Queue_BAO_QueueItem',
'name' => 'data',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Queue item data'),
- 'description' => 'Serialized queue data',
+ 'description' => ts('Serialized queue data'),
'table_name' => 'civicrm_queue_item',
'entity' => 'QueueItem',
'bao' => 'CRM_Queue_BAO_QueueItem',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Report Instance ID'),
- 'description' => 'Report Instance ID',
+ 'description' => ts('Report Instance ID'),
'required' => TRUE,
'table_name' => 'civicrm_report_instance',
'entity' => 'ReportInstance',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Report Instance Domain ID'),
- 'description' => 'Which Domain is this instance for',
+ 'description' => ts('Which Domain is this instance for'),
'required' => TRUE,
'table_name' => 'civicrm_report_instance',
'entity' => 'ReportInstance',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Report Instance Title'),
- 'description' => 'Report Instance Title.',
+ 'description' => ts('Report Instance Title.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_report_instance',
'name' => 'report_id',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Report template ID'),
- 'description' => 'FK to civicrm_option_value for the report template',
+ 'description' => ts('FK to civicrm_option_value for the report template'),
'required' => TRUE,
'maxlength' => 512,
'size' => CRM_Utils_Type::HUGE,
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Report instance Name'),
- 'description' => 'when combined with report_id/template uniquely identifies the instance',
+ 'description' => ts('when combined with report_id/template uniquely identifies the instance'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_report_instance',
'name' => 'args',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Report Instance Arguments'),
- 'description' => 'arguments that are passed in the url when invoking the instance',
+ 'description' => ts('arguments that are passed in the url when invoking the instance'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_report_instance',
'name' => 'description',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Report Instance description'),
- 'description' => 'Report Instance description.',
+ 'description' => ts('Report Instance description.'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_report_instance',
'name' => 'permission',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Report Instance Permissions'),
- 'description' => 'permission required to be able to run this instance',
+ 'description' => ts('permission required to be able to run this instance'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_report_instance',
'name' => 'grouprole',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Report Instance Assigned to Roles'),
- 'description' => 'role required to be able to run this instance',
+ 'description' => ts('role required to be able to run this instance'),
'maxlength' => 1024,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_report_instance',
'name' => 'form_values',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Submitted Form Values'),
- 'description' => 'Submitted form values for this report',
+ 'description' => ts('Submitted form values for this report'),
'import' => TRUE,
'where' => 'civicrm_report_instance.form_values',
'headerPattern' => '',
'name' => 'is_active',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Report Instance is Active'),
- 'description' => 'Is this entry active?',
+ 'description' => ts('Is this entry active?'),
'table_name' => 'civicrm_report_instance',
'entity' => 'ReportInstance',
'bao' => 'CRM_Report_BAO_ReportInstance',
'name' => 'created_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Report Instance Created By'),
- 'description' => 'FK to contact table.',
+ 'description' => ts('FK to contact table.'),
'table_name' => 'civicrm_report_instance',
'entity' => 'ReportInstance',
'bao' => 'CRM_Report_BAO_ReportInstance',
'name' => 'owner_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Report Instance Owned By'),
- 'description' => 'FK to contact table.',
+ 'description' => ts('FK to contact table.'),
'table_name' => 'civicrm_report_instance',
'entity' => 'ReportInstance',
'bao' => 'CRM_Report_BAO_ReportInstance',
'name' => 'email_subject',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Report Instance email Subject'),
- 'description' => 'Subject of email',
+ 'description' => ts('Subject of email'),
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_report_instance',
'name' => 'email_to',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Email Report Instance To'),
- 'description' => 'comma-separated list of email addresses to send the report to',
+ 'description' => ts('comma-separated list of email addresses to send the report to'),
'table_name' => 'civicrm_report_instance',
'entity' => 'ReportInstance',
'bao' => 'CRM_Report_BAO_ReportInstance',
'name' => 'email_cc',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('cc Email Report Instance To'),
- 'description' => 'comma-separated list of email addresses to send the report to',
+ 'description' => ts('comma-separated list of email addresses to send the report to'),
'table_name' => 'civicrm_report_instance',
'entity' => 'ReportInstance',
'bao' => 'CRM_Report_BAO_ReportInstance',
'name' => 'header',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Report Instance Header'),
- 'description' => 'comma-separated list of email addresses to send the report to',
+ 'description' => ts('comma-separated list of email addresses to send the report to'),
'rows' => 4,
'cols' => 60,
'table_name' => 'civicrm_report_instance',
'name' => 'footer',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('Report Instance Footer'),
- 'description' => 'comma-separated list of email addresses to send the report to',
+ 'description' => ts('comma-separated list of email addresses to send the report to'),
'rows' => 4,
'cols' => 60,
'table_name' => 'civicrm_report_instance',
'name' => 'navigation_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Navigation ID'),
- 'description' => 'FK to navigation ID',
+ 'description' => ts('FK to navigation ID'),
'import' => TRUE,
'where' => 'civicrm_report_instance.navigation_id',
'headerPattern' => '',
'name' => 'drilldown_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Drilldown Report ID'),
- 'description' => 'FK to instance ID drilldown to',
+ 'description' => ts('FK to instance ID drilldown to'),
'import' => TRUE,
'where' => 'civicrm_report_instance.drilldown_id',
'headerPattern' => '',
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('SMS Provider ID'),
- 'description' => 'SMS Provider ID',
+ 'description' => ts('SMS Provider ID'),
'required' => TRUE,
'table_name' => 'civicrm_sms_provider',
'entity' => 'Provider',
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('SMS Provider Name'),
- 'description' => 'Provider internal name points to option_value of option_group sms_provider_name',
+ 'description' => ts('Provider internal name points to option_value of option_group sms_provider_name'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_sms_provider',
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('SMS Provider Title'),
- 'description' => 'Provider name visible to user',
+ 'description' => ts('Provider name visible to user'),
'maxlength' => 64,
'size' => CRM_Utils_Type::BIG,
'table_name' => 'civicrm_sms_provider',
'name' => 'api_type',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('SMS Provider API'),
- 'description' => 'points to value in civicrm_option_value for group sms_api_type',
+ 'description' => ts('points to value in civicrm_option_value for group sms_api_type'),
'required' => TRUE,
'table_name' => 'civicrm_sms_provider',
'entity' => 'Provider',
'name' => 'api_params',
'type' => CRM_Utils_Type::T_TEXT,
'title' => ts('SMS Provider API Params'),
- 'description' => 'the api params in xml, http or smtp format',
+ 'description' => ts('the api params in xml, http or smtp format'),
'table_name' => 'civicrm_sms_provider',
'entity' => 'Provider',
'bao' => 'CRM_SMS_BAO_Provider',
'name' => 'domain_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('SMS Domain'),
- 'description' => 'Which Domain is this sms provider for',
+ 'description' => ts('Which Domain is this sms provider for'),
'table_name' => 'civicrm_sms_provider',
'entity' => 'Provider',
'bao' => 'CRM_SMS_BAO_Provider',
'title' => ts('{$field.title}'),
{/if}
{if $field.comment}
- 'description' => '{$field.comment|replace:"'":"\'"}',
+ 'description' => ts('{$field.comment|replace:"'":"\'"}'),
{/if}
{if $field.required}
'required' => {$field.required|strtoupper},