Merge pull request #12114 from jitendrapurohit/membership-2
[civicrm-core.git] / CRM / Activity / BAO / ActivityTarget.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
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 = array();
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, array(1 => array($activity_id, 'Integer')));
89 while ($target->fetch()) {
90 $targetArray[] = $target->contact_id;
91 }
92 return $targetArray;
93 }
94
95 /**
96 * Retrieve names of target contact by activity_id.
97 *
98 * @param int $activityID
99 *
100 * @return array
101 */
102 public static function getTargetNames($activityID) {
103 $targetNames = array();
104
105 if (empty($activityID)) {
106 return $targetNames;
107 }
108 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
109 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
110
111 $query = "
112 SELECT contact_a.id, contact_a.sort_name
113 FROM civicrm_contact contact_a
114 INNER JOIN civicrm_activity_contact ON civicrm_activity_contact.contact_id = contact_a.id
115 WHERE civicrm_activity_contact.activity_id = %1
116 AND civicrm_activity_contact.record_type_id = $targetID
117 AND contact_a.is_deleted = 0
118 ";
119 $queryParam = array(1 => array($activityID, 'Integer'));
120
121 $dao = CRM_Core_DAO::executeQuery($query, $queryParam);
122 while ($dao->fetch()) {
123 $targetNames[$dao->id] = $dao->sort_name;
124 }
125
126 return $targetNames;
127 }
128
129 }