Minor code cleanup
[civicrm-core.git] / CRM / Event / Form / Registration / ThankYou.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 *
31 * @package CRM
6b83d5bd 32 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
33 * $Id$
34 *
35 */
36
37/**
38 * This class generates form components for processing Event
39 *
40 */
41class CRM_Event_Form_Registration_ThankYou extends CRM_Event_Form_Registration {
42
43 /**
66f9e52b 44 * Set variables up before form is built.
6a488035
TO
45 *
46 * @return void
6a488035 47 */
00be9182 48 public function preProcess() {
6a488035 49 parent::preProcess();
353ffa53
TO
50 $this->_params = $this->get('params');
51 $this->_lineItem = $this->get('lineItem');
52 $this->_part = $this->get('part');
6a488035
TO
53 $this->_totalAmount = $this->get('totalAmount');
54 $this->_receiveDate = $this->get('receiveDate');
353ffa53
TO
55 $this->_trxnId = $this->get('trxnId');
56 $finalAmount = $this->get('finalAmount');
6a488035
TO
57 $this->assign('finalAmount', $finalAmount);
58 $participantInfo = $this->get('participantInfo');
59 $this->assign('part', $this->_part);
60 $this->assign('participantInfo', $participantInfo);
61 $customGroup = $this->get('customProfile');
62 $this->assign('customProfile', $customGroup);
75b065ce 63 $this->assign('individual', $this->get('individual'));
6a488035 64
5bdcb00b 65 CRM_Event_Form_Registration_Confirm::assignProfiles($this);
6a488035
TO
66
67 CRM_Utils_System::setTitle(CRM_Utils_Array::value('thankyou_title', $this->_values['event']));
68 }
69
70 /**
100fef9d 71 * Overwrite action, since we are only showing elements in frozen mode
6a488035
TO
72 * no help display needed
73 *
74 * @return int
6a488035 75 */
00be9182 76 public function getAction() {
6a488035
TO
77 if ($this->_action & CRM_Core_Action::PREVIEW) {
78 return CRM_Core_Action::VIEW | CRM_Core_Action::PREVIEW;
79 }
80 else {
81 return CRM_Core_Action::VIEW;
82 }
83 }
84
85 /**
66f9e52b 86 * Build the form object.
6a488035 87 *
355ba699 88 * @return void
6a488035
TO
89 */
90 public function buildQuickForm() {
91 // Assign the email address from a contact id lookup as in CRM_Event_BAO_Event->sendMail()
92 $primaryContactId = $this->get('primaryContactId');
93 if ($primaryContactId) {
94 list($displayName, $email) = CRM_Contact_BAO_Contact_Location::getEmailDetails($primaryContactId);
95 $this->assign('email', $email);
96 }
97 $this->assignToTemplate();
03e04002 98
ec5e7bcf 99 $invoicing = CRM_Invoicing_Utils::isInvoicingEnabled();
d9e4ebe7 100 $getTaxDetails = FALSE;
a32709be 101 $taxAmount = 0;
e189cf22 102
103 $lineItemForTemplate = array();
104 if (!empty($this->_lineItem) && is_array($this->_lineItem)) {
105 foreach ($this->_lineItem as $key => $value) {
106 if (!empty($value) && $value != 'skip') {
107 $lineItemForTemplate[$key] = $value;
108 if ($invoicing) {
109 foreach ($value as $v) {
110 if (isset($v['tax_amount']) || isset($v['tax_rate'])) {
111 $taxAmount += $v['tax_amount'];
112 $getTaxDetails = TRUE;
03b412ae 113 }
a32709be
PB
114 }
115 }
6a488035
TO
116 }
117 }
6a488035 118 }
e189cf22 119
120 if ($this->_priceSetId &&
121 !CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_priceSetId, 'is_quick_config') &&
122 !empty($lineItemForTemplate)
123 ) {
124 $this->assign('lineItem', $lineItemForTemplate);
a32709be 125 }
6a488035 126
03b412ae
PB
127 if ($invoicing) {
128 $this->assign('getTaxDetails', $getTaxDetails);
129 $this->assign('totalTaxAmount', $taxAmount);
ec5e7bcf 130 $this->assign('taxTerm', CRM_Invoicing_Utils::getTaxTerm());
03b412ae 131 }
6a488035 132 $this->assign('totalAmount', $this->_totalAmount);
d75f2f47 133
6a488035
TO
134 $hookDiscount = $this->get('hookDiscount');
135 if ($hookDiscount) {
136 $this->assign('hookDiscount', $hookDiscount);
137 }
138
139 $this->assign('receive_date', $this->_receiveDate);
140 $this->assign('trxn_id', $this->_trxnId);
141
142 //cosider total amount.
143 $this->assign('isAmountzero', ($this->_totalAmount <= 0) ? TRUE : FALSE);
144
145 $this->assign('defaultRole', FALSE);
146 if (CRM_Utils_Array::value('defaultRole', $this->_params[0]) == 1) {
147 $this->assign('defaultRole', TRUE);
148 }
149 $defaults = array();
150 $fields = array();
151 if (!empty($this->_fields)) {
152 foreach ($this->_fields as $name => $dontCare) {
153 $fields[$name] = 1;
154 }
155 }
156 $fields['state_province'] = $fields['country'] = $fields['email'] = 1;
157 foreach ($fields as $name => $dontCare) {
158 if (isset($this->_params[0][$name])) {
159 $defaults[$name] = $this->_params[0][$name];
160 if (substr($name, 0, 7) == 'custom_') {
161 $timeField = "{$name}_time";
162 if (isset($this->_params[0][$timeField])) {
163 $defaults[$timeField] = $this->_params[0][$timeField];
164 }
165 }
166 elseif (in_array($name, CRM_Contact_BAO_Contact::$_greetingTypes)
167 && !empty($this->_params[0][$name . '_custom'])
168 ) {
169 $defaults[$name . '_custom'] = $this->_params[0][$name . '_custom'];
170 }
171 }
172 }
173
174 $this->_submitValues = array_merge($this->_submitValues, $defaults);
175
176 $this->setDefaults($defaults);
177
6a488035
TO
178 $params['entity_id'] = $this->_eventId;
179 $params['entity_table'] = 'civicrm_event';
180 $data = array();
181 CRM_Friend_BAO_Friend::retrieve($params, $data);
a7488080 182 if (!empty($data['is_active'])) {
6a488035
TO
183 $friendText = $data['title'];
184 $this->assign('friendText', $friendText);
185 if ($this->_action & CRM_Core_Action::PREVIEW) {
186 $url = CRM_Utils_System::url('civicrm/friend',
187 "eid={$this->_eventId}&reset=1&action=preview&pcomponent=event"
188 );
189 }
190 else {
191 $url = CRM_Utils_System::url('civicrm/friend',
192 "eid={$this->_eventId}&reset=1&pcomponent=event"
193 );
194 }
195 $this->assign('friendURL', $url);
196 }
197
198 $this->freeze();
199
200 //lets give meaningful status message, CRM-4320.
201 $isOnWaitlist = $isRequireApproval = FALSE;
202 if ($this->_allowWaitlist && !$this->_allowConfirmation) {
203 $isOnWaitlist = TRUE;
204 }
205 if ($this->_requireApproval && !$this->_allowConfirmation) {
206 $isRequireApproval = TRUE;
207 }
208 $this->assign('isOnWaitlist', $isOnWaitlist);
209 $this->assign('isRequireApproval', $isRequireApproval);
210
211 // find pcp info
353ffa53 212 $dao = new CRM_PCP_DAO_PCPBlock();
6a488035 213 $dao->entity_table = 'civicrm_event';
353ffa53
TO
214 $dao->entity_id = $this->_eventId;
215 $dao->is_active = 1;
6a488035
TO
216 $dao->find(TRUE);
217
218 if ($dao->id) {
af72b8c7 219 $this->assign('pcpLink', CRM_Utils_System::url('civicrm/contribute/campaign', 'action=add&reset=1&pageId=' . $this->_eventId . '&component=event'));
6a488035
TO
220 $this->assign('pcpLinkText', $dao->link_text);
221 }
222
223 // Assign Participant Count to Lineitem Table
9da8dc8c 224 $this->assign('pricesetFieldsCount', CRM_Price_BAO_PriceSet::getPricesetCount($this->_priceSetId));
6a488035
TO
225
226 // can we blow away the session now to prevent hackery
227 $this->controller->reset();
228 }
229
230 /**
66f9e52b 231 * Process the form submission.
6a488035 232 *
6a488035 233 *
355ba699 234 * @return void
6a488035 235 */
6ea503d4
TO
236 public function postProcess() {
237 }
6a488035
TO
238
239 /**
240 * Return a descriptive name for the page, used in wizard header
241 *
242 * @return string
6a488035
TO
243 */
244 public function getTitle() {
245 return ts('Thank You Page');
246 }
96025800 247
6a488035 248}