Merge pull request #2263 from kurund/CRM-12753
[civicrm-core.git] / CRM / Contribute / Form / Contribution / Main.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
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 processing a Contribution
38 *
39 */
40 class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_ContributionBase {
41
42 /**
43 *Define default MembershipType Id
44 *
45 */
46 public $_defaultMemTypeId;
47
48 public $_relatedOrganizationFound;
49
50 public $_onBehalfRequired = FALSE;
51 public $_onbehalf = FALSE;
52 public $_paymentProcessors;
53 protected $_defaults;
54
55 public $_membershipTypeValues;
56
57 public $_useForMember;
58
59 protected $_ppType;
60 protected $_snippet;
61
62 /**
63 * Function to set variables up before form is built
64 *
65 * @return void
66 * @access public
67 */
68 public function preProcess() {
69 parent::preProcess();
70
71 self::preProcessPaymentOptions($this);
72 if ($this->_snippet) {
73 return;
74 }
75
76 // Make the contributionPageID avilable to the template
77 $this->assign('contributionPageID', $this->_id);
78 $this->assign('isShare', CRM_Utils_Array::value('is_share', $this->_values));
79 $this->assign('isConfirmEnabled', CRM_Utils_Array::value('is_confirm_enabled', $this->_values));
80
81 // make sure we have right permission to edit this user
82 $csContactID = $this->getContactID();
83 $reset = CRM_Utils_Request::retrieve('reset', 'Boolean', CRM_Core_DAO::$_nullObject);
84 $mainDisplay = CRM_Utils_Request::retrieve('_qf_Main_display', 'Boolean', CRM_Core_DAO::$_nullObject);
85
86 if ($reset) {
87 $this->assign('reset', $reset);
88 }
89
90 if ($mainDisplay) {
91 $this->assign('mainDisplay', $mainDisplay);
92 }
93
94 // Possible values for 'is_for_organization':
95 // * 0 - org profile disabled
96 // * 1 - org profile optional
97 // * 2 - org profile required
98 $this->_onbehalf = FALSE;
99 if (!empty($this->_values['is_for_organization'])) {
100 if ($this->_values['is_for_organization'] == 2) {
101 $this->_onBehalfRequired = TRUE;
102 }
103 // Add organization profile if 1 of the following are true:
104 // If the org profile is required
105 if ($this->_onBehalfRequired ||
106 // Or we are building the form for the first time
107 empty($_POST) ||
108 // Or the user has submitted the form and checked the "On Behalf" checkbox
109 !empty($_POST['is_for_organization'])
110 ) {
111 $this->_onbehalf = TRUE;
112 CRM_Contribute_Form_Contribution_OnBehalfOf::preProcess($this);
113 }
114 }
115 $this->assign('onBehalfRequired', $this->_onBehalfRequired);
116
117 if (!empty($this->_pcpInfo['id']) && !empty($this->_pcpInfo['intro_text'])) {
118 $this->assign('intro_text', $this->_pcpInfo['intro_text']);
119 }
120 elseif (!empty($this->_values['intro_text'])) {
121 $this->assign('intro_text', $this->_values['intro_text']);
122 }
123
124 $qParams = "reset=1&amp;id={$this->_id}";
125 if ($pcpId = CRM_Utils_Array::value('pcp_id', $this->_pcpInfo)) {
126 $qParams .= "&amp;pcpId={$pcpId}";
127 }
128 $this->assign('qParams', $qParams);
129
130 if (!empty($this->_values['footer_text'])) {
131 $this->assign('footer_text', $this->_values['footer_text']);
132 }
133
134 //CRM-5001
135 if (CRM_Utils_Array::value('is_for_organization', $this->_values)) {
136 $msg = ts('Mixed profile not allowed for on behalf of registration/sign up.');
137 if ($preID = CRM_Utils_Array::value('custom_pre_id', $this->_values)) {
138 $preProfile = CRM_Core_BAO_UFGroup::profileGroups($preID);
139 foreach (array(
140 'Individual', 'Organization', 'Household') as $contactType) {
141 if (in_array($contactType, $preProfile) &&
142 (in_array('Membership', $preProfile) ||
143 in_array('Contribution', $preProfile)
144 )
145 ) {
146 CRM_Core_Error::fatal($msg);
147 }
148 }
149 }
150
151 if ($postID = CRM_Utils_Array::value('custom_post_id', $this->_values)) {
152 $postProfile = CRM_Core_BAO_UFGroup::profileGroups($postID);
153 foreach (array(
154 'Individual', 'Organization', 'Household') as $contactType) {
155 if (in_array($contactType, $postProfile) &&
156 (in_array('Membership', $postProfile) ||
157 in_array('Contribution', $postProfile)
158 )
159 ) {
160 CRM_Core_Error::fatal($msg);
161 }
162 }
163 }
164 }
165 }
166
167 function setDefaultValues() {
168 // check if the user is registered and we have a contact ID
169 $contactID = $this->getContactID();
170
171 if (!empty($contactID)) {
172 $fields = array();
173 $removeCustomFieldTypes = array('Contribution', 'Membership');
174 $contribFields = CRM_Contribute_BAO_Contribution::getContributionFields();
175
176 // remove component related fields
177 foreach ($this->_fields as $name => $dontCare) {
178 //don't set custom data Used for Contribution (CRM-1344)
179 if (substr($name, 0, 7) == 'custom_') {
180 $id = substr($name, 7);
181 if (!CRM_Core_BAO_CustomGroup::checkCustomField($id, $removeCustomFieldTypes)) {
182 continue;
183 }
184 // ignore component fields
185 }
186 elseif (array_key_exists($name, $contribFields) || (substr($name, 0, 11) == 'membership_') || (substr($name, 0, 13) == 'contribution_')) {
187 continue;
188 }
189 $fields[$name] = 1;
190 }
191
192 if (!empty($fields)) {
193 CRM_Core_BAO_UFGroup::setProfileDefaults($contactID, $fields, $this->_defaults);
194 }
195
196 $billingDefaults = $this->getProfileDefaults('Billing', $contactID);
197 $this->_defaults = array_merge($this->_defaults, $billingDefaults);
198 }
199
200 //set custom field defaults set by admin if value is not set
201 if (!empty($this->_fields)) {
202 //load default campaign from page.
203 if (array_key_exists('contribution_campaign_id', $this->_fields)) {
204 $this->_defaults['contribution_campaign_id'] = CRM_Utils_Array::value('campaign_id', $this->_values);
205 }
206
207 //set custom field defaults
208 foreach ($this->_fields as $name => $field) {
209 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($name)) {
210 if (!isset($this->_defaults[$name])) {
211 CRM_Core_BAO_CustomField::setProfileDefaults($customFieldID, $name, $this->_defaults,
212 NULL, CRM_Profile_Form::MODE_REGISTER
213 );
214 }
215 }
216 }
217 }
218
219 // // hack to simplify credit card entry for testing
220 // $this->_defaults['credit_card_type'] = 'Visa';
221 // $this->_defaults['amount'] = 168;
222 // $this->_defaults['credit_card_number'] = '4111111111111111';
223 // $this->_defaults['cvv2'] = '000';
224 // $this->_defaults['credit_card_exp_date'] = array('Y' => '2014', 'M' => '05');
225
226 // // hack to simplify direct debit entry for testing
227 // $this->_defaults['account_holder'] = 'Max Müller';
228 // $this->_defaults['bank_account_number'] = '12345678';
229 // $this->_defaults['bank_identification_number'] = '12030000';
230 // $this->_defaults['bank_name'] = 'Bankname';
231
232 //build set default for pledge overdue payment.
233 if (CRM_Utils_Array::value('pledge_id', $this->_values)) {
234 //get all payment statuses.
235 $statuses = array();
236 $returnProperties = array('status_id');
237 CRM_Core_DAO::commonRetrieveAll('CRM_Pledge_DAO_PledgePayment', 'pledge_id', $this->_values['pledge_id'],
238 $statuses, $returnProperties
239 );
240
241 $paymentStatusTypes = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
242 $duePayment = FALSE;
243 foreach ($statuses as $payId => $value) {
244 if ($paymentStatusTypes[$value['status_id']] == 'Overdue') {
245 $this->_defaults['pledge_amount'][$payId] = 1;
246 }
247 elseif (!$duePayment && $paymentStatusTypes[$value['status_id']] == 'Pending') {
248 $this->_defaults['pledge_amount'][$payId] = 1;
249 $duePayment = TRUE;
250 }
251 }
252 }
253 elseif (CRM_Utils_Array::value('pledge_block_id', $this->_values)) {
254 //set default to one time contribution.
255 $this->_defaults['is_pledge'] = 0;
256 }
257
258 // to process Custom data that are appended to URL
259 $getDefaults = CRM_Core_BAO_CustomGroup::extractGetParams($this, "'Contact', 'Individual', 'Contribution'");
260 if (!empty($getDefaults)) {
261 $this->_defaults = array_merge($this->_defaults, $getDefaults);
262 }
263
264 $config = CRM_Core_Config::singleton();
265 // set default country from config if no country set
266 if (!CRM_Utils_Array::value("billing_country_id-{$this->_bltID}", $this->_defaults)) {
267 $this->_defaults["billing_country_id-{$this->_bltID}"] = $config->defaultContactCountry;
268 }
269
270 // set default state/province from config if no state/province set
271 if (!CRM_Utils_Array::value("billing_state_province_id-{$this->_bltID}", $this->_defaults)) {
272 $this->_defaults["billing_state_province_id-{$this->_bltID}"] = $config->defaultContactStateProvince;
273 }
274
275 // now fix all state country selectors
276 CRM_Core_BAO_Address::fixAllStateSelects($this, $this->_defaults);
277
278 if ($this->_priceSetId) {
279 if (($this->_useForMember && !empty($this->_currentMemberships)) || $this->_defaultMemTypeId) {
280 $selectedCurrentMemTypes = array();
281 foreach ($this->_priceSet['fields'] as $key => $val) {
282 foreach ($val['options'] as $keys => $values) {
283 $opMemTypeId = CRM_Utils_Array::value('membership_type_id', $values);
284 if ($opMemTypeId &&
285 in_array($opMemTypeId, $this->_currentMemberships) &&
286 !in_array($opMemTypeId, $selectedCurrentMemTypes)
287 ) {
288 if ($val['html_type'] == 'CheckBox') {
289 $this->_defaults["price_{$key}"][$keys] = 1;
290 }
291 else {
292 $this->_defaults["price_{$key}"] = $keys;
293 }
294 $selectedCurrentMemTypes[] = $values['membership_type_id'];
295 }
296 elseif (CRM_Utils_Array::value('is_default', $values) &&
297 !$opMemTypeId &&
298 (!isset($this->_defaults["price_{$key}"]) ||
299 ($val['html_type'] == 'CheckBox' && !isset($this->_defaults["price_{$key}"][$keys]))
300 )
301 ) {
302 if ($val['html_type'] == 'CheckBox') {
303 $this->_defaults["price_{$key}"][$keys] = 1;
304 }
305 else {
306 $this->_defaults["price_{$key}"] = $keys;
307 }
308 }
309 }
310 }
311 }
312 else {
313 CRM_Price_BAO_PriceSet::setDefaultPriceSet($this, $this->_defaults);
314 }
315 }
316
317 if (!empty($this->_paymentProcessors)) {
318 foreach ($this->_paymentProcessors as $pid => $value) {
319 if (CRM_Utils_Array::value('is_default', $value)) {
320 $this->_defaults['payment_processor'] = $pid;
321 }
322 }
323 }
324
325 return $this->_defaults;
326 }
327
328 /**
329 * Function to build the form
330 *
331 * @return None
332 * @access public
333 */
334 public function buildQuickForm() {
335 // build profiles first so that we can determine address fields etc
336 // and then show copy address checkbox
337 $this->buildCustom($this->_values['custom_pre_id'], 'customPre');
338 $this->buildCustom($this->_values['custom_post_id'], 'customPost');
339
340 if (!empty($this->_fields)) {
341 $profileAddressFields = array();
342 foreach ($this->_fields as $key => $value) {
343 CRM_Core_BAO_UFField::assignAddressField($key, $profileAddressFields);
344 }
345 $this->set('profileAddressFields', $profileAddressFields);
346 }
347
348 // Build payment processor form
349 if ($this->_ppType) {
350 CRM_Core_Payment_ProcessorForm::buildQuickForm($this);
351 // Return if we are in an ajax callback
352 if ($this->_snippet) {
353 return;
354 }
355 }
356
357 $config = CRM_Core_Config::singleton();
358
359 if ($this->_onbehalf) {
360 CRM_Contribute_Form_Contribution_OnBehalfOf::buildQuickForm($this);
361 }
362
363 $this->applyFilter('__ALL__', 'trim');
364 $this->add('text', "email-{$this->_bltID}",
365 ts('Email Address'),
366 array('size' => 30, 'maxlength' => 60, 'class' => 'email'),
367 TRUE
368 );
369 $this->addRule("email-{$this->_bltID}", ts('Email is not valid.'), 'email');
370 $pps = array();
371 $onlinePaymentProcessorEnabled = FALSE;
372 if (!empty($this->_paymentProcessors)) {
373 foreach ($this->_paymentProcessors as $key => $name) {
374 if($name['billing_mode'] == 1) {
375 $onlinePaymentProcessorEnabled = TRUE;
376 }
377 $pps[$key] = $name['name'];
378 }
379 }
380 if (CRM_Utils_Array::value('is_pay_later', $this->_values)) {
381 $pps[0] = $this->_values['pay_later_text'];
382 }
383
384 if (count($pps) > 1) {
385 $this->addRadio('payment_processor', ts('Payment Method'), $pps,
386 NULL, "&nbsp;", TRUE
387 );
388 }
389 elseif (!empty($pps)) {
390 $key = array_keys($pps);
391 $key = array_pop($key);
392 $this->addElement('hidden', 'payment_processor', $key);
393 if ($key === 0) {
394 $this->assign('is_pay_later', $this->_values['is_pay_later']);
395 $this->assign('pay_later_text', $this->_values['pay_later_text']);
396 }
397 }
398
399 $contactID = $this->getContactID();
400 if($this->getContactID() === '0') {
401 $this->addCidZeroOptions($onlinePaymentProcessorEnabled);
402 }
403 //build pledge block.
404 $this->_useForMember = 0;
405 //don't build membership block when pledge_id is passed
406 if (!CRM_Utils_Array::value('pledge_id', $this->_values)) {
407 $this->_separateMembershipPayment = FALSE;
408 if (in_array('CiviMember', $config->enableComponents)) {
409 $isTest = 0;
410 if ($this->_action & CRM_Core_Action::PREVIEW) {
411 $isTest = 1;
412 }
413
414 if ($this->_priceSetId &&
415 (CRM_Core_Component::getComponentID('CiviMember') == CRM_Utils_Array::value('extends', $this->_priceSet))
416 ) {
417 $this->_useForMember = 1;
418 $this->set('useForMember', $this->_useForMember);
419 }
420
421 $this->_separateMembershipPayment = CRM_Member_BAO_Membership::buildMembershipBlock($this,
422 $this->_id,
423 $this->_membershipContactID,
424 TRUE, NULL, FALSE,
425 $isTest
426 );
427 }
428 $this->set('separateMembershipPayment', $this->_separateMembershipPayment);
429 }
430 $this->assign('useForMember', $this->_useForMember);
431 // If we configured price set for contribution page
432 // we are not allow membership signup as well as any
433 // other contribution amount field, CRM-5095
434 if (isset($this->_priceSetId) && $this->_priceSetId) {
435 $this->add('hidden', 'priceSetId', $this->_priceSetId);
436 // build price set form.
437 $this->set('priceSetId', $this->_priceSetId);
438 CRM_Price_BAO_PriceSet::buildPriceSet($this);
439 if ($this->_values['is_monetary'] &&
440 $this->_values['is_recur'] && !CRM_Utils_Array::value('pledge_id', $this->_values)
441 ) {
442 self::buildRecur($this);
443 }
444 }
445
446 if ($this->_priceSetId) {
447 $is_quick_config = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_priceSetId, 'is_quick_config');
448 if ($is_quick_config) {
449 $this->_useForMember = 0;
450 $this->set('useForMember', $this->_useForMember);
451 }
452 }
453
454 if ($this->_values['is_for_organization']) {
455 $this->buildOnBehalfOrganization();
456 }
457
458 //we allow premium for pledge during pledge creation only.
459 if (!CRM_Utils_Array::value('pledge_id', $this->_values)) {
460 CRM_Contribute_BAO_Premium::buildPremiumBlock($this, $this->_id, TRUE);
461 }
462
463 if ($this->_values['honor_block_is_active']) {
464 $this->buildHonorBlock();
465 }
466
467
468 //don't build pledge block when mid is passed
469 if (!$this->_mid) {
470 $config = CRM_Core_Config::singleton();
471 if (in_array('CiviPledge', $config->enableComponents)
472 && CRM_Utils_Array::value('pledge_block_id', $this->_values)
473 ) {
474 CRM_Pledge_BAO_PledgeBlock::buildPledgeBlock($this);
475 }
476 }
477
478 //to create an cms user
479 if (!$this->_userID) {
480 $createCMSUser = FALSE;
481
482 if ($this->_values['custom_pre_id']) {
483 $profileID = $this->_values['custom_pre_id'];
484 $createCMSUser = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $profileID, 'is_cms_user');
485 }
486
487 if (!$createCMSUser &&
488 $this->_values['custom_post_id']
489 ) {
490 if (!is_array($this->_values['custom_post_id'])) {
491 $profileIDs = array($this->_values['custom_post_id']);
492 }
493 else {
494 $profileIDs = $this->_values['custom_post_id'];
495 }
496 foreach ($profileIDs as $pid) {
497 if (CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $pid, 'is_cms_user')) {
498 $profileID = $pid;
499 $createCMSUser = TRUE;
500 break;
501 }
502 }
503 }
504
505 if ($createCMSUser) {
506 CRM_Core_BAO_CMSUser::buildForm($this, $profileID, TRUE);
507 }
508 }
509 if ($this->_pcpId) {
510 if ($pcpSupporter = CRM_PCP_BAO_PCP::displayName($this->_pcpId)) {
511 $pcp_supporter_text = ts('This contribution is being made thanks to effort of <strong>%1</strong>, who supports our campaign. ', array(1 => $pcpSupporter));
512 // Only tell people that can also create a PCP if the contribution page has a non-empty value in the "Create Personal Campaign Page link" field.
513 $text = CRM_PCP_BAO_PCP::getPcpBlockStatus($this->_id, 'contribute');
514 if(!empty($text)) {
515 $pcp_supporter_text .= "You can support it as well - once you complete the donation, you will be able to create your own Personal Campaign Page!";
516 }
517 $this->assign('pcpSupporterText', $pcp_supporter_text);
518 }
519 $prms = array('id' => $this->_pcpId);
520 CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCP', $prms, $pcpInfo);
521 if ($pcpInfo['is_honor_roll']) {
522 $this->assign('isHonor', TRUE);
523 $this->add('checkbox', 'pcp_display_in_roll', ts('Show my contribution in the public honor roll'), NULL, NULL,
524 array('onclick' => "showHideByValue('pcp_display_in_roll','','nameID|nickID|personalNoteID','block','radio',false); pcpAnonymous( );")
525 );
526 $extraOption = array('onclick' => "return pcpAnonymous( );");
527 $elements = array();
528 $elements[] = &$this->createElement('radio', NULL, '', ts('Include my name and message'), 0, $extraOption);
529 $elements[] = &$this->createElement('radio', NULL, '', ts('List my contribution anonymously'), 1, $extraOption);
530 $this->addGroup($elements, 'pcp_is_anonymous', NULL, '&nbsp;&nbsp;&nbsp;');
531 $this->setDefaults(array('pcp_display_in_roll' => 1));
532 $this->setDefaults(array('pcp_is_anonymous' => 1));
533
534 $this->add('text', 'pcp_roll_nickname', ts('Name'), array('maxlength' => 30));
535 $this->add('textarea', 'pcp_personal_note', ts('Personal Note'), array('style' => 'height: 3em; width: 40em;'));
536 }
537 }
538
539 //we have to load confirm contribution button in template
540 //when multiple payment processor as the user
541 //can toggle with payment processor selection
542 $billingModePaymentProcessors = 0;
543 if ( !empty( $this->_paymentProcessors ) ) {
544 foreach ($this->_paymentProcessors as $key => $values) {
545 if ($values['billing_mode'] == CRM_Core_Payment::BILLING_MODE_BUTTON) {
546 $billingModePaymentProcessors++;
547 }
548 }
549 }
550
551 if ($billingModePaymentProcessors && count($this->_paymentProcessors) == $billingModePaymentProcessors) {
552 $allAreBillingModeProcessors = TRUE;
553 } else {
554 $allAreBillingModeProcessors = FALSE;
555 }
556
557 if (!($allAreBillingModeProcessors && !$this->_values['is_pay_later'])) {
558 $submitButton = array(
559 'type' => 'upload',
560 'name' => ts('Contribute'),
561 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
562 'isDefault' => TRUE,
563 );
564 // Add submit-once behavior when confirm page disabled
565 if (empty($this->_values['is_confirm_enabled'])) {
566 $submitButton['js'] = array('onclick' => "return submitOnce(this,'" . $this->_name . "','" . ts('Processing') . "');");
567 }
568 $this->addButtons(array($submitButton));
569 }
570
571 $this->addFormRule(array('CRM_Contribute_Form_Contribution_Main', 'formRule'), $this);
572 }
573
574 /**
575 * Function to add the honor block
576 *
577 * @return None
578 * @access public
579 */
580 function buildHonorBlock() {
581 $this->assign('honor_block_is_active', TRUE);
582 $this->set('honor_block_is_active', TRUE);
583
584 $this->assign('honor_block_title', CRM_Utils_Array::value('honor_block_title', $this->_values));
585 $this->assign('honor_block_text', CRM_Utils_Array::value('honor_block_text', $this->_values));
586
587 $attributes = CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact');
588 $extraOption = array('onclick' => "enableHonorType();");
589 // radio button for Honor Type
590 $honorOptions = array();
591 $honor = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'honor_type_id');
592 foreach ($honor as $key => $var) {
593 $honorTypes[$key] = $this->createElement('radio', NULL, NULL, $var, $key, $extraOption);
594 }
595 $this->addGroup($honorTypes, 'honor_type_id', NULL);
596
597 // prefix
598 $this->addElement('select', 'honor_prefix_id', ts('Prefix'), array('' => ts('- prefix -')) + CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id'));
599 // first_name
600 $this->addElement('text', 'honor_first_name', ts('First Name'), $attributes['first_name']);
601
602 //last_name
603 $this->addElement('text', 'honor_last_name', ts('Last Name'), $attributes['last_name']);
604
605 //email
606 $this->addElement('text', 'honor_email', ts('Email Address'), array('class' => 'email'));
607 $this->addRule('honor_email', ts('Honoree Email is not valid.'), 'email');
608 }
609
610 /**
611 * build elements to enable pay on behalf of an organization.
612 *
613 * @access public
614 */
615 function buildOnBehalfOrganization() {
616 if ($this->_membershipContactID) {
617 $entityBlock = array('contact_id' => $this->_membershipContactID);
618 CRM_Core_BAO_Location::getValues($entityBlock, $this->_defaults);
619 }
620
621 if (!$this->_onBehalfRequired) {
622 $this->addElement('checkbox', 'is_for_organization',
623 $this->_values['for_organization'],
624 NULL, array('onclick' => "showOnBehalf( );")
625 );
626 }
627
628 $this->assign('is_for_organization', TRUE);
629 $this->assign('urlPath', 'civicrm/contribute/transact');
630 }
631
632 /**
633 * build elements to collect information for recurring contributions
634 *
635 * @access public
636 */
637 public static function buildRecur(&$form) {
638 $attributes = CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionRecur');
639 $className = get_class($form);
640
641 $form->assign('is_recur_interval', CRM_Utils_Array::value('is_recur_interval', $form->_values));
642 $form->assign('is_recur_installments', CRM_Utils_Array::value('is_recur_installments', $form->_values));
643
644 $form->add('checkbox', 'is_recur', ts('I want to contribute this amount'), NULL);
645
646 if (CRM_Utils_Array::value('is_recur_interval', $form->_values) || $className == 'CRM_Contribute_Form_Contribution') {
647 $form->add('text', 'frequency_interval', ts('Every'), $attributes['frequency_interval']);
648 $form->addRule('frequency_interval', ts('Frequency must be a whole number (EXAMPLE: Every 3 months).'), 'integer');
649 }
650 else {
651 // make sure frequency_interval is submitted as 1 if given no choice to user.
652 $form->add('hidden', 'frequency_interval', 1);
653 }
654
655 $frUnits = CRM_Utils_Array::value('recur_frequency_unit', $form->_values);
656 if (empty($frUnits) &&
657 $className == 'CRM_Contribute_Form_Contribution'
658 ) {
659 $frUnits = implode(CRM_Core_DAO::VALUE_SEPARATOR,
660 CRM_Core_OptionGroup::values('recur_frequency_units')
661 );
662 }
663
664 $unitVals = explode(CRM_Core_DAO::VALUE_SEPARATOR, $frUnits);
665
666 // CRM 10860, display text instead of a dropdown if there's only 1 frequency unit
667 if(sizeof($unitVals) == 1) {
668 $form->assign('one_frequency_unit', true);
669 $unit = $unitVals[0];
670 $form->add('hidden', 'frequency_unit', $unit);
671 if (CRM_Utils_Array::value('is_recur_interval', $form->_values) || $className == 'CRM_Contribute_Form_Contribution') {
672 $unit .= "(s)";
673 }
674 $form->assign('frequency_unit', $unit);
675 } else {
676 $form->assign('one_frequency_unit', false);
677 $units = array();
678 $frequencyUnits = CRM_Core_OptionGroup::values('recur_frequency_units');
679 foreach ($unitVals as $key => $val) {
680 if (array_key_exists($val, $frequencyUnits)) {
681 $units[$val] = $frequencyUnits[$val];
682 if (CRM_Utils_Array::value('is_recur_interval', $form->_values) || $className == 'CRM_Contribute_Form_Contribution') {
683 $units[$val] = "{$frequencyUnits[$val]}(s)";
684 }
685 }
686 }
687 $frequencyUnit = &$form->add('select', 'frequency_unit', NULL, $units);
688 }
689
690
691 // FIXME: Ideally we should freeze select box if there is only
692 // one option but looks there is some problem /w QF freeze.
693 //if ( count( $units ) == 1 ) {
694 //$frequencyUnit->freeze( );
695 //}
696
697 $form->add('text', 'installments', ts('installments'),
698 $attributes['installments']
699 );
700 $form->addRule('installments', ts('Number of installments must be a whole number.'), 'integer');
701 }
702
703 /**
704 * global form rule
705 *
706 * @param array $fields the input form values
707 * @param array $files the uploaded files if any
708 * @param array $options additional user data
709 *
710 * @return true if no errors, else array of errors
711 * @access public
712 * @static
713 */
714 static function formRule($fields, $files, $self) {
715 $errors = array();
716 $amount = self::computeAmount($fields, $self);
717
718 if ((CRM_Utils_Array::value('selectMembership', $fields) &&
719 $fields['selectMembership'] != 'no_thanks'
720 ) ||
721 (CRM_Utils_Array::value('priceSetId', $fields) &&
722 $self->_useForMember
723 )
724 ) {
725 $lifeMember = CRM_Member_BAO_Membership::getAllContactMembership($self->_userID, FALSE, TRUE);
726
727 $membershipOrgDetails = CRM_Member_BAO_MembershipType::getMembershipTypeOrganization();
728
729 $unallowedOrgs = array();
730 foreach (array_keys($lifeMember) as $memTypeId) {
731 $unallowedOrgs[] = $membershipOrgDetails[$memTypeId];
732 }
733 }
734
735 //check for atleast one pricefields should be selected
736 if (CRM_Utils_Array::value('priceSetId', $fields)) {
737 $priceField = new CRM_Price_DAO_PriceField();
738 $priceField->price_set_id = $fields['priceSetId'];
739 $priceField->orderBy('weight');
740 $priceField->find();
741
742 $check = array();
743 $membershipIsActive = TRUE;
744 $previousId = $otherAmount = FALSE;
745 while ($priceField->fetch()) {
746
747 if ($self->_quickConfig && ($priceField->name == 'contribution_amount' || $priceField->name == 'membership_amount')) {
748 $previousId = $priceField->id;
749 if ($priceField->name == 'membership_amount' && !$priceField->is_active ) {
750 $membershipIsActive = FALSE;
751 }
752 }
753 if ($priceField->name == 'other_amount') {
754 if ($self->_quickConfig && !CRM_Utils_Array::value("price_{$priceField->id}", $fields) &&
755 array_key_exists("price_{$previousId}", $fields) && isset($fields["price_{$previousId}"]) && $self->_values['fee'][$previousId]['name'] == 'contribution_amount' && empty($fields["price_{$previousId}"])) {
756 $otherAmount = $priceField->id;
757 }
758 elseif (!empty($fields["price_{$priceField->id}"])) {
759 $otherAmountVal = $fields["price_{$priceField->id}"];
760 $min = CRM_Utils_Array::value('min_amount', $self->_values);
761 $max = CRM_Utils_Array::value('max_amount', $self->_values);
762 if ($min && $otherAmountVal < $min) {
763 $errors["price_{$priceField->id}"] = ts('Contribution amount must be at least %1',
764 array(1 => $min)
765 );
766 }
767 if ($max && $otherAmountVal > $max) {
768 $errors["price_{$priceField->id}"] = ts('Contribution amount cannot be more than %1.',
769 array(1 => $max)
770 );
771 }
772 }
773 }
774 if (!empty($fields["price_{$priceField->id}"]) || ($previousId == $priceField->id && isset($fields["price_{$previousId}"])
775 && empty($fields["price_{$previousId}"]))) {
776 $check[] = $priceField->id;
777 }
778 }
779
780 // CRM-12233
781 if ($membershipIsActive && !$self->_membershipBlock['is_required']
782 && $self->_values['amount_block_is_active']) {
783 $membershipFieldId = $contributionFieldId = $errorKey = $otherFieldId = NULL;
784 foreach ($self->_values['fee'] as $fieldKey => $fieldValue) {
785 // if 'No thank you' membership is selected then set $membershipFieldId
786 if ($fieldValue['name'] == 'membership_amount' && CRM_Utils_Array::value('price_' . $fieldKey, $fields) == 0) {
787 $membershipFieldId = $fieldKey;
788 }
789 elseif ($membershipFieldId) {
790 if ($fieldValue['name'] == 'other_amount') {
791 $otherFieldId = $fieldKey;
792 }
793 elseif ($fieldValue['name'] == 'contribution_amount') {
794 $contributionFieldId = $fieldKey;
795 }
796
797 if (!$errorKey || CRM_Utils_Array::value('price_' . $contributionFieldId, $fields) == '0') {
798 $errorKey = $fieldKey;
799 }
800 }
801 }
802 // $membershipFieldId is set and additional amount is 'No thank you' or NULL then throw error
803 if ($membershipFieldId && !(CRM_Utils_Array::value('price_' . $contributionFieldId, $fields, -1) > 0)
804 && !CRM_Utils_Array::value('price_' . $otherFieldId, $fields)) {
805 $errors["price_{$errorKey}"] = ts('Additional Contribution is required.');
806 }
807 }
808 if (empty($check)) {
809 if ($self->_useForMember == 1 && $membershipIsActive) {
810 $errors['_qf_default'] = ts('Select at least one option from Membership Type(s).');
811 }
812 else {
813 $errors['_qf_default'] = ts('Select at least one option from Contribution(s).');
814 }
815 }
816 if($otherAmount && !empty($check)) {
817 $errors["price_{$otherAmount}"] = ts('Amount is required field.');
818 }
819
820 if ($self->_useForMember == 1 && !empty($check) && $membershipIsActive) {
821 $priceFieldIDS = array();
822 $priceFieldMemTypes = array();
823
824 foreach ($self->_priceSet['fields'] as $priceId => $value) {
825 if (!empty($fields['price_' . $priceId]) || ($self->_quickConfig && $value['name'] == 'membership_amount' && !CRM_Utils_Array::value('is_required', $self->_membershipBlock))) {
826 if (CRM_Utils_Array::value('price_' . $priceId, $fields) && is_array($fields['price_' . $priceId])) {
827 foreach ($fields['price_' . $priceId] as $priceFldVal => $isSet) {
828 if ($isSet) {
829 $priceFieldIDS[] = $priceFldVal;
830 }
831 }
832 }
833 elseif (!$value['is_enter_qty'] && CRM_Utils_Array::value('price_' . $priceId, $fields)) {
834 // The check for {!$value['is_enter_qty']} is done since, quantity fields allow entering
835 // quantity. And the quantity can't be conisdered as civicrm_price_field_value.id, CRM-9577
836 $priceFieldIDS[] = $fields['price_' . $priceId];
837 }
838
839 if (CRM_Utils_Array::value('options', $value)) {
840 foreach ($value['options'] as $val) {
841 if (CRM_Utils_Array::value('membership_type_id', $val)) {
842 $priceFieldMemTypes[] = $val['membership_type_id'];
843 }
844 }
845 }
846 }
847 }
848
849 if (!empty($lifeMember)) {
850 foreach ($priceFieldIDS as $priceFieldId) {
851 if (($id = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue', $priceFieldId, 'membership_type_id')) &&
852 in_array($membershipOrgDetails[$id], $unallowedOrgs)
853 ) {
854 $errors['_qf_default'] = ts('You already have a lifetime membership and cannot select a membership with a shorter term.');
855 break;
856 }
857 }
858 }
859
860 if (!empty($priceFieldIDS)) {
861 $ids = implode(',', $priceFieldIDS);
862
863 $priceFieldIDS['id'] = $fields['priceSetId'];
864 $self->set('memberPriceFieldIDS', $priceFieldIDS);
865 $count = CRM_Price_BAO_PriceSet::getMembershipCount($ids);
866 foreach ($count as $id => $occurance) {
867 if ($occurance > 1) {
868 $errors['_qf_default'] = ts('You have selected multiple memberships for the same organization or entity. Please review your selections and choose only one membership per entity. Contact the site administrator if you need assistance.');
869 }
870 }
871 }
872
873 if (empty($priceFieldMemTypes)) {
874 $errors['_qf_default'] = ts('Please select at least one membership option.');
875 }
876 }
877
878 CRM_Price_BAO_PriceSet::processAmount($self->_values['fee'],
879 $fields, $lineItem
880 );
881
882 if ($fields['amount'] < 0) {
883 $errors['_qf_default'] = ts('Contribution can not be less than zero. Please select the options accordingly');
884 }
885 $amount = $fields['amount'];
886 }
887
888 if (isset($fields['selectProduct']) &&
889 $fields['selectProduct'] != 'no_thanks') {
890 $productDAO = new CRM_Contribute_DAO_Product();
891 $productDAO->id = $fields['selectProduct'];
892 $productDAO->find(TRUE);
893 $min_amount = $productDAO->min_contribution;
894
895 if ($amount < $min_amount) {
896 $errors['selectProduct'] = ts('The premium you have selected requires a minimum contribution of %1', array(1 => CRM_Utils_Money::format($min_amount)));
897 CRM_Core_Session::setStatus($errors['selectProduct']);
898 }
899 }
900
901 if ($self->_values['honor_block_is_active'] && CRM_Utils_Array::value('honor_type_id', $fields)) {
902 // make sure there is a first name and last name if email is not there
903 if (!CRM_Utils_Array::value('honor_email', $fields)) {
904 if (!CRM_Utils_Array::value('honor_first_name', $fields) ||
905 !CRM_Utils_Array::value('honor_last_name', $fields)
906 ) {
907 $errors['honor_last_name'] = ts('In Honor Of - First Name and Last Name, OR an Email Address is required.');
908 }
909 }
910 }
911
912 if ( CRM_Utils_Array::value( 'is_recur', $fields ) ) {
913 if ($fields['frequency_interval'] <= 0) {
914 $errors['frequency_interval'] = ts('Please enter a number for how often you want to make this recurring contribution (EXAMPLE: Every 3 months).');
915 }
916 if ($fields['frequency_unit'] == '0') {
917 $errors['frequency_unit'] = ts('Please select a period (e.g. months, years ...) for how often you want to make this recurring contribution (EXAMPLE: Every 3 MONTHS).');
918 }
919 }
920
921 if (CRM_Utils_Array::value('is_recur', $fields) &&
922 CRM_Utils_Array::value('payment_processor', $fields) == 0) {
923 $errors['_qf_default'] = ts('You cannot set up a recurring contribution if you are not paying online by credit card.');
924 }
925
926 if (CRM_Utils_Array::value('is_for_organization', $fields) &&
927 !property_exists($self, 'organizationName')
928 ) {
929
930 if (!CRM_Utils_Array::value('organization_name', $fields['onbehalf'])) {
931 if (CRM_Utils_Array::value('org_option', $fields) && !$fields['onbehalfof_id']) {
932 $errors['organization_id'] = ts('Please select an organization or enter a new one.');
933 }
934 elseif (!CRM_Utils_Array::value('org_option', $fields)) {
935 $errors['onbehalf']['organization_name'] = ts('Please enter the organization name.');
936 }
937 }
938
939 foreach ($fields['onbehalf'] as $key => $value) {
940 if (strstr($key, 'email')) {
941 $emailLocType = explode('-', $key);
942 }
943 }
944 if (!CRM_Utils_Array::value("email-{$emailLocType[1]}", $fields['onbehalf'])) {
945 $errors['onbehalf']["email-{$emailLocType[1]}"] = ts('Organization email is required.');
946 }
947 }
948
949 // validate PCP fields - if not anonymous, we need a nick name value
950 if ($self->_pcpId && CRM_Utils_Array::value('pcp_display_in_roll', $fields) &&
951 (CRM_Utils_Array::value('pcp_is_anonymous', $fields) == 0) &&
952 CRM_Utils_Array::value('pcp_roll_nickname', $fields) == ''
953 ) {
954 $errors['pcp_roll_nickname'] = ts('Please enter a name to include in the Honor Roll, or select \'contribute anonymously\'.');
955 }
956
957 // return if this is express mode
958 $config = CRM_Core_Config::singleton();
959 if ($self->_paymentProcessor &&
960 $self->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_BUTTON
961 ) {
962 if (CRM_Utils_Array::value($self->_expressButtonName . '_x', $fields) ||
963 CRM_Utils_Array::value($self->_expressButtonName . '_y', $fields) ||
964 CRM_Utils_Array::value($self->_expressButtonName, $fields)
965 ) {
966 return $errors;
967 }
968 }
969
970 //validate the pledge fields.
971 if (CRM_Utils_Array::value('pledge_block_id', $self->_values)) {
972 //validation for pledge payment.
973 if (CRM_Utils_Array::value('pledge_id', $self->_values)) {
974 if (empty($fields['pledge_amount'])) {
975 $errors['pledge_amount'] = ts('At least one payment option needs to be checked.');
976 }
977 }
978 elseif (CRM_Utils_Array::value('is_pledge', $fields)) {
979 if (CRM_Utils_Rule::positiveInteger(CRM_Utils_Array::value('pledge_installments', $fields)) == FALSE) {
980 $errors['pledge_installments'] = ts('Please enter a valid number of pledge installments.');
981 }
982 else {
983 if (CRM_Utils_Array::value('pledge_installments', $fields) == NULL) {
984 $errors['pledge_installments'] = ts('Pledge Installments is required field.');
985 }
986 elseif (CRM_Utils_array::value('pledge_installments', $fields) == 1) {
987 $errors['pledge_installments'] = ts('Pledges consist of multiple scheduled payments. Select one-time contribution if you want to make your gift in a single payment.');
988 }
989 elseif (CRM_Utils_array::value('pledge_installments', $fields) == 0) {
990 $errors['pledge_installments'] = ts('Pledge Installments field must be > 1.');
991 }
992 }
993
994 //validation for Pledge Frequency Interval.
995 if (CRM_Utils_Rule::positiveInteger(CRM_Utils_Array::value('pledge_frequency_interval', $fields)) == FALSE) {
996 $errors['pledge_frequency_interval'] = ts('Please enter a valid Pledge Frequency Interval.');
997 }
998 else {
999 if (CRM_Utils_Array::value('pledge_frequency_interval', $fields) == NULL) {
1000 $errors['pledge_frequency_interval'] = ts('Pledge Frequency Interval. is required field.');
1001 }
1002 elseif (CRM_Utils_array::value('pledge_frequency_interval', $fields) == 0) {
1003 $errors['pledge_frequency_interval'] = ts('Pledge frequency interval field must be > 0');
1004 }
1005 }
1006 }
1007 }
1008
1009 // also return if paylater mode
1010 if (CRM_Utils_Array::value('payment_processor', $fields) == 0) {
1011 return empty($errors) ? TRUE : $errors;
1012 }
1013
1014 // if the user has chosen a free membership or the amount is less than zero
1015 // i.e. we skip calling the payment processor and hence dont need credit card
1016 // info
1017 if ((float) $amount <= 0.0) {
1018 return $errors;
1019 }
1020
1021 if (!empty($self->_paymentFields)) {
1022 CRM_Core_Form::validateMandatoryFields($self->_paymentFields, $fields, $errors);
1023 }
1024 CRM_Core_Payment_Form::validateCreditCard($fields, $errors);
1025
1026 foreach (CRM_Contact_BAO_Contact::$_greetingTypes as $greeting) {
1027 if ($greetingType = CRM_Utils_Array::value($greeting, $fields)) {
1028 $customizedValue = CRM_Core_OptionGroup::getValue($greeting, 'Customized', 'name');
1029 if ($customizedValue == $greetingType && empty($fielse[$greeting . '_custom'])) {
1030 $errors[$greeting . '_custom'] = ts('Custom %1 is a required field if %1 is of type Customized.',
1031 array(1 => ucwords(str_replace('_', " ", $greeting)))
1032 );
1033 }
1034 }
1035 }
1036
1037 return empty($errors) ? TRUE : $errors;
1038 }
1039
1040 public static function computeAmount(&$params, &$form) {
1041 $amount = NULL;
1042
1043 // first clean up the other amount field if present
1044 if (isset($params['amount_other'])) {
1045 $params['amount_other'] = CRM_Utils_Rule::cleanMoney($params['amount_other']);
1046 }
1047
1048 if (CRM_Utils_Array::value('amount', $params) == 'amount_other_radio' ||
1049 CRM_Utils_Array::value('amount_other', $params)
1050 ) {
1051 $amount = $params['amount_other'];
1052 }
1053 elseif (!empty($params['pledge_amount'])) {
1054 $amount = 0;
1055 foreach ($params['pledge_amount'] as $paymentId => $dontCare) {
1056 $amount += CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment', $paymentId, 'scheduled_amount');
1057 }
1058 }
1059 else {
1060 if (CRM_Utils_Array::value('amount', $form->_values)) {
1061 $amountID = CRM_Utils_Array::value('amount', $params);
1062
1063 if ($amountID) {
1064 $params['amount_level'] = CRM_Utils_Array::value('label', $form->_values[$amountID]);
1065 $amount = CRM_Utils_Array::value('value', $form->_values[$amountID]);
1066 }
1067 }
1068 }
1069 return $amount;
1070 }
1071
1072 /**
1073 * Function to process the form
1074 *
1075 * @access public
1076 *
1077 * @return None
1078 */
1079 public function postProcess() {
1080 $config = CRM_Core_Config::singleton();
1081
1082 // we first reset the confirm page so it accepts new values
1083 $this->controller->resetPage('Confirm');
1084
1085 // get the submitted form values.
1086 $params = $this->controller->exportValues($this->_name);
1087
1088 if (CRM_Utils_Array::value('priceSetId', $params)) {
1089 $is_quick_config = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_priceSetId, 'is_quick_config');
1090 $formValue = array();
1091 if ($is_quick_config) {
1092 $priceField = new CRM_Price_DAO_PriceField();
1093 $priceField->price_set_id = $params['priceSetId'];
1094 $priceField->orderBy('weight');
1095 $priceField->find();
1096
1097 $check = array();
1098 $otherAmount = FALSE;
1099 while ($priceField->fetch()) {
1100 CRM_Price_BAO_PriceFieldValue::getValues($priceField->id, $values);
1101 if ($priceField->name == 'membership_amount') {
1102 if ($priceFiledID = CRM_Utils_Array::value("price_{$priceField->id}", $params)) {
1103 $this->_params['selectMembership'] = $params['selectMembership'] = CRM_Utils_Array::value('membership_type_id', $values[$priceFiledID]);
1104 $this->set('selectMembership',CRM_Utils_Array::value('selectMembership', $params));
1105 if (CRM_Utils_Array::value('is_separate_payment', $this->_membershipBlock) == 0) {
1106 $this->_values['amount'] = CRM_Utils_Array::value('amount', $values[$priceFiledID]);
1107 }
1108 }
1109 }
1110 if ($priceField->name == 'contribution_amount') {
1111 $priceFiledID = CRM_Utils_Array::value("price_{$priceField->id}", $params);
1112 if ($priceFiledID > 0 && !empty($priceFiledID)) {
1113 $params['amount'] = $priceFiledID;
1114 $this->_values['amount'] = CRM_Utils_Array::value('amount', $values[$priceFiledID]);
1115 $this->_values[$priceFiledID]['value'] = CRM_Utils_Array::value('amount', $values[$priceFiledID]);
1116 $this->_values[$priceFiledID]['label'] = CRM_Utils_Array::value('label', $values[$priceFiledID]);
1117 $this->_values[$priceFiledID]['amount_id'] = CRM_Utils_Array::value('id', $values[$priceFiledID]);
1118 $this->_values[$priceFiledID]['weight'] = CRM_Utils_Array::value('weight', $values[$priceFiledID]);
1119 }
1120 }
1121 if ($priceField->name == 'other_amount' && $priceFiledID = CRM_Utils_Array::value("price_{$priceField->id}", $params)) {
1122 $params['amount_other'] = $priceFiledID;
1123 }
1124 }
1125 }
1126 }
1127
1128 if (($this->_values['is_pay_later'] &&
1129 empty($this->_paymentProcessor) &&
1130 !array_key_exists('hidden_processor', $params)) ||
1131 CRM_Utils_Array::value('payment_processor', $params) == 0) {
1132 $params['is_pay_later'] = 1;
1133 }
1134 else {
1135 $params['is_pay_later'] = 0;
1136 }
1137
1138 $this->set('is_pay_later', $params['is_pay_later']);
1139 // assign pay later stuff
1140 $this->_params['is_pay_later'] = CRM_Utils_Array::value('is_pay_later', $params, FALSE);
1141 $this->assign('is_pay_later', $params['is_pay_later']);
1142 if ($params['is_pay_later']) {
1143 $this->assign('pay_later_text', $this->_values['pay_later_text']);
1144 $this->assign('pay_later_receipt', $this->_values['pay_later_receipt']);
1145 }
1146
1147 //carry campaign from profile.
1148 if (array_key_exists('contribution_campaign_id', $params)) {
1149 $params['campaign_id'] = $params['contribution_campaign_id'];
1150 }
1151
1152 if (CRM_Utils_Array::value('onbehalfof_id', $params)) {
1153 $params['organization_id'] = $params['onbehalfof_id'];
1154 }
1155
1156 $params['currencyID'] = $config->defaultCurrency;
1157 $params['amount'] = self::computeAmount($params, $this);
1158 $params['separate_amount'] = $params['amount'];
1159 $memFee = NULL;
1160 if (CRM_Utils_Array::value('selectMembership', $params)) {
1161 if (!empty($this->_membershipTypeValues)) {
1162 $membershipTypeValues = $this->_membershipTypeValues[$params['selectMembership']];
1163 }
1164 else {
1165 $membershipTypeValues = CRM_Member_BAO_Membership::buildMembershipTypeValues($this,
1166 $params['selectMembership']
1167 );
1168 }
1169 $memFee = $membershipTypeValues['minimum_fee'];
1170 if (!$params['amount'] && !$this->_separateMembershipPayment) {
1171 $params['amount'] = $memFee ? $memFee : 0;
1172 }
1173 }
1174
1175 //If the membership & contribution is used in contribution page & not seperate payment
1176 $fieldId = $memPresent = $membershipLabel = $fieldOption = $is_quick_config = NULL;
1177 $proceFieldAmount = 0;
1178 if ($this->_separateMembershipPayment == 0) {
1179 $is_quick_config = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_priceSetId, 'is_quick_config');
1180 if ($is_quick_config) {
1181 foreach ($this->_priceSet['fields'] as $fieldKey => $fieldVal) {
1182 if ($fieldVal['name'] == 'membership_amount' && CRM_Utils_Array::value('price_' . $fieldKey , $params)) {
1183 $fieldId = $fieldVal['id'];
1184 $fieldOption = $params['price_' . $fieldId];
1185 $proceFieldAmount += $fieldVal['options'][$this->_submitValues['price_' . $fieldId]]['amount'];
1186 $memPresent = TRUE;
1187 }
1188 else {
1189 if (CRM_Utils_Array::value('price_' . $fieldKey, $params) && $memPresent && ($fieldVal['name'] == 'other_amount' || $fieldVal['name'] == 'contribution_amount')) {
1190 $fieldId = $fieldVal['id'];
1191 if ($fieldVal['name'] == 'other_amount') {
1192 $proceFieldAmount += $this->_submitValues['price_' . $fieldId];
1193 }
1194 elseif ($fieldVal['name'] == 'contribution_amount' && $this->_submitValues['price_' . $fieldId] > 0) {
1195 $proceFieldAmount += $fieldVal['options'][$this->_submitValues['price_' . $fieldId]]['amount'];
1196 }
1197 unset($params['price_' . $fieldId]);
1198 break;
1199 }
1200 }
1201 }
1202 }
1203 }
1204
1205 if (!isset($params['amount_other'])) {
1206 $this->set('amount_level', CRM_Utils_Array::value('amount_level', $params));
1207 }
1208
1209 if ($priceSetId = CRM_Utils_Array::value('priceSetId', $params)) {
1210 $lineItem = array();
1211 $is_quick_config = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceSetId, 'is_quick_config' );
1212 if ( $is_quick_config ) {
1213 foreach ( $this->_values['fee'] as $key => & $val ) {
1214 if ( $val['name'] == 'other_amount' && $val['html_type'] == 'Text' && array_key_exists( 'price_'.$key, $params ) && $params['price_'.$key] != 0 ) {
1215 foreach ( $val['options'] as $optionKey => & $options ) {
1216 $options['amount'] = CRM_Utils_Array::value( 'price_'.$key, $params );
1217 break;
1218 }
1219 $params['price_'.$key] = 1;
1220 break;
1221 }
1222 }
1223 }
1224
1225 $component = '';
1226 if ($this->_membershipBlock) {
1227 $component = 'membership';
1228 }
1229 CRM_Price_BAO_PriceSet::processAmount($this->_values['fee'], $params, $lineItem[$priceSetId], $component);
1230
1231 if ($proceFieldAmount) {
1232 $lineItem[$params['priceSetId']][$fieldOption]['line_total'] = $proceFieldAmount;
1233 $lineItem[$params['priceSetId']][$fieldOption]['unit_price'] = $proceFieldAmount;
1234 if (!$this->_membershipBlock['is_separate_payment']) {
1235 $params['amount'] = $proceFieldAmount; //require when separate membership not used
1236 }
1237 }
1238 $this->set('lineItem', $lineItem);
1239 }
1240
1241 if ($this->_membershipBlock['is_separate_payment'] && CRM_Utils_Array::value('separate_amount', $params)) {
1242 $this->set('amount', $params['separate_amount']);
1243 } else {
1244 $this->set('amount', $params['amount']);
1245 }
1246
1247 // generate and set an invoiceID for this transaction
1248 $invoiceID = md5(uniqid(rand(), TRUE));
1249 $this->set('invoiceID', $invoiceID);
1250
1251 // required only if is_monetary and valid postive amount
1252 if ($this->_values['is_monetary'] &&
1253 is_array($this->_paymentProcessor) &&
1254 ((float ) $params['amount'] > 0.0 || $memFee > 0.0)
1255 ) {
1256
1257 // default mode is direct
1258 $this->set('contributeMode', 'direct');
1259
1260 if ($this->_paymentProcessor &&
1261 $this->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_BUTTON
1262 ) {
1263 //get the button name
1264 $buttonName = $this->controller->getButtonName();
1265 if (in_array($buttonName,
1266 array($this->_expressButtonName, $this->_expressButtonName . '_x', $this->_expressButtonName . '_y')
1267 ) &&
1268 !CRM_Utils_Array::value('is_pay_later', $params)
1269 ) {
1270 $this->set('contributeMode', 'express');
1271
1272 $donateURL = CRM_Utils_System::url('civicrm/contribute', '_qf_Contribute_display=1');
1273 $params['cancelURL'] = CRM_Utils_System::url('civicrm/contribute/transact', "_qf_Main_display=1&qfKey={$params['qfKey']}", TRUE, NULL, FALSE);
1274 $params['returnURL'] = CRM_Utils_System::url('civicrm/contribute/transact', "_qf_Confirm_display=1&rfp=1&qfKey={$params['qfKey']}", TRUE, NULL, FALSE);
1275 $params['invoiceID'] = $invoiceID;
1276
1277 //default action is Sale
1278 $params['payment_action'] = 'Sale';
1279
1280 $payment = CRM_Core_Payment::singleton($this->_mode, $this->_paymentProcessor, $this);
1281 $token = $payment->setExpressCheckout($params);
1282 if (is_a($token, 'CRM_Core_Error')) {
1283 CRM_Core_Error::displaySessionError($token);
1284 CRM_Utils_System::redirect($params['cancelURL']);
1285 }
1286
1287 $this->set('token', $token);
1288
1289 $paymentURL = $this->_paymentProcessor['url_site'] . "/cgi-bin/webscr?cmd=_express-checkout&token=$token";
1290 CRM_Utils_System::redirect($paymentURL);
1291 }
1292 }
1293 elseif ($this->_paymentProcessor &&
1294 $this->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_NOTIFY
1295 ) {
1296 $this->set('contributeMode', 'notify');
1297 }
1298 }
1299
1300 // should we skip the confirm page?
1301 if (!CRM_Utils_Array::value('is_confirm_enabled', $this->_values)) {
1302 // call the post process hook for the main page before we switch to confirm
1303 $this->postProcessHook();
1304
1305 // build the confirm page
1306 $confirmForm = &$this->controller->_pages['Confirm'];
1307 $confirmForm->preProcess();
1308 $confirmForm->buildQuickForm();
1309
1310 // the confirmation page is valid
1311 $data = &$this->controller->container();
1312 $data['valid']['Confirm'] = 1;
1313
1314 // confirm the contribution
1315 // mainProcess calls the hook also
1316 $confirmForm->mainProcess();
1317 $qfKey = $this->controller->_key;
1318
1319 // redirect to thank you page
1320 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contribute/transact', "_qf_ThankYou_display=1&qfKey=$qfKey", TRUE, NULL, FALSE));
1321 }
1322 }
1323
1324 /**
1325 * Handle Payment Processor switching
1326 * For contribution and event registration forms
1327 */
1328 static function preProcessPaymentOptions(&$form, $noFees = FALSE) {
1329 $form->_snippet = CRM_Utils_Array::value('snippet', $_GET);
1330 $form->assign('snippet', $form->_snippet);
1331
1332 $form->_paymentProcessors = $noFees ? array() : $form->get('paymentProcessors');
1333 $form->_ppType = NULL;
1334 if ($form->_paymentProcessors) {
1335 // Fetch type during ajax request
1336 if (isset($_GET['type']) && $form->_snippet) {
1337 $form->_ppType = $_GET['type'];
1338 }
1339 // Remember type during form post
1340 elseif (!empty($form->_submitValues)) {
1341 $form->_ppType = CRM_Utils_Array::value('payment_processor', $form->_submitValues);
1342 $form->_paymentProcessor = CRM_Utils_Array::value($form->_ppType, $form->_paymentProcessors);
1343 $form->set('type', $form->_ppType);
1344 $form->set('mode', $form->_mode);
1345 $form->set('paymentProcessor', $form->_paymentProcessor);
1346 }
1347 // Set default payment processor
1348 else {
1349 foreach ($form->_paymentProcessors as $values) {
1350 if (!empty($values['is_default']) || count($form->_paymentProcessors) == 1) {
1351 $form->_ppType = $values['id'];
1352 break;
1353 }
1354 }
1355 }
1356 if ($form->_ppType) {
1357 CRM_Core_Payment_ProcessorForm::preProcess($form);
1358 }
1359
1360 //get payPal express id and make it available to template
1361 foreach ($form->_paymentProcessors as $ppId => $values) {
1362 $payPalExpressId = ($values['payment_processor_type'] == 'PayPal_Express') ? $values['id'] : 0;
1363 $form->assign('payPalExpressId', $payPalExpressId);
1364 if ($payPalExpressId) {
1365 break;
1366 }
1367 }
1368 if (!$form->_snippet) {
1369 // Add JS to show icons for the accepted credit cards
1370 $creditCardTypes = CRM_Core_Payment_Form::getCreditCardCSSNames();
1371 CRM_Core_Resources::singleton()
1372 ->addScriptFile('civicrm', 'templates/CRM/Core/BillingBlock.js', 10)
1373 // workaround for CRM-13634
1374 // ->addSetting(array('config' => array('creditCardTypes' => $creditCardTypes)));
1375 ->addScript('CRM.config.creditCardTypes = ' . json_encode($creditCardTypes) . ';');
1376 }
1377 }
1378 $form->assign('ppType', $form->_ppType);
1379 }
1380 }
1381