You are here

function redhen_state_options in RedHen CRM 7

Callback to return an array of options for redhen states.

2 string references to 'redhen_state_options'
RedhenContactMetadataController::entityPropertyInfo in modules/redhen_contact/lib/redhen_contact.metadata.inc
Overrides entityPropertyInfo().
RedhenOrgMetadataController::entityPropertyInfo in modules/redhen_org/lib/redhen_org.metadata.inc
Overrides entityPropertyInfo().

File

./redhen.module, line 292
Defines basic functionality common to all parts of the Redhen CRM.

Code

function redhen_state_options() {
  return array(
    REDHEN_STATE_ACTIVE => t('Active'),
    REDHEN_STATE_ARCHIVED => t('Archived'),
  );
}