Merge pull request #4606 from johanv/CRM-15636-price_set_event_and_contribution
[civicrm-core.git] / CRM / Contact / BAO / Contact / Location.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Contact_BAO_Contact_Location {
36
37 /**
100fef9d 38 * Get the display name, primary email, location type and location id of a contact
6a488035 39 *
77b97be7
EM
40 * @param int $id id of the contact
41 *
42 * @param bool $isPrimary
100fef9d 43 * @param int $locationTypeID
6a488035
TO
44 *
45 * @return array of display_name, email, location type and location id if found, or (null,null,null, null)
46 * @static
6a488035 47 */
00be9182 48 public static function getEmailDetails($id, $isPrimary = TRUE, $locationTypeID = NULL) {
6a488035
TO
49 $primaryClause = NULL;
50 if ($isPrimary) {
51 $primaryClause = " AND civicrm_email.is_primary = 1";
52 }
53
54
55 $locationClause = NULL;
56 if ($locationTypeID) {
57 $locationClause = " AND civicrm_email.location_type_id = $locationTypeID";
58 }
59
60 $sql = "
61SELECT civicrm_contact.display_name,
62 civicrm_email.email,
63 civicrm_email.location_type_id,
64 civicrm_email.id
65FROM civicrm_contact
66LEFT JOIN civicrm_email ON ( civicrm_contact.id = civicrm_email.contact_id {$primaryClause} {$locationClause} )
67WHERE civicrm_contact.id = %1";
68
69 $params = array(1 => array($id, 'Integer'));
70 $dao = CRM_Core_DAO::executeQuery($sql, $params);
71 if ($dao->fetch()) {
72 return array($dao->display_name, $dao->email, $dao->location_type_id, $dao->id);
73 }
74 return array(NULL, NULL, NULL, NULL);
75 }
76
77 /**
100fef9d 78 * Get the sms number and display name of a contact
6a488035 79 *
6c8f6e67
EM
80 * @param int $id id of the contact
81 *
82 * @param null $type
6a488035
TO
83 *
84 * @return array tuple of display_name and sms if found, or (null,null)
85 * @static
6a488035 86 */
00be9182 87 public static function getPhoneDetails($id, $type = NULL) {
6a488035
TO
88 if (!$id) {
89 return array(NULL, NULL);
90 }
91
92 $cond = NULL;
93 if ($type) {
94 $cond = " AND civicrm_phone.phone_type_id = '$type'";
95 }
96
97
98 $sql = "
99 SELECT civicrm_contact.display_name, civicrm_phone.phone, civicrm_contact.do_not_sms
100 FROM civicrm_contact
101LEFT JOIN civicrm_phone ON ( civicrm_phone.contact_id = civicrm_contact.id )
102 WHERE civicrm_phone.is_primary = 1
103 $cond
104 AND civicrm_contact.id = %1";
105
106 $params = array(1 => array($id, 'Integer'));
107 $dao = CRM_Core_DAO::executeQuery($sql, $params);
108 if ($dao->fetch()) {
109 return array($dao->display_name, $dao->phone, $dao->do_not_sms);
110 }
111 return array(NULL, NULL, NULL);
112 }
113
114 /**
100fef9d 115 * Get the information to map a contact
6a488035 116 *
da6b46f4 117 * @param array $ids the list of ids for which we want map info
6a488035
TO
118 * $param int $locationTypeID
119 *
100fef9d 120 * @param int $locationTypeID
da6b46f4
EM
121 * @param bool $imageUrlOnly
122 *
6a488035
TO
123 * @return null|string display name of the contact if found
124 * @static
6a488035 125 */
00be9182 126 public static function &getMapInfo($ids, $locationTypeID = NULL, $imageUrlOnly = FALSE) {
6a488035
TO
127 $idString = ' ( ' . implode(',', $ids) . ' ) ';
128 $sql = "
129 SELECT civicrm_contact.id as contact_id,
130 civicrm_contact.contact_type as contact_type,
131 civicrm_contact.contact_sub_type as contact_sub_type,
132 civicrm_contact.display_name as display_name,
133 civicrm_address.street_address as street_address,
134 civicrm_address.supplemental_address_1 as supplemental_address_1,
135 civicrm_address.supplemental_address_2 as supplemental_address_2,
136 civicrm_address.city as city,
137 civicrm_address.postal_code as postal_code,
138 civicrm_address.postal_code_suffix as postal_code_suffix,
139 civicrm_address.geo_code_1 as latitude,
140 civicrm_address.geo_code_2 as longitude,
141 civicrm_state_province.abbreviation as state,
142 civicrm_country.name as country,
143 civicrm_location_type.name as location_type
144 FROM civicrm_contact
145LEFT JOIN civicrm_address ON civicrm_address.contact_id = civicrm_contact.id
146LEFT JOIN civicrm_state_province ON civicrm_address.state_province_id = civicrm_state_province.id
147LEFT JOIN civicrm_country ON civicrm_address.country_id = civicrm_country.id
148LEFT JOIN civicrm_location_type ON civicrm_location_type.id = civicrm_address.location_type_id
8ef12e64 149WHERE civicrm_address.geo_code_1 IS NOT NULL
150AND civicrm_address.geo_code_2 IS NOT NULL
6a488035
TO
151AND civicrm_contact.id IN $idString ";
152
153 $params = array();
154 if (!$locationTypeID) {
155 $sql .= " AND civicrm_address.is_primary = 1";
156 }
157 else {
158 $sql .= " AND civicrm_address.location_type_id = %1";
159 $params[1] = array($locationTypeID, 'Integer');
160 }
161
162 $dao = CRM_Core_DAO::executeQuery($sql, $params);
163
164 $locations = array();
165 $config = CRM_Core_Config::singleton();
166
167 while ($dao->fetch()) {
168 $location = array();
169 $location['contactID'] = $dao->contact_id;
170 $location['displayName'] = addslashes($dao->display_name);
171 $location['city'] = $dao->city;
172 $location['state'] = $dao->state;
173 $location['postal_code'] = $dao->postal_code;
174 $location['lat'] = $dao->latitude;
175 $location['lng'] = $dao->longitude;
176 $location['marker_class'] = $dao->contact_type;
177 $address = '';
178
179 CRM_Utils_String::append($address, '<br />',
180 array(
181 $dao->street_address,
182 $dao->supplemental_address_1,
183 $dao->supplemental_address_2,
184 $dao->city,
185 )
186 );
187 CRM_Utils_String::append($address, ', ',
188 array($dao->state, $dao->postal_code)
189 );
190 CRM_Utils_String::append($address, '<br /> ',
191 array($dao->country)
192 );
193 $location['address'] = addslashes($address);
d40be285 194 $location['displayAddress'] = str_replace('<br />', ', ', addslashes($address));
6a488035
TO
195 $location['url'] = CRM_Utils_System::url('civicrm/contact/view', 'reset=1&cid=' . $dao->contact_id);
196 $location['location_type'] = $dao->location_type;
197 $location['image'] = CRM_Contact_BAO_Contact_Utils::getImage(isset($dao->contact_sub_type) ?
198 $dao->contact_sub_type : $dao->contact_type, $imageUrlOnly, $dao->contact_id
199 );
200 $locations[] = $location;
201 }
202 return $locations;
203 }
204}