}
else {
$contactFields[$fieldName] = $field;
+ // we should return 'Primary' with & without capitalisation. it is more consistent with api to not
+ // capitalise, but for form support we need it for now. Hopefully we can move away from it
+ $contactFields[strtolower($fieldName)] = $field;
+ }
}
- }
$ufGroupBAO->setProfileDefaults($params['contact_id'], $contactFields, $values[$profileID], TRUE);
}
elseif(!empty($params['contact_id'])) {
$ufGroupBAO->setProfileDefaults($params['contact_id'], $profileFields, $values[$profileID], TRUE);
- }
- else{
- $values[$profileID] = array_fill_keys(array_keys($profileFields), '');
- }
+ foreach ($values[$profileID] as $fieldName => $field){
+ // we should return 'Primary' with & without capitalisation. it is more consistent with api to not
+ // capitalise, but for form support we need it for now. Hopefully we can move away from it
+ $values[$profileID][strtolower($fieldName)] = $field;
+ }
+ }
+ else{
+ $values[$profileID] = array_fill_keys(array_keys($profileFields), '');
+ }
}
if($nonStandardLegacyBehaviour) {
$result = civicrm_api3_create_success();
$contactParams = $activityParams = $missingParams = array();
- $profileFields = CRM_Core_BAO_UFGroup::getFields($profileID,
- FALSE,
- NULL,
- NULL,
- NULL,
- FALSE,
- NULL,
- TRUE,
- NULL,
- CRM_Core_Permission::EDIT
- );
-
+ $profileFields = civicrm_api3('profile', 'getfields', array('action' => 'submit', 'profile_id' => $profileID));
+ $profileFields = $profileFields['values'];
if ($isContactActivityProfile) {
civicrm_api3_verify_mandatory($params, NULL, array('activity_id'));
}
foreach ($profileFields as $fieldName => $field) {
- if (CRM_Utils_Array::value('is_required', $field)) {
- if (!CRM_Utils_Array::value($fieldName, $params) || empty($params[$fieldName])) {
- $missingParams[] = $fieldName;
- }
- }
-
if (!isset($params[$fieldName])) {
continue;
}
if ($params[$fieldName] && isset($params[$fieldName . '_id'])) {
$value = $params[$fieldName . '_id'];
}
-
- if ($isContactActivityProfile && CRM_Utils_Array::value('field_type', $field) == 'Activity') {
- $activityParams[$fieldName] = $value;
+ $contactEntities = array('contact', 'individual', 'organization', 'household');
+ $locationEntities = array('email', 'address', 'phone', 'website', 'im');
+
+ $entity = strtolower(CRM_Utils_Array::value('entity', $field));
+ if($entity && !in_array($entity, array_merge($contactEntities, $locationEntities))) {
+ $contactParams['api.' . $entity . '.create'][$fieldName] = $value;
+ if(isset($params[$entity . '_id'])) {
+ //todo possibly declare $entity_id in getfields ?
+ $contactParams['api.' . $entity . '.create']['id'] = $params[$entity . '_id'];
+ }
}
else {
- $contactParams[$fieldName] = $value;
+ $contactParams[_civicrm_api3_profile_translate_fieldnames_for_bao($fieldName)] = $value;
}
}
- if (!empty($missingParams)) {
- throw new API_Exception("Missing required parameters for profile id {$params['profile_id']}: " . implode(', ', $missingParams));
- }
-
$contactParams['contact_id'] = CRM_Utils_Array::value('contact_id', $params);
$contactParams['profile_id'] = $profileID;
$contactParams['skip_custom'] = 1;
$contactProfileParams = civicrm_api3_profile_apply($contactParams);
- if (CRM_Utils_Array::value('is_error', $contactProfileParams)) {
- return $contactProfileParams;
- }
// Contact profile fields
$profileParams = $contactProfileParams['values'];
return $result;
}
+
+/**
+ * The api standards expect field names to be lower case but the BAO uses mixed case
+ * so we accept 'email-primary' but pass 'email-Primary' to the BAO
+ * we could make the BAO handle email-primary but this would alter the fieldname seen by hooks
+ * & we would need to consider that change
+ * @param string $fieldName API field name
+ *
+ * @return string BAO Field Name
+ */
+function _civicrm_api3_profile_translate_fieldnames_for_bao($fieldName){
+ $fieldName = str_replace('url', 'URL', $fieldName);
+ return str_replace('primary', 'Primary', $fieldName);
+}
/**
* metadata for submit action
* @param array $params
* @deprecated - appears to be an internal function - should not be accessible via api
* Provide formatted values for profile fields.
*
- * @param array $params Associative array of property name/value
+ * @param array $params Associative array of property name/value
* pairs to profile field values
*
+ * @throws API_Exception
* @return formatted profile field values|CRM_Error
*
* @todo add example
* @todo add test cases
- *
*/
function civicrm_api3_profile_apply($params) {
}
$fields = civicrm_api3('uf_field', 'get', array('uf_group_id' => $profileID));
$entities = array();
-
foreach ($fields['values'] as $field) {
if(!$field['is_active']) {
continue;
}
list($entity, $fieldName) = _civicrm_api3_map_profile_fields_to_entity($field);
- $profileFields[$profileID][$fieldName] = array(
+ $aliasArray = array();
+ if(strtolower($fieldName) != $fieldName) {
+ $aliasArray['api.aliases'] = array($fieldName);
+ $fieldName = strtolower($fieldName);
+ }
+ $profileFields[$profileID][$fieldName] = array_merge(array(
'api.required' => $field['is_required'],
'title' => $field['label'],
'help_pre' => CRM_Utils_Array::value('help_pre', $field),
'help_post' => CRM_Utils_Array::value('help_post', $field),
- );
+ 'entity' => $entity,
+ ), $aliasArray);
$realFieldName = $field['field_name'];
//see function notes
$result = civicrm_api3($entity, 'getfields', array('action' => 'create'));
$entityGetFieldsResult = _civicrm_api3_profile_appendaliases($result['values'], $entity);
foreach ($entityFields as $entityfield => $realName) {
- $profileFields[$profileID][$entityfield] = $entityGetFieldsResult[$realName];
+ $profileFields[$profileID][strtolower($entityfield)] = array_merge($profileFields[$profileID][$entityfield], $entityGetFieldsResult[$realName]);
if($optionsBehaviour && !empty($entityGetFieldsResult[$realName]['pseudoconstant'])) {
if($optionsBehaviour > 1 || !in_array($realName, array('state_province_id', 'county_id', 'country_id'))) {
$options = civicrm_api3($entity, 'getoptions', array('field' => $realName));
$profileFields[$profileID][$entityfield]['options'] = $options['values'];
}
}
+
+ if($entityfield != strtolower($entityfield)) {
+ // we will make the mixed case version (e.g. of 'Primary') an aliase
+ if(!isset($profileFields[$profileID][strtolower($entityfield)])) {
+ $profileFields[$profileID][strtolower($entityfield)]['api.aliases'] = array();
+ }
+ $profileFields[$profileID][strtolower($entityfield)]['api.aliases'][] = $entityfield;
+ }
/**
* putting this on hold -this would cause the api to set the default - but could have unexpected behaviour
if(isset($result['values'][$realName]['default_value'])) {
- //this would be the case for a custom field with a configured default
- $profileFields[$profileID][$entityfield]['api.default'] = $result['values'][$realName]['default_value'];
+ //this would be the case for a custom field with a configured default
+ $profileFields[$profileID][$entityfield]['api.default'] = $result['values'][$realName]['default_value'];
}
- */
+ */
}
}
return $profileFields[$profileID];
function _civicrm_api3_map_profile_fields_to_entity(&$field) {
$entity = $field['field_type'];
$contactTypes = civicrm_api3('contact', 'getoptions', array('field' => 'contact_type'));
+ $locationFields = array('email' => 'Email');
if(in_array($entity, $contactTypes['values'])) {
$entity = 'Contact';
}
}
$fieldName .= '-' . $field['location_type_id'];
}
+ elseif(array_key_exists($fieldName, $locationFields)) {
+ $fieldName .= '-Primary';
+ $entity = 'Email';
+ }
if(!empty($field['phone_type_id'])) {
$fieldName .= '-' . $field['location_type_id'];
$entity = 'Phone';
}
+
// @todo - sort this out!
//here we do a hard-code list of known fields that don't map to where they are mapped to
// not a great solution but probably if we looked in the BAO we'd find a scary switch statement
function profile_getfields_example(){
$params = array(
'action' => 'submit',
- 'profile_id' => 25,
+ 'profile_id' => 27,
);
try{
'count' => 9,
'values' => array(
'first_name' => array(
+ 'api.required' => '1',
+ 'title' => 'First Name',
+ 'help_pre' => '',
+ 'help_post' => '',
+ 'entity' => 'Contact',
'name' => 'first_name',
'type' => 2,
- 'title' => 'First Name',
'maxlength' => 64,
'size' => 30,
'import' => true,
'export' => true,
),
'last_name' => array(
+ 'api.required' => '1',
+ 'title' => 'Last Name',
+ 'help_pre' => '',
+ 'help_post' => '',
+ 'entity' => 'Contact',
'name' => 'last_name',
'type' => 2,
- 'title' => 'Last Name',
'maxlength' => 64,
'size' => 30,
'import' => true,
'dataPattern' => '/^\w+(\s\w+)?+$/',
'export' => true,
),
- 'email' => array(
+ 'email-primary' => array(
+ 'api.required' => 1,
+ 'title' => 'Email',
+ 'help_pre' => '',
+ 'help_post' => '',
+ 'entity' => 'Email',
+ 'api.aliases' => array(
+ '0' => 'email-Primary',
+ ),
'name' => 'email',
'type' => 2,
- 'title' => 'Email',
- 'maxlength' => 64,
+ 'maxlength' => 254,
'size' => 20,
'import' => true,
'where' => 'civicrm_email.email',
'dataPattern' => '/^[a-zA-Z][\w\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\w\.-]*[a-zA-Z0-9]\.[a-zA-Z][a-zA-Z\.]*[a-zA-Z]$/',
'export' => true,
'rule' => 'email',
- 'api.required' => 1,
),
'phone-1-1' => array(
+ 'api.required' => 1,
+ 'title' => 'Phone',
+ 'help_pre' => '',
+ 'help_post' => '',
+ 'entity' => 'Phone',
'name' => 'phone',
'type' => 2,
- 'title' => 'Phone',
'maxlength' => 32,
'size' => 20,
'import' => true,
'headerPattern' => '/phone/i',
'dataPattern' => '/^[\d\(\)\-\.\s]+$/',
'export' => true,
- 'api.required' => 1,
),
'country-1' => array(
+ 'api.required' => '1',
+ 'title' => 'Country',
+ 'help_pre' => '',
+ 'help_post' => '',
+ 'entity' => 'Address',
'name' => 'country_id',
'type' => 1,
- 'title' => 'Country',
'FKClassName' => 'CRM_Core_DAO_Country',
'pseudoconstant' => array(
'table' => 'civicrm_country',
),
),
'state_province-1' => array(
+ 'api.required' => '1',
+ 'title' => 'State',
+ 'help_pre' => '',
+ 'help_post' => '',
+ 'entity' => 'Address',
'name' => 'state_province_id',
'type' => 1,
- 'title' => 'State',
'FKClassName' => 'CRM_Core_DAO_StateProvince',
'pseudoconstant' => array(
'table' => 'civicrm_state_province',
),
),
'postal_code-1' => array(
+ 'api.required' => 0,
+ 'title' => 'Postal Code',
+ 'help_pre' => '',
+ 'help_post' => '',
+ 'entity' => 'Address',
'name' => 'postal_code',
'type' => 2,
- 'title' => 'Postal Code',
'maxlength' => 12,
'size' => 12,
'import' => true,
'export' => true,
),
'custom_1' => array(
+ 'api.required' => '1',
+ 'title' => 'first_name',
+ 'help_pre' => '',
+ 'help_post' => '',
+ 'entity' => 'Contact',
'label' => '_addCustomFieldToProfile',
'groupTitle' => '_addCustomFie',
'data_type' => 'String',