Merge pull request #9808 from seamuslee001/CRM-19972
[civicrm-core.git] / CRM / Contribute / Form / Contribution / ThankYou.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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-2017
32 */
33
34 /**
35 * Form for thank-you / success page - 3rd step of online contribution process.
36 */
37 class CRM_Contribute_Form_Contribution_ThankYou extends CRM_Contribute_Form_ContributionBase {
38
39 /**
40 * Membership price set status.
41 */
42 public $_useForMember;
43
44 /**
45 * Set variables up before form is built.
46 */
47 public function preProcess() {
48 parent::preProcess();
49
50 $this->_params = $this->get('params');
51 $this->_lineItem = $this->get('lineItem');
52 $is_deductible = $this->get('is_deductible');
53 $this->assign('is_deductible', $is_deductible);
54 $this->assign('thankyou_title', CRM_Utils_Array::value('thankyou_title', $this->_values));
55 $this->assign('thankyou_text', CRM_Utils_Array::value('thankyou_text', $this->_values));
56 $this->assign('thankyou_footer', CRM_Utils_Array::value('thankyou_footer', $this->_values));
57 $this->assign('max_reminders', CRM_Utils_Array::value('max_reminders', $this->_values));
58 $this->assign('initial_reminder_day', CRM_Utils_Array::value('initial_reminder_day', $this->_values));
59 CRM_Utils_System::setTitle(CRM_Utils_Array::value('thankyou_title', $this->_values));
60 // Make the contributionPageID available to the template
61 $this->assign('contributionPageID', $this->_id);
62 $this->assign('isShare', $this->_values['is_share']);
63
64 $this->_params['is_pay_later'] = $this->get('is_pay_later');
65 $this->assign('is_pay_later', $this->_params['is_pay_later']);
66 if ($this->_params['is_pay_later']) {
67 $this->assign('pay_later_receipt', $this->_values['pay_later_receipt']);
68 }
69 $this->assign('is_for_organization', CRM_Utils_Array::value('is_for_organization', $this->_params));
70 }
71
72 /**
73 * Overwrite action, since we are only showing elements in frozen mode
74 * no help display needed
75 *
76 * @return int
77 */
78 public function getAction() {
79 if ($this->_action & CRM_Core_Action::PREVIEW) {
80 return CRM_Core_Action::VIEW | CRM_Core_Action::PREVIEW;
81 }
82 else {
83 return CRM_Core_Action::VIEW;
84 }
85 }
86
87 /**
88 * Build the form object.
89 */
90 public function buildQuickForm() {
91 $this->assignToTemplate();
92 $this->_ccid = $this->get('ccid');
93 $productID = $this->get('productID');
94 $option = $this->get('option');
95 $membershipTypeID = $this->get('membershipTypeID');
96 $this->assign('receiptFromEmail', CRM_Utils_Array::value('receipt_from_email', $this->_values));
97
98 if ($productID) {
99 CRM_Contribute_BAO_Premium::buildPremiumBlock($this, $this->_id, FALSE, $productID, $option);
100 }
101 if ($this->_priceSetId && !CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_priceSetId, 'is_quick_config')) {
102 $this->assign('lineItem', $this->_lineItem);
103 }
104 else {
105 if (is_array($membershipTypeID)) {
106 $membershipTypeID = current($membershipTypeID);
107 }
108 $this->assign('is_quick_config', 1);
109 $this->_params['is_quick_config'] = 1;
110 }
111 $this->assign('priceSetID', $this->_priceSetId);
112 $this->assign('useForMember', $this->get('useForMember'));
113
114 $params = $this->_params;
115 $invoiceSettings = Civi::settings()->get('contribution_invoice_settings');
116 $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
117 if ($invoicing) {
118 $getTaxDetails = FALSE;
119 $taxTerm = CRM_Utils_Array::value('tax_term', $invoiceSettings);
120 foreach ($this->_lineItem as $key => $value) {
121 foreach ($value as $v) {
122 if (isset($v['tax_rate'])) {
123 if ($v['tax_rate'] != '') {
124 $getTaxDetails = TRUE;
125 }
126 }
127 }
128 }
129 $this->assign('getTaxDetails', $getTaxDetails);
130 $this->assign('taxTerm', $taxTerm);
131 $this->assign('totalTaxAmount', $params['tax_amount']);
132 }
133 if (!empty($this->_values['honoree_profile_id']) && !empty($params['soft_credit_type_id'])) {
134 $honorName = NULL;
135 $softCreditTypes = CRM_Core_OptionGroup::values("soft_credit_type", FALSE);
136
137 $this->assign('soft_credit_type', $softCreditTypes[$params['soft_credit_type_id']]);
138 CRM_Contribute_BAO_ContributionSoft::formatHonoreeProfileFields($this, $params['honor']);
139
140 $fieldTypes = array('Contact');
141 $fieldTypes[] = CRM_Core_BAO_UFGroup::getContactType($this->_values['honoree_profile_id']);
142 $this->buildCustom($this->_values['honoree_profile_id'], 'honoreeProfileFields', TRUE, 'honor', $fieldTypes);
143 }
144
145 $qParams = "reset=1&amp;id={$this->_id}";
146 //pcp elements
147 if ($this->_pcpId) {
148 $qParams .= "&amp;pcpId={$this->_pcpId}";
149 $this->assign('pcpBlock', TRUE);
150 foreach (array(
151 'pcp_display_in_roll',
152 'pcp_is_anonymous',
153 'pcp_roll_nickname',
154 'pcp_personal_note',
155 ) as $val) {
156 if (!empty($this->_params[$val])) {
157 $this->assign($val, $this->_params[$val]);
158 }
159 }
160 }
161
162 $this->assign('qParams', $qParams);
163
164 if ($membershipTypeID) {
165 $transactionID = $this->get('membership_trx_id');
166 $membershipAmount = $this->get('membership_amount');
167 $renewalMode = $this->get('renewal_mode');
168 $this->assign('membership_trx_id', $transactionID);
169 $this->assign('membership_amount', $membershipAmount);
170 $this->assign('renewal_mode', $renewalMode);
171
172 $this->buildMembershipBlock(
173 $this->_membershipContactID,
174 FALSE,
175 $membershipTypeID,
176 TRUE,
177 NULL
178 );
179
180 if (!empty($params['auto_renew'])) {
181 $this->assign('auto_renew', TRUE);
182 }
183 }
184
185 $this->_separateMembershipPayment = $this->get('separateMembershipPayment');
186 $this->assign("is_separate_payment", $this->_separateMembershipPayment);
187
188 if (empty($this->_ccid)) {
189 $this->buildCustom($this->_values['custom_pre_id'], 'customPre', TRUE);
190 $this->buildCustom($this->_values['custom_post_id'], 'customPost', TRUE);
191 }
192 if (!empty($this->_values['onbehalf_profile_id']) &&
193 !empty($params['onbehalf']) &&
194 ($this->_values['is_for_organization'] == 2 ||
195 !empty($params['is_for_organization'])
196 ) && empty($this->_ccid)
197 ) {
198 $fieldTypes = array('Contact', 'Organization');
199 $contactSubType = CRM_Contact_BAO_ContactType::subTypes('Organization');
200 $fieldTypes = array_merge($fieldTypes, $contactSubType);
201 if (is_array($this->_membershipBlock) && !empty($this->_membershipBlock)) {
202 $fieldTypes = array_merge($fieldTypes, array('Membership'));
203 }
204 else {
205 $fieldTypes = array_merge($fieldTypes, array('Contribution'));
206 }
207
208 $this->buildCustom($this->_values['onbehalf_profile_id'], 'onbehalfProfile', TRUE, 'onbehalf', $fieldTypes);
209 }
210
211 $this->assign('trxn_id',
212 CRM_Utils_Array::value('trxn_id',
213 $this->_params
214 )
215 );
216 $this->assign('receive_date',
217 CRM_Utils_Date::mysqlToIso(CRM_Utils_Array::value('receive_date', $this->_params))
218 );
219
220 $defaults = array();
221 $fields = array();
222 foreach ($this->_fields as $name => $dontCare) {
223 if ($name != 'onbehalf' || $name != 'honor') {
224 $fields[$name] = 1;
225 }
226 }
227 $fields['state_province'] = $fields['country'] = $fields['email'] = 1;
228 $contact = $this->_params = $this->controller->exportValues('Main');
229
230 foreach ($fields as $name => $dontCare) {
231 if (isset($contact[$name])) {
232 $defaults[$name] = $contact[$name];
233 if (substr($name, 0, 7) == 'custom_') {
234 $timeField = "{$name}_time";
235 if (isset($contact[$timeField])) {
236 $defaults[$timeField] = $contact[$timeField];
237 }
238 }
239 elseif (in_array($name, array(
240 'addressee',
241 'email_greeting',
242 'postal_greeting',
243 )) && !empty($contact[$name . '_custom'])
244 ) {
245 $defaults[$name . '_custom'] = $contact[$name . '_custom'];
246 }
247 }
248 }
249
250 $this->_submitValues = array_merge($this->_submitValues, $defaults);
251
252 $this->setDefaults($defaults);
253
254 $values['entity_id'] = $this->_id;
255 $values['entity_table'] = 'civicrm_contribution_page';
256
257 CRM_Friend_BAO_Friend::retrieve($values, $data);
258 $tellAFriend = FALSE;
259 if ($this->_pcpId) {
260 if ($this->_pcpBlock['is_tellfriend_enabled']) {
261 $this->assign('friendText', ts('Tell a Friend'));
262 $subUrl = "eid={$this->_pcpId}&blockId={$this->_pcpBlock['id']}&pcomponent=pcp";
263 $tellAFriend = TRUE;
264 }
265 }
266 elseif (!empty($data['is_active'])) {
267 $friendText = $data['title'];
268 $this->assign('friendText', $friendText);
269 $subUrl = "eid={$this->_id}&pcomponent=contribute";
270 $tellAFriend = TRUE;
271 }
272
273 if ($tellAFriend) {
274 if ($this->_action & CRM_Core_Action::PREVIEW) {
275 $url = CRM_Utils_System::url("civicrm/friend",
276 "reset=1&action=preview&{$subUrl}"
277 );
278 }
279 else {
280 $url = CRM_Utils_System::url("civicrm/friend",
281 "reset=1&{$subUrl}"
282 );
283 }
284 $this->assign('friendURL', $url);
285 }
286
287 $this->freeze();
288
289 // can we blow away the session now to prevent hackery
290 // CRM-9491
291 $this->controller->reset();
292 }
293
294 }