value pairs. * If $params is set as null, all contact_types will be returned * * @return array * Array of matching contact_types */ function civicrm_api3_contact_type_get($params) { civicrm_api3_verify_mandatory($params); return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); } /** * Delete an existing ContactType. * * This method is used to delete any existing ContactType given its id. * * @param array $params * [id] * * @return array * API Result Array */ function civicrm_api3_contact_type_delete($params) { return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params); }