Fix doc-comment formatting
[civicrm-core.git] / api / v3 / UFJoin.php
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 */
44 require_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 */
57 function 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 /**
65 * Adjust Metadata for Create action
66 *
67 * @param array $params array or parameters determined by getfields
68 * @todo - suspect module, weight don't need to be required - need to test
69 */
70 function _civicrm_api3_uf_join_create_spec(&$params) {
71 $params['module']['api.required'] = 1;
72 $params['weight']['api.required'] = 1;
73 $params['uf_group_id']['api.required'] = 1;
74 }
75
76 /**
77 * Get CiviCRM UF_Joins (ie joins between CMS user records & CiviCRM user record
78 *
79 * @param array $params (reference) an assoc array of name/value pairs
80 *
81 * @return array $result CiviCRM Result Array or null
82 * @todo Delete function missing
83 * @access public
84 * {getfields UFJoin_get}
85 */
86 function civicrm_api3_uf_join_get($params) {
87 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
88 }
89