You are here

function acquia_lift_get_udf_types in Acquia Lift Connector 7.3

Helper function to return a list of udf types.

Return value

array An array of UDF types defined in Acquia Lift Profile Manager with keys as the type name and values as the number allowed.

2 calls to acquia_lift_get_udf_types()
acquia_lift_admin_form_submit in ./acquia_lift.admin.inc
Submit handler for the acquia_lift configuration form.
acquia_lift_get_udfs in ./acquia_lift.module
Returns the list of UDFs that can be mapped to.

File

./acquia_lift.module, line 213
acquia_lift.module Provides Acquia Lift Profiles integration.

Code

function acquia_lift_get_udf_types() {
  return array(
    'person' => 50,
    'touch' => 20,
    'event' => 50,
  );
}