Merge pull request #11495 from yashodha/CRM-21637
[civicrm-core.git] / CRM / Activity / Form / Task.php
... / ...
CommitLineData
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 * Class for activity task actions.
36 */
37class CRM_Activity_Form_Task extends CRM_Core_Form {
38
39 /**
40 * The task being performed.
41 *
42 * @var int
43 */
44 protected $_task;
45
46 /**
47 * The additional clause that we restrict the search with.
48 *
49 * @var string
50 */
51 protected $_componentClause = NULL;
52
53 /**
54 * The array that holds all the component ids.
55 *
56 * @var array
57 */
58 protected $_componentIds;
59
60 /**
61 * The array that holds all the contact ids.
62 *
63 * @var array
64 */
65 public $_contactIds;
66
67 /**
68 * The array that holds all the member ids.
69 *
70 * @var array
71 */
72 public $_activityHolderIds;
73
74 /**
75 * Build all the data structures needed to build the form.
76 */
77 public function preProcess() {
78 self::preProcessCommon($this);
79 }
80
81 /**
82 * Common pre-process function.
83 *
84 * @param CRM_Core_Form $form
85 * @param bool $useTable
86 */
87 public static function preProcessCommon(&$form, $useTable = FALSE) {
88 $form->_activityHolderIds = array();
89
90 $values = $form->controller->exportValues($form->get('searchFormName'));
91
92 $form->_task = $values['task'];
93 $activityTasks = CRM_Activity_Task::tasks();
94 $form->assign('taskName', $activityTasks[$form->_task]);
95
96 $ids = array();
97 if ($values['radio_ts'] == 'ts_sel') {
98 foreach ($values as $name => $value) {
99 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
100 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
101 }
102 }
103 }
104 else {
105 $queryParams = $form->get('queryParams');
106 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
107 CRM_Contact_BAO_Query::MODE_ACTIVITY
108 );
109 $query->_distinctComponentClause = '( civicrm_activity.id )';
110 $query->_groupByComponentClause = " GROUP BY civicrm_activity.id ";
111
112 // CRM-12675
113 $activityClause = NULL;
114
115 $components = CRM_Core_Component::getNames();
116 $componentClause = array();
117 foreach ($components as $componentID => $componentName) {
118 if ($componentName != 'CiviCase' && !CRM_Core_Permission::check("access $componentName")) {
119 $componentClause[] = " (activity_type.component_id IS NULL OR activity_type.component_id <> {$componentID}) ";
120 }
121 }
122 if (!empty($componentClause)) {
123 $activityClause = implode(' AND ', $componentClause);
124 }
125 $result = $query->searchQuery(0, 0, NULL, FALSE, FALSE, FALSE, FALSE, FALSE, $activityClause);
126
127 while ($result->fetch()) {
128 if (!empty($result->activity_id)) {
129 $ids[] = $result->activity_id;
130 }
131 }
132 }
133
134 if (!empty($ids)) {
135 $form->_componentClause = ' civicrm_activity.id IN ( ' . implode(',', $ids) . ' ) ';
136 $form->assign('totalSelectedActivities', count($ids));
137 }
138
139 $form->_activityHolderIds = $form->_componentIds = $ids;
140
141 // Set the context for redirection for any task actions.
142 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
143 $urlParams = 'force=1';
144 if (CRM_Utils_Rule::qfKey($qfKey)) {
145 $urlParams .= "&qfKey=$qfKey";
146 }
147
148 $session = CRM_Core_Session::singleton();
149 $searchFormName = strtolower($form->get('searchFormName'));
150 if ($searchFormName == 'search') {
151 $session->replaceUserContext(CRM_Utils_System::url('civicrm/activity/search', $urlParams));
152 }
153 else {
154 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
155 $urlParams
156 ));
157 }
158 }
159
160 /**
161 * Given the membership id, compute the contact id
162 * since it's used for things like send email.
163 */
164 public function setContactIDs() {
165 $IDs = implode(',', $this->_activityHolderIds);
166
167 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
168 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
169 $query = "
170SELECT contact_id
171FROM civicrm_activity_contact
172WHERE activity_id IN ( $IDs ) AND
173 record_type_id = {$sourceID}";
174
175 $dao = CRM_Core_DAO::executeQuery($query);
176 while ($dao->fetch()) {
177 $contactIDs[] = $dao->contact_id;
178 }
179 $this->_contactIds = $contactIDs;
180 }
181
182 /**
183 * Simple shell that derived classes can call to add buttons to
184 * the form with a customized title for the main Submit
185 *
186 * @param string $title
187 * Title of the main button.
188 * @param string $nextType
189 * Button type for the form after processing.
190 * @param string $backType
191 * @param bool $submitOnce
192 */
193 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
194 $this->addButtons(array(
195 array(
196 'type' => $nextType,
197 'name' => $title,
198 'isDefault' => TRUE,
199 ),
200 array(
201 'type' => $backType,
202 'name' => ts('Cancel'),
203 ),
204 ));
205 }
206
207}