INFRA-132 - Docblock formatting fixes
[civicrm-core.git] / CRM / Core / BAO / Phone.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * Class contains functions for phone
38 */
39 class CRM_Core_BAO_Phone extends CRM_Core_DAO_Phone {
40
41 /**
42 * Create phone object - note that the create function calls 'add' but
43 * has more business logic
44 *
45 * @param array $params
46 *
47 * @return object
48 * @throws API_Exception
49 */
50 public static function create($params) {
51 // Ensure mysql phone function exists
52 CRM_Core_DAO::checkSqlFunctionsExist();
53
54 if (is_numeric(CRM_Utils_Array::value('is_primary', $params)) ||
55 // if id is set & is_primary isn't we can assume no change
56 empty($params['id'])
57 ) {
58 CRM_Core_BAO_Block::handlePrimary($params, get_class());
59 }
60 $phone = self::add($params);
61
62 return $phone;
63 }
64
65 /**
66 * Takes an associative array and adds phone
67 *
68 * @param array $params
69 * (reference ) an assoc array of name/value pairs.
70 *
71 * @return object
72 * CRM_Core_BAO_Phone object on success, null otherwise
73 * @static
74 */
75 public static function add(&$params) {
76 // Ensure mysql phone function exists
77 CRM_Core_DAO::checkSqlFunctionsExist();
78
79 $hook = empty($params['id']) ? 'create' : 'edit';
80 CRM_Utils_Hook::pre($hook, 'Phone', CRM_Utils_Array::value('id', $params), $params);
81
82 $phone = new CRM_Core_DAO_Phone();
83 $phone->copyValues($params);
84 $phone->save();
85
86 CRM_Utils_Hook::post($hook, 'Phone', $phone->id, $phone);
87 return $phone;
88 }
89
90 /**
91 * Given the list of params in the params array, fetch the object
92 * and store the values in the values array
93 *
94 * @param array entityBlock input parameters to find object
95 *
96 * @return array
97 * array of phone objects
98 * @static
99 */
100 public static function &getValues($entityBlock) {
101 $getValues = CRM_Core_BAO_Block::getValues('phone', $entityBlock);
102 return $getValues;
103 }
104
105 /**
106 * Get all the phone numbers for a specified contact_id, with the primary being first
107 *
108 * @param int $id
109 * The contact id.
110 *
111 * @param bool $updateBlankLocInfo
112 * @param null $type
113 * @param array $filters
114 *
115 * @return array
116 * the array of phone ids which are potential numbers
117 * @static
118 */
119 public static function allPhones($id, $updateBlankLocInfo = FALSE, $type = NULL, $filters = array()) {
120 if (!$id) {
121 return NULL;
122 }
123
124 $cond = NULL;
125 if ($type) {
126 $phoneTypeId = array_search($type, CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', 'phone_type_id'));
127 if ($phoneTypeId) {
128 $cond = " AND civicrm_phone.phone_type_id = $phoneTypeId";
129 }
130 }
131
132 if (!empty($filters) && is_array($filters)) {
133 foreach ($filters as $key => $value) {
134 $cond .= " AND " . $key . " = " . $value;
135 }
136 }
137
138 $query = "
139 SELECT phone, civicrm_location_type.name as locationType, civicrm_phone.is_primary as is_primary,
140 civicrm_phone.id as phone_id, civicrm_phone.location_type_id as locationTypeId,
141 civicrm_phone.phone_type_id as phoneTypeId
142 FROM civicrm_contact
143 LEFT JOIN civicrm_phone ON ( civicrm_contact.id = civicrm_phone.contact_id )
144 LEFT JOIN civicrm_location_type ON ( civicrm_phone.location_type_id = civicrm_location_type.id )
145 WHERE civicrm_contact.id = %1 $cond
146 ORDER BY civicrm_phone.is_primary DESC, phone_id ASC ";
147
148
149 $params = array(
150 1 => array(
151 $id,
152 'Integer',
153 ),
154 );
155
156 $numbers = $values = array();
157 $dao = CRM_Core_DAO::executeQuery($query, $params);
158 $count = 1;
159 while ($dao->fetch()) {
160 $values = array(
161 'locationType' => $dao->locationType,
162 'is_primary' => $dao->is_primary,
163 'id' => $dao->phone_id,
164 'phone' => $dao->phone,
165 'locationTypeId' => $dao->locationTypeId,
166 'phoneTypeId' => $dao->phoneTypeId,
167 );
168
169 if ($updateBlankLocInfo) {
170 $numbers[$count++] = $values;
171 }
172 else {
173 $numbers[$dao->phone_id] = $values;
174 }
175 }
176 return $numbers;
177 }
178
179 /**
180 * Get all the phone numbers for a specified location_block id, with the primary phone being first
181 *
182 * @param array $entityElements
183 * The array containing entity_id and.
184 * entity_table name
185 *
186 * @param null $type
187 *
188 * @return array
189 * the array of phone ids which are potential numbers
190 * @static
191 */
192 public static function allEntityPhones($entityElements, $type = NULL) {
193 if (empty($entityElements)) {
194 return NULL;
195 }
196
197 $cond = NULL;
198 if ($type) {
199 $phoneTypeId = array_search($type, CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', 'phone_type_id'));
200 if ($phoneTypeId) {
201 $cond = " AND civicrm_phone.phone_type_id = $phoneTypeId";
202 }
203 }
204
205 $entityId = $entityElements['entity_id'];
206 $entityTable = $entityElements['entity_table'];
207
208 $sql = " SELECT phone, ltype.name as locationType, ph.is_primary as is_primary,
209 ph.id as phone_id, ph.location_type_id as locationTypeId
210 FROM civicrm_loc_block loc, civicrm_phone ph, civicrm_location_type ltype, {$entityTable} ev
211 WHERE ev.id = %1
212 AND loc.id = ev.loc_block_id
213 AND ph.id IN (loc.phone_id, loc.phone_2_id)
214 AND ltype.id = ph.location_type_id
215 ORDER BY ph.is_primary DESC, phone_id ASC ";
216
217 $params = array(
218 1 => array(
219 $entityId,
220 'Integer',
221 ),
222 );
223 $numbers = array();
224 $dao = CRM_Core_DAO::executeQuery($sql, $params);
225 while ($dao->fetch()) {
226 $numbers[$dao->phone_id] = array(
227 'locationType' => $dao->locationType,
228 'is_primary' => $dao->is_primary,
229 'id' => $dao->phone_id,
230 'phone' => $dao->phone,
231 'locationTypeId' => $dao->locationTypeId,
232 );
233 }
234 return $numbers;
235 }
236
237 /**
238 * Set NULL to phone, mapping, uffield
239 *
240 * @param $optionId
241 * Value of option to be deleted.
242 *
243 * return void
244 * @static
245 */
246 public static function setOptionToNull($optionId) {
247 if (!$optionId) {
248 return;
249 }
250 // Ensure mysql phone function exists
251 CRM_Core_DAO::checkSqlFunctionsExist();
252
253 $tables = array(
254 'civicrm_phone',
255 'civicrm_mapping_field',
256 'civicrm_uf_field',
257 );
258 $params = array(
259 1 => array(
260 $optionId,
261 'Integer',
262 ),
263 );
264
265 foreach ($tables as $tableName) {
266 $query = "UPDATE `{$tableName}` SET `phone_type_id` = NULL WHERE `phone_type_id` = %1";
267 CRM_Core_DAO::executeQuery($query, $params);
268 }
269 }
270
271 /**
272 * Call common delete function
273 */
274 public static function del($id) {
275 // Ensure mysql phone function exists
276 CRM_Core_DAO::checkSqlFunctionsExist();
277 return CRM_Contact_BAO_Contact::deleteObjectWithPrimary('Phone', $id);
278 }
279 }