Merge pull request #4863 from totten/master-phpcbf4
[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 * Input parameters.
47 */
48 /**
49 * @param array $params
50 *
51 * @return object
52 * @throws API_Exception
53 */
54 public static function create($params) {
55 // Ensure mysql phone function exists
56 CRM_Core_DAO::checkSqlFunctionsExist();
57
58 if (is_numeric(CRM_Utils_Array::value('is_primary', $params)) ||
59 // if id is set & is_primary isn't we can assume no change
60 empty($params['id'])
61 ) {
62 CRM_Core_BAO_Block::handlePrimary($params, get_class());
63 }
64 $phone = self::add($params);
65
66 return $phone;
67 }
68
69 /**
70 * Takes an associative array and adds phone
71 *
72 * @param array $params
73 * (reference ) an assoc array of name/value pairs.
74 *
75 * @return object CRM_Core_BAO_Phone object on success, null otherwise
76 * @static
77 */
78 public static function add(&$params) {
79 // Ensure mysql phone function exists
80 CRM_Core_DAO::checkSqlFunctionsExist();
81
82 $hook = empty($params['id']) ? 'create' : 'edit';
83 CRM_Utils_Hook::pre($hook, 'Phone', CRM_Utils_Array::value('id', $params), $params);
84
85 $phone = new CRM_Core_DAO_Phone();
86 $phone->copyValues($params);
87 $phone->save();
88
89 CRM_Utils_Hook::post($hook, 'Phone', $phone->id, $phone);
90 return $phone;
91 }
92
93 /**
94 * Given the list of params in the params array, fetch the object
95 * and store the values in the values array
96 *
97 * @param array entityBlock input parameters to find object
98 *
99 * @return array array of phone objects
100 * @static
101 */
102 public static function &getValues($entityBlock) {
103 $getValues = CRM_Core_BAO_Block::getValues('phone', $entityBlock);
104 return $getValues;
105 }
106
107 /**
108 * Get all the phone numbers for a specified contact_id, with the primary being first
109 *
110 * @param int $id
111 * The contact id.
112 *
113 * @param bool $updateBlankLocInfo
114 * @param null $type
115 * @param array $filters
116 *
117 * @return array the array of phone ids which are potential numbers
118 * @static
119 */
120 public static function allPhones($id, $updateBlankLocInfo = FALSE, $type = NULL, $filters = array()) {
121 if (!$id) {
122 return NULL;
123 }
124
125 $cond = NULL;
126 if ($type) {
127 $phoneTypeId = array_search($type, CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', 'phone_type_id'));
128 if ($phoneTypeId) {
129 $cond = " AND civicrm_phone.phone_type_id = $phoneTypeId";
130 }
131 }
132
133 if (!empty($filters) && is_array($filters)) {
134 foreach ($filters as $key => $value) {
135 $cond .= " AND " . $key . " = " . $value;
136 }
137 }
138
139 $query = "
140 SELECT phone, civicrm_location_type.name as locationType, civicrm_phone.is_primary as is_primary,
141 civicrm_phone.id as phone_id, civicrm_phone.location_type_id as locationTypeId,
142 civicrm_phone.phone_type_id as phoneTypeId
143 FROM civicrm_contact
144 LEFT JOIN civicrm_phone ON ( civicrm_contact.id = civicrm_phone.contact_id )
145 LEFT JOIN civicrm_location_type ON ( civicrm_phone.location_type_id = civicrm_location_type.id )
146 WHERE civicrm_contact.id = %1 $cond
147 ORDER BY civicrm_phone.is_primary DESC, phone_id ASC ";
148
149
150 $params = array(
151 1 => array(
152 $id,
153 'Integer',
154 ),
155 );
156
157 $numbers = $values = array();
158 $dao = CRM_Core_DAO::executeQuery($query, $params);
159 $count = 1;
160 while ($dao->fetch()) {
161 $values = array(
162 'locationType' => $dao->locationType,
163 'is_primary' => $dao->is_primary,
164 'id' => $dao->phone_id,
165 'phone' => $dao->phone,
166 'locationTypeId' => $dao->locationTypeId,
167 'phoneTypeId' => $dao->phoneTypeId,
168 );
169
170 if ($updateBlankLocInfo) {
171 $numbers[$count++] = $values;
172 }
173 else {
174 $numbers[$dao->phone_id] = $values;
175 }
176 }
177 return $numbers;
178 }
179
180 /**
181 * Get all the phone numbers for a specified location_block id, with the primary phone being first
182 *
183 * @param array $entityElements
184 * The array containing entity_id and.
185 * entity_table name
186 *
187 * @param null $type
188 *
189 * @return array 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 }