Ian province abbreviation patch - issue 724
[civicrm-core.git] / CRM / Activity / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
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 */
33
34/**
b6c94f42 35 * Class for activity task actions.
6a488035
TO
36 */
37class CRM_Activity_Form_Task extends CRM_Core_Form {
38
39 /**
fe482240 40 * The task being performed.
6a488035
TO
41 *
42 * @var int
43 */
44 protected $_task;
45
46 /**
fe482240 47 * The additional clause that we restrict the search with.
6a488035
TO
48 *
49 * @var string
50 */
51 protected $_componentClause = NULL;
52
53 /**
fe482240 54 * The array that holds all the component ids.
6a488035
TO
55 *
56 * @var array
57 */
58 protected $_componentIds;
59
60 /**
fe482240 61 * The array that holds all the contact ids.
6a488035
TO
62 *
63 * @var array
64 */
65 public $_contactIds;
66
67 /**
fe482240 68 * The array that holds all the member ids.
6a488035
TO
69 *
70 * @var array
71 */
72 public $_activityHolderIds;
73
74 /**
fe482240 75 * Build all the data structures needed to build the form.
6a488035 76 */
00be9182 77 public function preProcess() {
6a488035
TO
78 self::preProcessCommon($this);
79 }
80
ffd93213 81 /**
b6c94f42 82 * Common pre-process function.
83 *
c490a46a 84 * @param CRM_Core_Form $form
ffd93213
EM
85 * @param bool $useTable
86 */
00be9182 87 public static function preProcessCommon(&$form, $useTable = FALSE) {
6a488035
TO
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 ";
87767abb 111
112 // CRM-12675
113 $activityClause = NULL;
9d6dcd43 114
2f9320ea 115 $components = CRM_Core_Component::getNames();
4f490fbf 116 $componentClause = array();
f121d107 117 foreach ($components as $componentID => $componentName) {
118 if (!CRM_Core_Permission::check("access $componentName")) {
4f490fbf 119 $componentClause[] = " (activity_type.component_id IS NULL OR activity_type.component_id <> {$componentID}) ";
2f9320ea 120 }
121 }
122 if (!empty($componentClause)) {
123 $activityClause = implode(' AND ', $componentClause);
87767abb 124 }
87767abb 125 $result = $query->searchQuery(0, 0, NULL, FALSE, FALSE, FALSE, FALSE, FALSE, $activityClause);
6a488035
TO
126
127 while ($result->fetch()) {
22e263ad 128 if (!empty($result->activity_id)) {
32864ccf
TO
129 $ids[] = $result->activity_id;
130 }
6a488035
TO
131 }
132 }
6a488035
TO
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",
353ffa53
TO
155 $urlParams
156 ));
6a488035
TO
157 }
158 }
159
160 /**
161 * Given the membership id, compute the contact id
162 * since its used for things like send email
163 */
164 public function setContactIDs() {
165 $IDs = implode(',', $this->_activityHolderIds);
1adb1bc9 166
c1a315f4 167 $activityContacts = CRM_Core_OptionGroup::values('activity_contacts', FALSE, FALSE, FALSE, NULL, 'name');
1adb1bc9 168 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
6a488035 169 $query = "
1adb1bc9 170SELECT contact_id
171FROM civicrm_activity_contact
172WHERE activity_id IN ( $IDs ) AND
173 record_type_id = {$sourceID}";
174
6a488035
TO
175 $dao = CRM_Core_DAO::executeQuery($query);
176 while ($dao->fetch()) {
1adb1bc9 177 $contactIDs[] = $dao->contact_id;
6a488035
TO
178 }
179 $this->_contactIds = $contactIDs;
180 }
181
182 /**
100fef9d 183 * Simple shell that derived classes can call to add buttons to
6a488035
TO
184 * the form with a customized title for the main Submit
185 *
041ab3d1
TO
186 * @param string $title
187 * Title of the main button.
188 * @param string $nextType
189 * Button type for the form after processing.
fd31fa4c
EM
190 * @param string $backType
191 * @param bool $submitOnce
6a488035 192 */
00be9182 193 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
6a488035
TO
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 }
96025800 207
6a488035 208}