Merge pull request #15707 from eileenmcnaughton/setter
[civicrm-core.git] / CRM / Activity / BAO / ActivityTarget.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
32 */
33
34 /**
35 * This class is for activity assignment functions.
36 */
37 class CRM_Activity_BAO_ActivityTarget extends CRM_Activity_DAO_ActivityContact {
38
39 /**
40 * Class constructor.
41 */
42 public function __construct() {
43 parent::__construct();
44 }
45
46 /**
47 * Add activity target.
48 *
49 * @param array $params
50 *
51 * @return object
52 * activity type of object that is added
53 */
54 public static function create(&$params) {
55 $target = new CRM_Activity_BAO_ActivityContact();
56 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
57 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
58
59 $target->copyValues($params);
60 $target->record_type_id = $targetID;
61 return $target->save();
62 }
63
64 /**
65 * Retrieve id of target contact by activity_id.
66 *
67 * @param int $activity_id
68 *
69 * @return mixed
70 */
71 public static function retrieveTargetIdsByActivityId($activity_id) {
72 $targetArray = [];
73 if (!CRM_Utils_Rule::positiveInteger($activity_id)) {
74 return $targetArray;
75 }
76
77 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
78 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
79
80 $sql = "
81 SELECT contact_id
82 FROM civicrm_activity_contact
83 INNER JOIN civicrm_contact ON contact_id = civicrm_contact.id
84 WHERE activity_id = %1
85 AND record_type_id = $targetID
86 AND civicrm_contact.is_deleted = 0
87 ";
88 $target = CRM_Core_DAO::executeQuery($sql, [
89 1 => [
90 $activity_id,
91 'Integer',
92 ],
93 ]);
94 while ($target->fetch()) {
95 $targetArray[] = $target->contact_id;
96 }
97 return $targetArray;
98 }
99
100 /**
101 * Retrieve names of target contact by activity_id.
102 *
103 * @param int $activityID
104 *
105 * @return array
106 */
107 public static function getTargetNames($activityID) {
108 $targetNames = [];
109
110 if (empty($activityID)) {
111 return $targetNames;
112 }
113 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
114 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
115
116 $query = "
117 SELECT contact_a.id, contact_a.sort_name
118 FROM civicrm_contact contact_a
119 INNER JOIN civicrm_activity_contact ON civicrm_activity_contact.contact_id = contact_a.id
120 WHERE civicrm_activity_contact.activity_id = %1
121 AND civicrm_activity_contact.record_type_id = $targetID
122 AND contact_a.is_deleted = 0
123 ";
124 $queryParam = [1 => [$activityID, 'Integer']];
125
126 $dao = CRM_Core_DAO::executeQuery($query, $queryParam);
127 while ($dao->fetch()) {
128 $targetNames[$dao->id] = $dao->sort_name;
129 }
130
131 return $targetNames;
132 }
133
134 }