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