value pairs * as parameters. Some of the most commonly used parameters are * described below * * @param array $params an associative array used in construction * retrieval of the object * @todo missing get function * * */ /** * Use this API to create a new group. The 'extends' value accepts an array or a comma separated string. * e.g array( 'Individual','Contact') or 'Individual,Contact' * See the CRM Data Model for custom_group property definitions * $params['class_name'] is a required field, class being extended. * * @param $params array Associative array of property name/value pairs to insert in group. * {@getfields CustomGroup_create} * * @return Newly create custom_group object * @todo $params['extends'] is array format - is that std compatible * @access public */ function civicrm_api3_custom_group_create($params) { if (is_string($params['extends'])) { $extends = explode(",", $params['extends']); unset($params['extends']); $params['extends'] = $extends; } if (!isset($params['extends'][0]) || !trim($params['extends'][0])) { return civicrm_api3_create_error("First item in params['extends'] must be a class name (e.g. 'Contact')."); } if (isset($params['extends_entity_column_value']) && !is_array($params['extends_entity_column_value'])) { // BAO fails if this is a string, but API getFields says this must be a string, so we'll do a double backflip $params['extends_entity_column_value'] = CRM_Utils_Array::explodePadded($params['extends_entity_column_value']); } $customGroup = CRM_Core_BAO_CustomGroup::create($params); _civicrm_api3_object_to_array($customGroup, $values[$customGroup->id]); return civicrm_api3_create_success($values, $params, 'custom_group', $customGroup); } /* * Adjust Metadata for Create action * * @param array $params array or parameters determined by getfields */ function _civicrm_api3_custom_group_create_spec(&$params) { $params['extends']['api.required'] = 1; $params['title']['api.required'] = 1; $params['style']['api.default'] = 'Inline'; } /** * Use this API to delete an existing group. * * @param array id of the group to be deleted * * @return Null if success * @access public * {@getfields CustomGroup_delete} * @example CustomGroupDelete.php **/ function civicrm_api3_custom_group_delete($params) { $values = new CRM_Core_DAO_CustomGroup(); $values->id = $params['id']; $values->find(TRUE); require_once 'CRM/Core/BAO/CustomGroup.php'; $result = CRM_Core_BAO_CustomGroup::deleteGroup($values, TRUE); return $result ? civicrm_api3_create_success() : civicrm_api3_create_error('Error while deleting custom group'); } /** * Use this API to get existing custom fields. * * @param array $params Array to search on * * @access public * {@getfields CustomGroup_get} * @example CustomGroupGet.php **/ function civicrm_api3_custom_group_get($params) { return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); }