Import from SVN (r45945, r596)
[civicrm-core.git] / CRM / Contribute / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for relationship
38 *
39 */
40class CRM_Contribute_Form_Task extends CRM_Core_Form {
41
42 /**
43 * the task being performed
44 *
45 * @var int
46 */
47 protected $_task;
48
49 /**
50 * The additional clause that we restrict the search with
51 *
52 * @var string
53 */
54 protected $_componentClause = NULL;
55
56 /**
57 * The array that holds all the component ids
58 *
59 * @var array
60 */
61 protected $_componentIds;
62
63 /**
64 * The array that holds all the contribution ids
65 *
66 * @var array
67 */
68 protected $_contributionIds;
69
70 /**
71 * The array that holds all the contact ids
72 *
73 * @var array
74 */
75 public $_contactIds;
76
77 /**
78 * build all the data structures needed to build the form
79 *
80 * @param
81 *
82 * @return void
83 * @access public
84 */
85 function preProcess() {
86 self::preProcessCommon($this);
87 }
88
89 static function preProcessCommon(&$form, $useTable = FALSE) {
90 $form->_contributionIds = array();
91
92 $values = $form->controller->exportValues($form->get('searchFormName'));
93
94 $form->_task = $values['task'];
95 $contributeTasks = CRM_Contribute_Task::tasks();
96 $form->assign('taskName', $contributeTasks[$form->_task]);
97
98 $ids = array();
99 if ($values['radio_ts'] == 'ts_sel') {
100 foreach ($values as $name => $value) {
101 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
102 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
103 }
104 }
105 }
106 else {
107 $queryParams = $form->get('queryParams');
108 $sortOrder = null;
109 if ( $form->get( CRM_Utils_Sort::SORT_ORDER ) ) {
110 $sortOrder = $form->get( CRM_Utils_Sort::SORT_ORDER );
111 }
112
113 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
114 CRM_Contact_BAO_Query::MODE_CONTRIBUTE
115 );
116 $query->_distinctComponentClause = ' civicrm_contribution.id';
117 $query->_groupByComponentClause = ' GROUP BY civicrm_contribution.id ';
118
119 $result = $query->searchQuery(0, 0, $sortOrder);
120 while ($result->fetch()) {
121 $ids[] = $result->contribution_id;
122 }
123 $form->assign('totalSelectedContributions', $form->get('rowCount'));
124 }
125
126 if (!empty($ids)) {
127 $form->_componentClause = ' civicrm_contribution.id IN ( ' . implode(',', $ids) . ' ) ';
128
129 $form->assign('totalSelectedContributions', count($ids));
130 }
131
132 $form->_contributionIds = $form->_componentIds = $ids;
133
134 //set the context for redirection for any task actions
135 $session = CRM_Core_Session::singleton();
136
137 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
138 $urlParams = 'force=1';
139 if (CRM_Utils_Rule::qfKey($qfKey)) {
140 $urlParams .= "&qfKey=$qfKey";
141 }
142
143 $searchFormName = strtolower($form->get('searchFormName'));
144 if ($searchFormName == 'search') {
145 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contribute/search', $urlParams));
146 }
147 else {
148 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
149 $urlParams
150 ));
151 }
152 }
153
154 /**
155 * Given the contribution id, compute the contact id
156 * since its used for things like send email
157 */
158 public function setContactIDs() {
159 $this->_contactIds = &CRM_Core_DAO::getContactIDsFromComponent($this->_contributionIds,
160 'civicrm_contribution'
161 );
162 }
163
164 /**
165 * simple shell that derived classes can call to add buttons to
166 * the form with a customized title for the main Submit
167 *
168 * @param string $title title of the main button
169 * @param string $type button type for the form after processing
170 *
171 * @return void
172 * @access public
173 */
174 function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
175 $this->addButtons(array(
176 array(
177 'type' => $nextType,
178 'name' => $title,
179 'isDefault' => TRUE,
180 ),
181 array(
182 'type' => $backType,
183 'name' => ts('Cancel'),
184 ),
185 )
186 );
187 }
188}
189