standardise naming of _spec functions & add support for 'id' as pseudonym of domain_id
[civicrm-core.git] / api / v3 / UFJoin.php
CommitLineData
6a488035
TO
1<?php
2// $Id$
3
4/*
5 +--------------------------------------------------------------------+
6 | CiviCRM version 4.3 |
7 +--------------------------------------------------------------------+
8 | Copyright CiviCRM LLC (c) 2004-2013 |
9 +--------------------------------------------------------------------+
10 | This file is a part of CiviCRM. |
11 | |
12 | CiviCRM is free software; you can copy, modify, and distribute it |
13 | under the terms of the GNU Affero General Public License |
14 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
15 | |
16 | CiviCRM is distributed in the hope that it will be useful, but |
17 | WITHOUT ANY WARRANTY; without even the implied warranty of |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
19 | See the GNU Affero General Public License for more details. |
20 | |
21 | You should have received a copy of the GNU Affero General Public |
22 | License and the CiviCRM Licensing Exception along |
23 | with this program; if not, contact CiviCRM LLC |
24 | at info[AT]civicrm[DOT]org. If you have questions about the |
25 | GNU Affero General Public License or the licensing of CiviCRM, |
26 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
27 +--------------------------------------------------------------------+
28 */
29
30/**
31 * File for the CiviCRM APIv3 user framework join functions
32 *
33 * @package CiviCRM_APIv3
34 * @subpackage API_UF
35 *
36 * @copyright CiviCRM LLC (c) 2004-2013
37 * @version $Id: UFJoin.php 30171 2010-10-14 09:11:27Z mover $
38 *
39 */
40
41/**
42 * Files required for this package
43 */
44require_once 'CRM/Core/BAO/UFJoin.php';
45
46/**
47 * takes an associative array and creates a uf join in the database
48 *
49 * @param array $params assoc array of name/value pairs
50 *
51 * @return array CRM_Core_DAO_UFJoin Array
52 * @access public
53 * @example UFJoinCreate.php
54 * {@getfields UFJoin_create}
55 *
56 */
57function civicrm_api3_uf_join_create($params) {
58
59 $ufJoin = CRM_Core_BAO_UFJoin::create($params);
60 _civicrm_api3_object_to_array($ufJoin, $ufJoinArray[]);
61 return civicrm_api3_create_success($ufJoinArray, $params, 'uf_join', 'create');
62}
63/*
64 * Adjust Metadata for Create action
65 *
66 * @param array $params array or parameters determined by getfields
67 * @todo - suspect module, weight don't need to be required - need to test
68 */
69function _civicrm_api3_uf_join_create_spec(&$params) {
70 $params['module']['api.required'] = 1;
71 $params['weight']['api.required'] = 1;
72 $params['uf_group_id']['api.required'] = 1;
73}
74
75/**
76 * Get CiviCRM UF_Joins (ie joins between CMS user records & CiviCRM user record
77 *
78 * @param array $params (reference) an assoc array of name/value pairs
79 *
80 * @return array $result CiviCRM Result Array or null
81 * @todo Delete function missing
82 * @access public
83 * {getfields UFJoin_get}
84 */
85function civicrm_api3_uf_join_get($params) {
86 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
87}
88