INFRA-132 - Civi - Convert single-line @param to multi-line
[civicrm-core.git] / api / v3 / MembershipStatus.php
CommitLineData
6a488035 1<?php
6a488035
TO
2
3/*
4 +--------------------------------------------------------------------+
39de6fd5 5 | CiviCRM version 4.6 |
6a488035 6 +--------------------------------------------------------------------+
731a0992 7 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27 */
28
29/**
30 * File for the CiviCRM APIv3 membership status functions
31 *
32 * @package CiviCRM_APIv3
33 * @subpackage API_Membership
34 *
731a0992 35 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
36 * @version $Id: MembershipStatus.php 30171 2010-10-14 09:11:27Z mover $
37 *
38 */
39
6a488035
TO
40/**
41 * Create a Membership Status
42 *
43 * This API is used for creating a Membership Status
44 *
45 * @param array $params an associative array of name/value property values of civicrm_membership_status
46 *
47 * @return array of newly created membership status property values.
48 * {@getfields MembershipStatus_create}
49 * @access public
50 */
51function civicrm_api3_membership_status_create($params) {
52 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
53}
54
6a488035
TO
55/**
56 * Get a membership status.
57 *
58 * This api is used for finding an existing membership status.
59 *
60 * @param array $params an associative array of name/value property values of civicrm_membership_status
61 *
62 * @return Array of all found membership status property values.
63 * {@getfields MembershipStatus_get}
64 * @access public
65 */
66function civicrm_api3_membership_status_get($params) {
67 return _civicrm_api3_basic_get('CRM_Member_BAO_MembershipStatus', $params);
68}
69
70/**
71 * Update an existing membership status
72 *
73 * This api is used for updating an existing membership status.
e9d619eb 74 * Required parameters : id of a membership status
6a488035
TO
75 *
76 * @param Array $params an associative array of name/value property values of civicrm_membership_status
77 * @deprecated - should just use create
78 *
79 * @return array of updated membership status property values
80 * @access public
81 */
82function &civicrm_api3_membership_status_update($params) {
83
84 civicrm_api3_verify_mandatory($params, NULL, array('id'));
85 //don't allow duplicate names.
86 $name = CRM_Utils_Array::value('name', $params);
87 if ($name) {
6a488035
TO
88 $status = new CRM_Member_DAO_MembershipStatus();
89 $status->name = $params['name'];
90 if ($status->find(TRUE) && $status->id != $params['id']) {
91 return civicrm_api3_create_error(ts('A membership status with this name already exists.'));
92 }
93 }
94
6a488035
TO
95 $membershipStatusBAO = new CRM_Member_BAO_MembershipStatus();
96 $membershipStatusBAO->id = $params['id'];
97 if ($membershipStatusBAO->find(TRUE)) {
98 $fields = $membershipStatusBAO->fields();
99 foreach ($fields as $name => $field) {
100 if (array_key_exists($name, $params)) {
101 $membershipStatusBAO->$name = $params[$name];
102 }
103 }
104 $membershipStatusBAO->save();
105 }
106 $membershipStatus = array();
107 _civicrm_api3_object_to_array(clone($membershipStatusBAO), $membershipStatus);
108 $membershipStatus['is_error'] = 0;
109 return $membershipStatus;
110}
111
112/**
113 * Deletes an existing membership status
114 *
115 * This API is used for deleting a membership status
116 *
117 * @param array Params array containing 'id' - Id of the membership status to be deleted
118 * {@getfields MembershipStatus_delete}
119 *
120 * @return array i
121 * @access public
122 */
123function civicrm_api3_membership_status_delete($params) {
124
125 $memberStatusDelete = CRM_Member_BAO_MembershipStatus::del($params['id'], TRUE);
126 return $memberStatusDelete ? civicrm_api3_create_error($memberStatusDelete['error_message']) : civicrm_api3_create_success();
127}
128
129/**
130 * Derives the Membership Status of a given Membership Reocrd
131 *
132 * This API is used for deriving Membership Status of a given Membership
133 * record using the rules encoded in the membership_status table.
134 *
100fef9d 135 * @param array $membershipParams
77b97be7
EM
136 *
137 * @throws API_Exception
6a488035
TO
138 *
139 * @return Array Array of status id and status name
140 * @public
141 */
142function civicrm_api3_membership_status_calc($membershipParams) {
6a488035 143 if (!($membershipID = CRM_Utils_Array::value('membership_id', $membershipParams))) {
5f11bbcc 144 throw new API_Exception('membershipParams do not contain membership_id');
6a488035
TO
145 }
146
5f11bbcc
EM
147 if(empty($membershipParams['id'])) {
148 //for consistency lets make sure id is set as this will get passed to hooks downstream
149 $membershipParams['id'] = $membershipID;
150 }
6a488035 151 $query = "
5f11bbcc 152SELECT start_date, end_date, join_date, membership_type_id
6a488035
TO
153 FROM civicrm_membership
154 WHERE id = %1
155";
156
157 $params = array(1 => array($membershipID, 'Integer'));
5f11bbcc 158 $dao = CRM_Core_DAO::executeQuery($query, $params);
6a488035 159 if ($dao->fetch()) {
5f11bbcc
EM
160 $membershipTypeID = empty($membershipParams['membership_type_id']) ? $dao->membership_type_id : $membershipParams['membership_type_id'];
161 $result = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($dao->start_date, $dao->end_date, $dao->join_date, 'today', CRM_Utils_Array::value('ignore_admin_only', $membershipParams), $membershipTypeID, $membershipParams);
6a488035 162 //make is error zero only when valid status found.
a7488080 163 if (!empty($result['id'])) {
6a488035
TO
164 $result['is_error'] = 0;
165 }
166 }
167 else {
5f11bbcc
EM
168 $dao->free();
169 throw new API_Exception('did not find a membership record');
6a488035
TO
170 }
171 $dao->free();
172 return $result;
173}
174