Merge pull request #11572 from civicrm/4.7.30-rc
[civicrm-core.git] / CRM / Contribute / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
6a488035
TO
32 */
33
34/**
95cdcc0f 35 * This class generates form components for relationship.
6a488035
TO
36 */
37class CRM_Contribute_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 contribution ids.
6a488035
TO
62 *
63 * @var array
64 */
65 protected $_contributionIds;
66
67 /**
fe482240 68 * The array that holds all the contact ids.
6a488035
TO
69 *
70 * @var array
71 */
72 public $_contactIds;
73
34eec215 74 /**
fe482240 75 * The array that holds all the mapping contribution and contact ids.
34eec215
DS
76 *
77 * @var array
78 */
79 protected $_contributionContactIds = array();
80
81 /**
fe482240 82 * The flag to tell if there are soft credits included.
34eec215
DS
83 *
84 * @var boolean
85 */
86 public $_includesSoftCredits = FALSE;
87
6a488035 88 /**
fe482240 89 * Build all the data structures needed to build the form.
6a488035 90 */
00be9182 91 public function preProcess() {
6a488035
TO
92 self::preProcessCommon($this);
93 }
94
186c9c17 95 /**
c490a46a 96 * @param CRM_Core_Form $form
186c9c17
EM
97 * @param bool $useTable
98 */
00be9182 99 public static function preProcessCommon(&$form, $useTable = FALSE) {
6a488035
TO
100 $form->_contributionIds = array();
101
102 $values = $form->controller->exportValues($form->get('searchFormName'));
103
7f20f38e 104 $form->_task = CRM_Utils_Array::value('task', $values);
6a488035 105 $contributeTasks = CRM_Contribute_Task::tasks();
7f20f38e 106 $form->assign('taskName', CRM_Utils_Array::value($form->_task, $contributeTasks));
6a488035
TO
107
108 $ids = array();
7f20f38e 109 if (isset($values['radio_ts']) && $values['radio_ts'] == 'ts_sel') {
6a488035
TO
110 foreach ($values as $name => $value) {
111 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
112 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
113 }
114 }
115 }
116 else {
117 $queryParams = $form->get('queryParams');
593e0d0b
E
118 $isTest = FALSE;
119 foreach ($queryParams as $fields) {
120 if ($fields[0] == 'contribution_test') {
121 $isTest = TRUE;
122 break;
123 }
124 }
125 if (!$isTest) {
126 $queryParams[] = array(
127 'contribution_test',
128 '=',
129 0,
130 0,
131 0,
132 );
133 }
7f20f38e 134 $returnProperties = array('contribution_id' => 1);
135 $sortOrder = $sortCol = NULL;
353ffa53 136 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
481a74f4 137 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
7f20f38e 138 //Include sort column in select clause.
139 $sortCol = trim(str_replace(array('`', 'asc', 'desc'), '', $sortOrder));
140 $returnProperties[$sortCol] = 1;
6a488035 141 }
665e5ec7 142
34eec215 143 $form->_includesSoftCredits = CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled($queryParams);
7f20f38e 144 $query = new CRM_Contact_BAO_Query($queryParams, $returnProperties, NULL, FALSE, FALSE,
6a488035
TO
145 CRM_Contact_BAO_Query::MODE_CONTRIBUTE
146 );
17caeafe 147 // @todo the function CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled should handle this
148 // can we remove? if not why not?
34eec215
DS
149 if ($form->_includesSoftCredits) {
150 $contactIds = $contributionContactIds = array();
151 $query->_rowCountClause = " count(civicrm_contribution.id)";
152 $query->_groupByComponentClause = " GROUP BY contribution_search_scredit_combined.id, contribution_search_scredit_combined.contact_id, contribution_search_scredit_combined.scredit_id ";
0db6c3e1
TO
153 }
154 else {
34eec215
DS
155 $query->_distinctComponentClause = ' civicrm_contribution.id';
156 $query->_groupByComponentClause = ' GROUP BY civicrm_contribution.id ';
157 }
6a488035
TO
158 $result = $query->searchQuery(0, 0, $sortOrder);
159 while ($result->fetch()) {
160 $ids[] = $result->contribution_id;
34eec215
DS
161 if ($form->_includesSoftCredits) {
162 $contactIds[$result->contact_id] = $result->contact_id;
163 $contributionContactIds["{$result->contact_id}-{$result->contribution_id}"] = $result->contribution_id;
164 }
6a488035 165 }
c1abaf54 166 $result->free();
6a488035
TO
167 $form->assign('totalSelectedContributions', $form->get('rowCount'));
168 }
169
170 if (!empty($ids)) {
171 $form->_componentClause = ' civicrm_contribution.id IN ( ' . implode(',', $ids) . ' ) ';
172
173 $form->assign('totalSelectedContributions', count($ids));
174 }
b9884d60 175 if (!empty($form->_includesSoftCredits) && !empty($contactIds)) {
34eec215
DS
176 $form->_contactIds = $contactIds;
177 $form->_contributionContactIds = $contributionContactIds;
178 }
6a488035
TO
179
180 $form->_contributionIds = $form->_componentIds = $ids;
7f20f38e 181 $form->set('contributionIds', $form->_contributionIds);
6a488035
TO
182
183 //set the context for redirection for any task actions
184 $session = CRM_Core_Session::singleton();
185
186 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
187 $urlParams = 'force=1';
188 if (CRM_Utils_Rule::qfKey($qfKey)) {
189 $urlParams .= "&qfKey=$qfKey";
190 }
191
192 $searchFormName = strtolower($form->get('searchFormName'));
193 if ($searchFormName == 'search') {
194 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contribute/search', $urlParams));
195 }
196 else {
197 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
353ffa53
TO
198 $urlParams
199 ));
6a488035
TO
200 }
201 }
202
59d861cb 203 /**
204 * Sets contribution Ids for unit test.
bc854509 205 *
206 * @param array $contributionIds
59d861cb 207 */
208 public function setContributionIds($contributionIds) {
209 $this->_contributionIds = $contributionIds;
210 }
211
6a488035
TO
212 /**
213 * Given the contribution id, compute the contact id
214 * since its used for things like send email
215 */
216 public function setContactIDs() {
34eec215
DS
217 if (!$this->_includesSoftCredits) {
218 $this->_contactIds = &CRM_Core_DAO::getContactIDsFromComponent(
219 $this->_contributionIds,
220 'civicrm_contribution'
221 );
222 }
6a488035
TO
223 }
224
225 /**
100fef9d 226 * Simple shell that derived classes can call to add buttons to
6a488035
TO
227 * the form with a customized title for the main Submit
228 *
014c4014
TO
229 * @param string $title
230 * Title of the main button.
231 * @param string $nextType
232 * Button type for the form after processing.
da6b46f4
EM
233 * @param string $backType
234 * @param bool $submitOnce
6a488035 235 */
00be9182 236 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
6a488035
TO
237 $this->addButtons(array(
238 array(
239 'type' => $nextType,
240 'name' => $title,
241 'isDefault' => TRUE,
242 ),
243 array(
244 'type' => $backType,
245 'name' => ts('Cancel'),
246 ),
247 )
248 );
249 }
96025800 250
6a488035 251}