Merge pull request #5120 from eileenmcnaughton/CRM-15938
[civicrm-core.git] / CRM / Activity / BAO / ActivityContact.php
CommitLineData
adc7f09e
DL
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
adc7f09e 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
adc7f09e
DL
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
adc7f09e
DL
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
adc7f09e
DL
32 * $Id$
33 *
34 */
35
36/**
37 * This class is for activity assignment functions
38 *
39 */
40class CRM_Activity_BAO_ActivityContact extends CRM_Activity_DAO_ActivityContact {
41
42 /**
fe482240 43 * Class constructor.
adc7f09e 44 */
00be9182 45 public function __construct() {
adc7f09e
DL
46 parent::__construct();
47 }
48
49 /**
2e2605fe 50 * Function to add activity contact.
adc7f09e 51 *
041ab3d1
TO
52 * @param array $params
53 * The values for this table: activity id, contact id, record type.
adc7f09e 54 *
a6c01b45
CW
55 * @return object
56 * activity_contact object
adc7f09e
DL
57 */
58 public static function create(&$params) {
59 $activityContact = new CRM_Activity_DAO_ActivityContact();
60
61 $activityContact->copyValues($params);
2517d079
DL
62 if (!$activityContact->find(TRUE)) {
63 return $activityContact->save();
64 }
65 return $activityContact;
adc7f09e 66 }
f04255e4
DL
67
68 /**
fe482240 69 * Retrieve names of contact by activity_id.
f04255e4 70 *
c490a46a
CW
71 * @param int $activityID
72 * @param int $recordTypeID
6c8f6e67
EM
73 * @param bool $alsoIDs
74 *
f04255e4 75 * @return array
f04255e4 76 */
00be9182 77 public static function getNames($activityID, $recordTypeID, $alsoIDs = FALSE) {
f04255e4 78 $names = array();
353ffa53 79 $ids = array();
f04255e4
DL
80
81 if (empty($activityID)) {
82 return $alsoIDs ? array($names, $ids) : $names;
83 }
84
85 $query = "
86SELECT contact_a.id, contact_a.sort_name
87FROM civicrm_contact contact_a
88INNER JOIN civicrm_activity_contact ON civicrm_activity_contact.contact_id = contact_a.id
89WHERE civicrm_activity_contact.activity_id = %1
a24b3694 90AND civicrm_activity_contact.record_type_id = %2
f04255e4
DL
91AND contact_a.is_deleted = 0
92";
93 $params = array(
94 1 => array($activityID, 'Integer'),
21dfd5f5 95 2 => array($recordTypeID, 'Integer'),
f04255e4
DL
96 );
97
98 $dao = CRM_Core_DAO::executeQuery($query, $params);
99 while ($dao->fetch()) {
100 $names[$dao->id] = $dao->sort_name;
101 $ids[] = $dao->id;
102 }
103
104 return $alsoIDs ? array($names, $ids) : $names;
105 }
106
034500d4 107 /**
fe482240 108 * Retrieve id of target contact by activity_id.
034500d4 109 *
100fef9d
CW
110 * @param int $activityID
111 * @param int $recordTypeID
77b97be7 112 *
034500d4 113 * @return mixed
034500d4 114 */
00be9182 115 public static function retrieveContactIdsByActivityId($activityID, $recordTypeID) {
034500d4 116 $activityContact = array();
117 if (!CRM_Utils_Rule::positiveInteger($activityID) ||
353ffa53
TO
118 !CRM_Utils_Rule::positiveInteger($recordTypeID)
119 ) {
034500d4 120 return $activityContact;
121 }
122
123 $sql = " SELECT contact_id
124FROM civicrm_activity_contact
125INNER JOIN civicrm_contact ON contact_id = civicrm_contact.id
126WHERE activity_id = %1
2517d079
DL
127AND record_type_id = %2
128AND civicrm_contact.is_deleted = 0
034500d4 129";
130 $params = array(
131 1 => array($activityID, 'Integer'),
21dfd5f5 132 2 => array($recordTypeID, 'Integer'),
034500d4 133 );
134
135 $dao = CRM_Core_DAO::executeQuery($sql, $params);
136 while ($dao->fetch()) {
137 $activityContact[] = $dao->contact_id;
138 }
139 return $activityContact;
140 }
141
ffd93213
EM
142 /**
143 * Get the links associate array as defined by the links.ini file.
144 *
ffd93213
EM
145 * Experimental... -
146 * Should look a bit like
147 * [local_col_name] => "related_tablename:related_col_name"
148 *
149 *
2b37475d 150 * @return array|null
ffd93213
EM
151 * array = if there are links defined for this table.
152 * empty array - if there is a links.ini file, but no links on this table
153 * null - if no links.ini exists for this database (hence try auto_links).
ffd93213
EM
154 * @see DB_DataObject::getLinks(), DB_DataObject::getLink()
155 */
156 /**
157 * @return array|null
158 */
00be9182 159 public function links() {
6e1bb60c
N
160 $link = array('activity_id' => 'civicrm_activity:id');
161 return $link;
162 }
96025800 163
adc7f09e 164}