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