190ccdc8f31164afb70cce6c6d5d3e4702fd2644
[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 $this->assign('pcpSupporterText', ts('This contribution is being made thanks to effort of <strong>%1</strong>, who supports our campaign. You can support it as well - once you complete the donation, you will be able to create your own Personal Campaign Page!', array(1 => $pcpSupporter)));
512 }
513 $this->assign('pcp', TRUE);
514 $this->add('checkbox', 'pcp_display_in_roll', ts('Show my contribution in the public honor roll'), NULL, NULL,
515 array('onclick' => "showHideByValue('pcp_display_in_roll','','nameID|nickID|personalNoteID','block','radio',false); pcpAnonymous( );")
516 );
517 $extraOption = array('onclick' => "return pcpAnonymous( );");
518 $elements = array();
519 $elements[] = &$this->createElement('radio', NULL, '', ts('Include my name and message'), 0, $extraOption);
520 $elements[] = &$this->createElement('radio', NULL, '', ts('List my contribution anonymously'), 1, $extraOption);
521 $this->addGroup($elements, 'pcp_is_anonymous', NULL, '&nbsp;&nbsp;&nbsp;');
522 $this->_defaults['pcp_is_anonymous'] = 0;
523
524 $this->add('text', 'pcp_roll_nickname', ts('Name'), array('maxlength' => 30));
525 $this->add('textarea', 'pcp_personal_note', ts('Personal Note'), array('style' => 'height: 3em; width: 40em;'));
526 }
527
528 //we have to load confirm contribution button in template
529 //when multiple payment processor as the user
530 //can toggle with payment processor selection
531 $billingModePaymentProcessors = 0;
532 if ( !empty( $this->_paymentProcessors ) ) {
533 foreach ($this->_paymentProcessors as $key => $values) {
534 if ($values['billing_mode'] == CRM_Core_Payment::BILLING_MODE_BUTTON) {
535 $billingModePaymentProcessors++;
536 }
537 }
538 }
539
540 if ($billingModePaymentProcessors && count($this->_paymentProcessors) == $billingModePaymentProcessors) {
541 $allAreBillingModeProcessors = TRUE;
542 } else {
543 $allAreBillingModeProcessors = FALSE;
544 }
545
546 if (!($allAreBillingModeProcessors && !$this->_values['is_pay_later'])) {
547 $this->addButtons(array(
548 array(
549 'type' => 'upload',
550 'name' => ts('Contribute'),
551 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
552 'isDefault' => TRUE,
553 ),
554 )
555 );
556 }
557
558 $this->addFormRule(array('CRM_Contribute_Form_Contribution_Main', 'formRule'), $this);
559 parent::buildQuickForm();
560 }
561
562 /**
563 * Function to add the honor block
564 *
565 * @return None
566 * @access public
567 */
568 function buildHonorBlock() {
569 $this->assign('honor_block_is_active', TRUE);
570 $this->set('honor_block_is_active', TRUE);
571
572 $this->assign('honor_block_title', CRM_Utils_Array::value('honor_block_title', $this->_values));
573 $this->assign('honor_block_text', CRM_Utils_Array::value('honor_block_text', $this->_values));
574
575 $attributes = CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact');
576 $extraOption = array('onclick' => "enableHonorType();");
577 // radio button for Honor Type
578 $honorOptions = array();
579 $honor = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'honor_type_id');
580 foreach ($honor as $key => $var) {
581 $honorTypes[$key] = $this->createElement('radio', NULL, NULL, $var, $key, $extraOption);
582 }
583 $this->addGroup($honorTypes, 'honor_type_id', NULL);
584
585 // prefix
586 $this->addElement('select', 'honor_prefix_id', ts('Prefix'), array('' => ts('- prefix -')) + CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id'));
587 // first_name
588 $this->addElement('text', 'honor_first_name', ts('First Name'), $attributes['first_name']);
589
590 //last_name
591 $this->addElement('text', 'honor_last_name', ts('Last Name'), $attributes['last_name']);
592
593 //email
594 $this->addElement('text', 'honor_email', ts('Email Address'), array('class' => 'email'));
595 $this->addRule('honor_email', ts('Honoree Email is not valid.'), 'email');
596 }
597
598 /**
599 * build elements to enable pay on behalf of an organization.
600 *
601 * @access public
602 */
603 function buildOnBehalfOrganization() {
604 if ($this->_membershipContactID) {
605 $entityBlock = array('contact_id' => $this->_membershipContactID);
606 CRM_Core_BAO_Location::getValues($entityBlock, $this->_defaults);
607 }
608
609 if (!$this->_onBehalfRequired) {
610 $this->addElement('checkbox', 'is_for_organization',
611 $this->_values['for_organization'],
612 NULL, array('onclick' => "showOnBehalf( );")
613 );
614 }
615
616 $this->assign('is_for_organization', TRUE);
617 $this->assign('urlPath', 'civicrm/contribute/transact');
618 }
619
620 /**
621 * build elements to collect information for recurring contributions
622 *
623 * @access public
624 */
625 public static function buildRecur(&$form) {
626 $attributes = CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionRecur');
627 $className = get_class($form);
628
629 $form->assign('is_recur_interval', CRM_Utils_Array::value('is_recur_interval', $form->_values));
630 $form->assign('is_recur_installments', CRM_Utils_Array::value('is_recur_installments', $form->_values));
631
632 $form->add('checkbox', 'is_recur', ts('I want to contribute this amount'), NULL);
633
634 if (CRM_Utils_Array::value('is_recur_interval', $form->_values) || $className == 'CRM_Contribute_Form_Contribution') {
635 $form->add('text', 'frequency_interval', ts('Every'), $attributes['frequency_interval']);
636 $form->addRule('frequency_interval', ts('Frequency must be a whole number (EXAMPLE: Every 3 months).'), 'integer');
637 }
638 else {
639 // make sure frequency_interval is submitted as 1 if given no choice to user.
640 $form->add('hidden', 'frequency_interval', 1);
641 }
642
643 $frUnits = CRM_Utils_Array::value('recur_frequency_unit', $form->_values);
644 if (empty($frUnits) &&
645 $className == 'CRM_Contribute_Form_Contribution'
646 ) {
647 $frUnits = implode(CRM_Core_DAO::VALUE_SEPARATOR,
648 CRM_Core_OptionGroup::values('recur_frequency_units')
649 );
650 }
651
652 $unitVals = explode(CRM_Core_DAO::VALUE_SEPARATOR, $frUnits);
653
654 // CRM 10860, display text instead of a dropdown if there's only 1 frequency unit
655 if(sizeof($unitVals) == 1) {
656 $form->assign('one_frequency_unit', true);
657 $unit = $unitVals[0];
658 $form->add('hidden', 'frequency_unit', $unit);
659 if (CRM_Utils_Array::value('is_recur_interval', $form->_values) || $className == 'CRM_Contribute_Form_Contribution') {
660 $unit .= "(s)";
661 }
662 $form->assign('frequency_unit', $unit);
663 } else {
664 $form->assign('one_frequency_unit', false);
665 $units = array();
666 $frequencyUnits = CRM_Core_OptionGroup::values('recur_frequency_units');
667 foreach ($unitVals as $key => $val) {
668 if (array_key_exists($val, $frequencyUnits)) {
669 $units[$val] = $frequencyUnits[$val];
670 if (CRM_Utils_Array::value('is_recur_interval', $form->_values) || $className == 'CRM_Contribute_Form_Contribution') {
671 $units[$val] = "{$frequencyUnits[$val]}(s)";
672 }
673 }
674 }
675 $frequencyUnit = &$form->add('select', 'frequency_unit', NULL, $units);
676 }
677
678
679 // FIXME: Ideally we should freeze select box if there is only
680 // one option but looks there is some problem /w QF freeze.
681 //if ( count( $units ) == 1 ) {
682 //$frequencyUnit->freeze( );
683 //}
684
685 $form->add('text', 'installments', ts('installments'),
686 $attributes['installments']
687 );
688 $form->addRule('installments', ts('Number of installments must be a whole number.'), 'integer');
689 }
690
691 /**
692 * global form rule
693 *
694 * @param array $fields the input form values
695 * @param array $files the uploaded files if any
696 * @param array $options additional user data
697 *
698 * @return true if no errors, else array of errors
699 * @access public
700 * @static
701 */
702 static function formRule($fields, $files, $self) {
703 $errors = array();
704 $amount = self::computeAmount($fields, $self);
705
706 if ((CRM_Utils_Array::value('selectMembership', $fields) &&
707 $fields['selectMembership'] != 'no_thanks'
708 ) ||
709 (CRM_Utils_Array::value('priceSetId', $fields) &&
710 $self->_useForMember
711 )
712 ) {
713 $lifeMember = CRM_Member_BAO_Membership::getAllContactMembership($self->_userID, FALSE, TRUE);
714
715 $membershipOrgDetails = CRM_Member_BAO_MembershipType::getMembershipTypeOrganization();
716
717 $unallowedOrgs = array();
718 foreach (array_keys($lifeMember) as $memTypeId) {
719 $unallowedOrgs[] = $membershipOrgDetails[$memTypeId];
720 }
721 }
722
723 //check for atleast one pricefields should be selected
724 if (CRM_Utils_Array::value('priceSetId', $fields)) {
725 $priceField = new CRM_Price_DAO_PriceField();
726 $priceField->price_set_id = $fields['priceSetId'];
727 $priceField->orderBy('weight');
728 $priceField->find();
729
730 $check = array();
731 $membershipIsActive = TRUE;
732 $previousId = $otherAmount = FALSE;
733 while ($priceField->fetch()) {
734
735 if ($self->_quickConfig && ($priceField->name == 'contribution_amount' || $priceField->name == 'membership_amount')) {
736 $previousId = $priceField->id;
737 if ($priceField->name == 'membership_amount' && !$priceField->is_active ) {
738 $membershipIsActive = FALSE;
739 }
740 }
741 if ($priceField->name == 'other_amount') {
742 if ($self->_quickConfig && !CRM_Utils_Array::value("price_{$priceField->id}", $fields) &&
743 array_key_exists("price_{$previousId}", $fields) && isset($fields["price_{$previousId}"]) && $self->_values['fee'][$previousId]['name'] == 'contribution_amount' && empty($fields["price_{$previousId}"])) {
744 $otherAmount = $priceField->id;
745 }
746 elseif (!empty($fields["price_{$priceField->id}"])) {
747 $otherAmountVal = $fields["price_{$priceField->id}"];
748 $min = CRM_Utils_Array::value('min_amount', $self->_values);
749 $max = CRM_Utils_Array::value('max_amount', $self->_values);
750 if ($min && $otherAmountVal < $min) {
751 $errors["price_{$priceField->id}"] = ts('Contribution amount must be at least %1',
752 array(1 => $min)
753 );
754 }
755 if ($max && $otherAmountVal > $max) {
756 $errors["price_{$priceField->id}"] = ts('Contribution amount cannot be more than %1.',
757 array(1 => $max)
758 );
759 }
760 }
761 }
762 if (!empty($fields["price_{$priceField->id}"]) || ($previousId == $priceField->id && isset($fields["price_{$previousId}"])
763 && empty($fields["price_{$previousId}"]))) {
764 $check[] = $priceField->id;
765 }
766 }
767
768 // CRM-12233
769 if ($membershipIsActive && !$self->_membershipBlock['is_required']
770 && $self->_values['amount_block_is_active']) {
771 $membershipFieldId = $contributionFieldId = $errorKey = $otherFieldId = NULL;
772 foreach ($self->_values['fee'] as $fieldKey => $fieldValue) {
773 // if 'No thank you' membership is selected then set $membershipFieldId
774 if ($fieldValue['name'] == 'membership_amount' && CRM_Utils_Array::value('price_' . $fieldKey, $fields) == 0) {
775 $membershipFieldId = $fieldKey;
776 }
777 elseif ($membershipFieldId) {
778 if ($fieldValue['name'] == 'other_amount') {
779 $otherFieldId = $fieldKey;
780 }
781 elseif ($fieldValue['name'] == 'contribution_amount') {
782 $contributionFieldId = $fieldKey;
783 }
784
785 if (!$errorKey || CRM_Utils_Array::value('price_' . $contributionFieldId, $fields) == '0') {
786 $errorKey = $fieldKey;
787 }
788 }
789 }
790 // $membershipFieldId is set and additional amount is 'No thank you' or NULL then throw error
791 if ($membershipFieldId && !(CRM_Utils_Array::value('price_' . $contributionFieldId, $fields, -1) > 0)
792 && !CRM_Utils_Array::value('price_' . $otherFieldId, $fields)) {
793 $errors["price_{$errorKey}"] = ts('Additional Contribution is required.');
794 }
795 }
796 if (empty($check)) {
797 if ($self->_useForMember == 1 && $membershipIsActive) {
798 $errors['_qf_default'] = ts('Select at least one option from Membership Type(s).');
799 }
800 else {
801 $errors['_qf_default'] = ts('Select at least one option from Contribution(s).');
802 }
803 }
804 if($otherAmount && !empty($check)) {
805 $errors["price_{$otherAmount}"] = ts('Amount is required field.');
806 }
807
808 if ($self->_useForMember == 1 && !empty($check) && $membershipIsActive) {
809 $priceFieldIDS = array();
810 $priceFieldMemTypes = array();
811
812 foreach ($self->_priceSet['fields'] as $priceId => $value) {
813 if (!empty($fields['price_' . $priceId]) || ($self->_quickConfig && $value['name'] == 'membership_amount' && !CRM_Utils_Array::value('is_required', $self->_membershipBlock))) {
814 if (CRM_Utils_Array::value('price_' . $priceId, $fields) && is_array($fields['price_' . $priceId])) {
815 foreach ($fields['price_' . $priceId] as $priceFldVal => $isSet) {
816 if ($isSet) {
817 $priceFieldIDS[] = $priceFldVal;
818 }
819 }
820 }
821 elseif (!$value['is_enter_qty'] && CRM_Utils_Array::value('price_' . $priceId, $fields)) {
822 // The check for {!$value['is_enter_qty']} is done since, quantity fields allow entering
823 // quantity. And the quantity can't be conisdered as civicrm_price_field_value.id, CRM-9577
824 $priceFieldIDS[] = $fields['price_' . $priceId];
825 }
826
827 if (CRM_Utils_Array::value('options', $value)) {
828 foreach ($value['options'] as $val) {
829 if (CRM_Utils_Array::value('membership_type_id', $val)) {
830 $priceFieldMemTypes[] = $val['membership_type_id'];
831 }
832 }
833 }
834 }
835 }
836
837 if (!empty($lifeMember)) {
838 foreach ($priceFieldIDS as $priceFieldId) {
839 if (($id = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue', $priceFieldId, 'membership_type_id')) &&
840 in_array($membershipOrgDetails[$id], $unallowedOrgs)
841 ) {
842 $errors['_qf_default'] = ts('You already have a lifetime membership and cannot select a membership with a shorter term.');
843 break;
844 }
845 }
846 }
847
848 if (!empty($priceFieldIDS)) {
849 $ids = implode(',', $priceFieldIDS);
850
851 $priceFieldIDS['id'] = $fields['priceSetId'];
852 $self->set('memberPriceFieldIDS', $priceFieldIDS);
853 $count = CRM_Price_BAO_PriceSet::getMembershipCount($ids);
854 foreach ($count as $id => $occurance) {
855 if ($occurance > 1) {
856 $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.');
857 }
858 }
859 }
860
861 if (empty($priceFieldMemTypes)) {
862 $errors['_qf_default'] = ts('Please select at least one membership option.');
863 }
864 }
865
866 CRM_Price_BAO_PriceSet::processAmount($self->_values['fee'],
867 $fields, $lineItem
868 );
869
870 if ($fields['amount'] < 0) {
871 $errors['_qf_default'] = ts('Contribution can not be less than zero. Please select the options accordingly');
872 }
873 $amount = $fields['amount'];
874 }
875
876 if (isset($fields['selectProduct']) &&
877 $fields['selectProduct'] != 'no_thanks') {
878 $productDAO = new CRM_Contribute_DAO_Product();
879 $productDAO->id = $fields['selectProduct'];
880 $productDAO->find(TRUE);
881 $min_amount = $productDAO->min_contribution;
882
883 if ($amount < $min_amount) {
884 $errors['selectProduct'] = ts('The premium you have selected requires a minimum contribution of %1', array(1 => CRM_Utils_Money::format($min_amount)));
885 CRM_Core_Session::setStatus($errors['selectProduct']);
886 }
887 }
888
889 if ($self->_values['honor_block_is_active'] && CRM_Utils_Array::value('honor_type_id', $fields)) {
890 // make sure there is a first name and last name if email is not there
891 if (!CRM_Utils_Array::value('honor_email', $fields)) {
892 if (!CRM_Utils_Array::value('honor_first_name', $fields) ||
893 !CRM_Utils_Array::value('honor_last_name', $fields)
894 ) {
895 $errors['honor_last_name'] = ts('In Honor Of - First Name and Last Name, OR an Email Address is required.');
896 }
897 }
898 }
899
900 if ( CRM_Utils_Array::value( 'is_recur', $fields ) ) {
901 if ($fields['frequency_interval'] <= 0) {
902 $errors['frequency_interval'] = ts('Please enter a number for how often you want to make this recurring contribution (EXAMPLE: Every 3 months).');
903 }
904 if ($fields['frequency_unit'] == '0') {
905 $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).');
906 }
907 }
908
909 if (CRM_Utils_Array::value('is_recur', $fields) &&
910 CRM_Utils_Array::value('payment_processor', $fields) == 0) {
911 $errors['_qf_default'] = ts('You cannot set up a recurring contribution if you are not paying online by credit card.');
912 }
913
914 if (CRM_Utils_Array::value('is_for_organization', $fields) &&
915 !property_exists($self, 'organizationName')
916 ) {
917
918 if (!CRM_Utils_Array::value('organization_name', $fields['onbehalf'])) {
919 if (CRM_Utils_Array::value('org_option', $fields) && !$fields['onbehalfof_id']) {
920 $errors['organization_id'] = ts('Please select an organization or enter a new one.');
921 }
922 elseif (!CRM_Utils_Array::value('org_option', $fields)) {
923 $errors['onbehalf']['organization_name'] = ts('Please enter the organization name.');
924 }
925 }
926
927 foreach ($fields['onbehalf'] as $key => $value) {
928 if (strstr($key, 'email')) {
929 $emailLocType = explode('-', $key);
930 }
931 }
932 if (!CRM_Utils_Array::value("email-{$emailLocType[1]}", $fields['onbehalf'])) {
933 $errors['onbehalf']["email-{$emailLocType[1]}"] = ts('Organization email is required.');
934 }
935 }
936
937 // validate PCP fields - if not anonymous, we need a nick name value
938 if ($self->_pcpId && CRM_Utils_Array::value('pcp_display_in_roll', $fields) &&
939 (CRM_Utils_Array::value('pcp_is_anonymous', $fields) == 0) &&
940 CRM_Utils_Array::value('pcp_roll_nickname', $fields) == ''
941 ) {
942 $errors['pcp_roll_nickname'] = ts('Please enter a name to include in the Honor Roll, or select \'contribute anonymously\'.');
943 }
944
945 // return if this is express mode
946 $config = CRM_Core_Config::singleton();
947 if ($self->_paymentProcessor &&
948 $self->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_BUTTON
949 ) {
950 if (CRM_Utils_Array::value($self->_expressButtonName . '_x', $fields) ||
951 CRM_Utils_Array::value($self->_expressButtonName . '_y', $fields) ||
952 CRM_Utils_Array::value($self->_expressButtonName, $fields)
953 ) {
954 return $errors;
955 }
956 }
957
958 //validate the pledge fields.
959 if (CRM_Utils_Array::value('pledge_block_id', $self->_values)) {
960 //validation for pledge payment.
961 if (CRM_Utils_Array::value('pledge_id', $self->_values)) {
962 if (empty($fields['pledge_amount'])) {
963 $errors['pledge_amount'] = ts('At least one payment option needs to be checked.');
964 }
965 }
966 elseif (CRM_Utils_Array::value('is_pledge', $fields)) {
967 if (CRM_Utils_Rule::positiveInteger(CRM_Utils_Array::value('pledge_installments', $fields)) == FALSE) {
968 $errors['pledge_installments'] = ts('Please enter a valid pledge installment.');
969 }
970 else {
971 if (CRM_Utils_Array::value('pledge_installments', $fields) == NULL) {
972 $errors['pledge_installments'] = ts('Pledge Installments is required field.');
973 }
974 elseif (CRM_Utils_array::value('pledge_installments', $fields) == 1) {
975 $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.');
976 }
977 elseif (CRM_Utils_array::value('pledge_installments', $fields) == 0) {
978 $errors['pledge_installments'] = ts('Pledge Installments field must be > 1.');
979 }
980 }
981
982 //validation for Pledge Frequency Interval.
983 if (CRM_Utils_Rule::positiveInteger(CRM_Utils_Array::value('pledge_frequency_interval', $fields)) == FALSE) {
984 $errors['pledge_frequency_interval'] = ts('Please enter a valid Pledge Frequency Interval.');
985 }
986 else {
987 if (CRM_Utils_Array::value('pledge_frequency_interval', $fields) == NULL) {
988 $errors['pledge_frequency_interval'] = ts('Pledge Frequency Interval. is required field.');
989 }
990 elseif (CRM_Utils_array::value('pledge_frequency_interval', $fields) == 0) {
991 $errors['pledge_frequency_interval'] = ts('Pledge frequency interval field must be > 0');
992 }
993 }
994 }
995 }
996
997 // also return if paylater mode
998 if (CRM_Utils_Array::value('payment_processor', $fields) == 0) {
999 return empty($errors) ? TRUE : $errors;
1000 }
1001
1002 // if the user has chosen a free membership or the amount is less than zero
1003 // i.e. we skip calling the payment processor and hence dont need credit card
1004 // info
1005 if ((float) $amount <= 0.0) {
1006 return $errors;
1007 }
1008
1009 if (!empty($self->_paymentFields)) {
1010 CRM_Core_Form::validateMandatoryFields($self->_paymentFields, $fields, $errors);
1011 }
1012 CRM_Core_Payment_Form::validateCreditCard($fields, $errors);
1013
1014 foreach (CRM_Contact_BAO_Contact::$_greetingTypes as $greeting) {
1015 if ($greetingType = CRM_Utils_Array::value($greeting, $fields)) {
1016 $customizedValue = CRM_Core_OptionGroup::getValue($greeting, 'Customized', 'name');
1017 if ($customizedValue == $greetingType && empty($fielse[$greeting . '_custom'])) {
1018 $errors[$greeting . '_custom'] = ts('Custom %1 is a required field if %1 is of type Customized.',
1019 array(1 => ucwords(str_replace('_', " ", $greeting)))
1020 );
1021 }
1022 }
1023 }
1024
1025 return empty($errors) ? TRUE : $errors;
1026 }
1027
1028 public static function computeAmount(&$params, &$form) {
1029 $amount = NULL;
1030
1031 // first clean up the other amount field if present
1032 if (isset($params['amount_other'])) {
1033 $params['amount_other'] = CRM_Utils_Rule::cleanMoney($params['amount_other']);
1034 }
1035
1036 if (CRM_Utils_Array::value('amount', $params) == 'amount_other_radio' ||
1037 CRM_Utils_Array::value('amount_other', $params)
1038 ) {
1039 $amount = $params['amount_other'];
1040 }
1041 elseif (!empty($params['pledge_amount'])) {
1042 $amount = 0;
1043 foreach ($params['pledge_amount'] as $paymentId => $dontCare) {
1044 $amount += CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment', $paymentId, 'scheduled_amount');
1045 }
1046 }
1047 else {
1048 if (CRM_Utils_Array::value('amount', $form->_values)) {
1049 $amountID = CRM_Utils_Array::value('amount', $params);
1050
1051 if ($amountID) {
1052 $params['amount_level'] = CRM_Utils_Array::value('label', $form->_values[$amountID]);
1053 $amount = CRM_Utils_Array::value('value', $form->_values[$amountID]);
1054 }
1055 }
1056 }
1057 return $amount;
1058 }
1059
1060 /**
1061 * Function to process the form
1062 *
1063 * @access public
1064 *
1065 * @return None
1066 */
1067 public function postProcess() {
1068 $config = CRM_Core_Config::singleton();
1069
1070 // we first reset the confirm page so it accepts new values
1071 $this->controller->resetPage('Confirm');
1072
1073 // get the submitted form values.
1074 $params = $this->controller->exportValues($this->_name);
1075
1076 if (CRM_Utils_Array::value('priceSetId', $params)) {
1077 $is_quick_config = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_priceSetId, 'is_quick_config');
1078 $formValue = array();
1079 if ($is_quick_config) {
1080 $priceField = new CRM_Price_DAO_PriceField();
1081 $priceField->price_set_id = $params['priceSetId'];
1082 $priceField->orderBy('weight');
1083 $priceField->find();
1084
1085 $check = array();
1086 $otherAmount = FALSE;
1087 while ($priceField->fetch()) {
1088 CRM_Price_BAO_PriceFieldValue::getValues($priceField->id, $values);
1089 if ($priceField->name == 'membership_amount') {
1090 if ($priceFiledID = CRM_Utils_Array::value("price_{$priceField->id}", $params)) {
1091 $this->_params['selectMembership'] = $params['selectMembership'] = CRM_Utils_Array::value('membership_type_id', $values[$priceFiledID]);
1092 $this->set('selectMembership',CRM_Utils_Array::value('selectMembership', $params));
1093 if (CRM_Utils_Array::value('is_separate_payment', $this->_membershipBlock) == 0) {
1094 $this->_values['amount'] = CRM_Utils_Array::value('amount', $values[$priceFiledID]);
1095 }
1096 }
1097 }
1098 if ($priceField->name == 'contribution_amount') {
1099 $priceFiledID = CRM_Utils_Array::value("price_{$priceField->id}", $params);
1100 if ($priceFiledID > 0 && !empty($priceFiledID)) {
1101 $params['amount'] = $priceFiledID;
1102 $this->_values['amount'] = CRM_Utils_Array::value('amount', $values[$priceFiledID]);
1103 $this->_values[$priceFiledID]['value'] = CRM_Utils_Array::value('amount', $values[$priceFiledID]);
1104 $this->_values[$priceFiledID]['label'] = CRM_Utils_Array::value('label', $values[$priceFiledID]);
1105 $this->_values[$priceFiledID]['amount_id'] = CRM_Utils_Array::value('id', $values[$priceFiledID]);
1106 $this->_values[$priceFiledID]['weight'] = CRM_Utils_Array::value('weight', $values[$priceFiledID]);
1107 }
1108 }
1109 if ($priceField->name == 'other_amount' && $priceFiledID = CRM_Utils_Array::value("price_{$priceField->id}", $params)) {
1110 $params['amount_other'] = $priceFiledID;
1111 }
1112 }
1113 }
1114 }
1115
1116 if (($this->_values['is_pay_later'] &&
1117 empty($this->_paymentProcessor) &&
1118 !array_key_exists('hidden_processor', $params)) ||
1119 CRM_Utils_Array::value('payment_processor', $params) == 0) {
1120 $params['is_pay_later'] = 1;
1121 }
1122 else {
1123 $params['is_pay_later'] = 0;
1124 }
1125
1126 $this->set('is_pay_later', $params['is_pay_later']);
1127 // assign pay later stuff
1128 $this->_params['is_pay_later'] = CRM_Utils_Array::value('is_pay_later', $params, FALSE);
1129 $this->assign('is_pay_later', $params['is_pay_later']);
1130 if ($params['is_pay_later']) {
1131 $this->assign('pay_later_text', $this->_values['pay_later_text']);
1132 $this->assign('pay_later_receipt', $this->_values['pay_later_receipt']);
1133 }
1134
1135 //carry campaign from profile.
1136 if (array_key_exists('contribution_campaign_id', $params)) {
1137 $params['campaign_id'] = $params['contribution_campaign_id'];
1138 }
1139
1140 if (CRM_Utils_Array::value('onbehalfof_id', $params)) {
1141 $params['organization_id'] = $params['onbehalfof_id'];
1142 }
1143
1144 $params['currencyID'] = $config->defaultCurrency;
1145 $params['amount'] = self::computeAmount($params, $this);
1146 $params['separate_amount'] = $params['amount'];
1147 $memFee = NULL;
1148 if (CRM_Utils_Array::value('selectMembership', $params)) {
1149 if (!empty($this->_membershipTypeValues)) {
1150 $membershipTypeValues = $this->_membershipTypeValues[$params['selectMembership']];
1151 }
1152 else {
1153 $membershipTypeValues = CRM_Member_BAO_Membership::buildMembershipTypeValues($this,
1154 $params['selectMembership']
1155 );
1156 }
1157 $memFee = $membershipTypeValues['minimum_fee'];
1158 if (!$params['amount'] && !$this->_separateMembershipPayment) {
1159 $params['amount'] = $memFee ? $memFee : 0;
1160 }
1161 }
1162
1163 //If the membership & contribution is used in contribution page & not seperate payment
1164 $fieldId = $memPresent = $membershipLabel = $fieldOption = $is_quick_config = NULL;
1165 $proceFieldAmount = 0;
1166 if ($this->_separateMembershipPayment == 0) {
1167 $is_quick_config = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_priceSetId, 'is_quick_config');
1168 if ($is_quick_config) {
1169 foreach ($this->_priceSet['fields'] as $fieldKey => $fieldVal) {
1170 if ($fieldVal['name'] == 'membership_amount' && CRM_Utils_Array::value('price_' . $fieldKey , $params)) {
1171 $fieldId = $fieldVal['id'];
1172 $fieldOption = $params['price_' . $fieldId];
1173 $proceFieldAmount += $fieldVal['options'][$this->_submitValues['price_' . $fieldId]]['amount'];
1174 $memPresent = TRUE;
1175 }
1176 else {
1177 if (CRM_Utils_Array::value('price_' . $fieldKey, $params) && $memPresent && ($fieldVal['name'] == 'other_amount' || $fieldVal['name'] == 'contribution_amount')) {
1178 $fieldId = $fieldVal['id'];
1179 if ($fieldVal['name'] == 'other_amount') {
1180 $proceFieldAmount += $this->_submitValues['price_' . $fieldId];
1181 }
1182 elseif ($fieldVal['name'] == 'contribution_amount' && $this->_submitValues['price_' . $fieldId] > 0) {
1183 $proceFieldAmount += $fieldVal['options'][$this->_submitValues['price_' . $fieldId]]['amount'];
1184 }
1185 unset($params['price_' . $fieldId]);
1186 break;
1187 }
1188 }
1189 }
1190 }
1191 }
1192
1193 if (!isset($params['amount_other'])) {
1194 $this->set('amount_level', CRM_Utils_Array::value('amount_level', $params));
1195 }
1196
1197 if ($priceSetId = CRM_Utils_Array::value('priceSetId', $params)) {
1198 $lineItem = array();
1199 $is_quick_config = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceSetId, 'is_quick_config' );
1200 if ( $is_quick_config ) {
1201 foreach ( $this->_values['fee'] as $key => & $val ) {
1202 if ( $val['name'] == 'other_amount' && $val['html_type'] == 'Text' && array_key_exists( 'price_'.$key, $params ) && $params['price_'.$key] != 0 ) {
1203 foreach ( $val['options'] as $optionKey => & $options ) {
1204 $options['amount'] = CRM_Utils_Array::value( 'price_'.$key, $params );
1205 break;
1206 }
1207 $params['price_'.$key] = 1;
1208 break;
1209 }
1210 }
1211 }
1212
1213 $component = '';
1214 if ($this->_membershipBlock) {
1215 $component = 'membership';
1216 }
1217 CRM_Price_BAO_PriceSet::processAmount($this->_values['fee'], $params, $lineItem[$priceSetId], $component);
1218
1219 if ($proceFieldAmount) {
1220 $lineItem[$params['priceSetId']][$fieldOption]['line_total'] = $proceFieldAmount;
1221 $lineItem[$params['priceSetId']][$fieldOption]['unit_price'] = $proceFieldAmount;
1222 if (!$this->_membershipBlock['is_separate_payment']) {
1223 $params['amount'] = $proceFieldAmount; //require when separate membership not used
1224 }
1225 }
1226 $this->set('lineItem', $lineItem);
1227 }
1228
1229 if ($this->_membershipBlock['is_separate_payment'] && CRM_Utils_Array::value('separate_amount', $params)) {
1230 $this->set('amount', $params['separate_amount']);
1231 } else {
1232 $this->set('amount', $params['amount']);
1233 }
1234
1235 // generate and set an invoiceID for this transaction
1236 $invoiceID = md5(uniqid(rand(), TRUE));
1237 $this->set('invoiceID', $invoiceID);
1238
1239 // required only if is_monetary and valid postive amount
1240 if ($this->_values['is_monetary'] &&
1241 is_array($this->_paymentProcessor) &&
1242 ((float ) $params['amount'] > 0.0 || $memFee > 0.0)
1243 ) {
1244
1245 // default mode is direct
1246 $this->set('contributeMode', 'direct');
1247
1248 if ($this->_paymentProcessor &&
1249 $this->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_BUTTON
1250 ) {
1251 //get the button name
1252 $buttonName = $this->controller->getButtonName();
1253 if (in_array($buttonName,
1254 array($this->_expressButtonName, $this->_expressButtonName . '_x', $this->_expressButtonName . '_y')
1255 ) &&
1256 !CRM_Utils_Array::value('is_pay_later', $params)
1257 ) {
1258 $this->set('contributeMode', 'express');
1259
1260 $donateURL = CRM_Utils_System::url('civicrm/contribute', '_qf_Contribute_display=1');
1261 $params['cancelURL'] = CRM_Utils_System::url('civicrm/contribute/transact', "_qf_Main_display=1&qfKey={$params['qfKey']}", TRUE, NULL, FALSE);
1262 $params['returnURL'] = CRM_Utils_System::url('civicrm/contribute/transact', "_qf_Confirm_display=1&rfp=1&qfKey={$params['qfKey']}", TRUE, NULL, FALSE);
1263 $params['invoiceID'] = $invoiceID;
1264
1265 //default action is Sale
1266 $params['payment_action'] = 'Sale';
1267
1268 $payment = CRM_Core_Payment::singleton($this->_mode, $this->_paymentProcessor, $this);
1269 $token = $payment->setExpressCheckout($params);
1270 if (is_a($token, 'CRM_Core_Error')) {
1271 CRM_Core_Error::displaySessionError($token);
1272 CRM_Utils_System::redirect($params['cancelURL']);
1273 }
1274
1275 $this->set('token', $token);
1276
1277 $paymentURL = $this->_paymentProcessor['url_site'] . "/cgi-bin/webscr?cmd=_express-checkout&token=$token";
1278 CRM_Utils_System::redirect($paymentURL);
1279 }
1280 }
1281 elseif ($this->_paymentProcessor &&
1282 $this->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_NOTIFY
1283 ) {
1284 $this->set('contributeMode', 'notify');
1285 }
1286 }
1287
1288 // should we skip the confirm page?
1289 if (!CRM_Utils_Array::value('is_confirm_enabled', $this->_values)) {
1290 // call the post process hook for the main page before we switch to confirm
1291 $this->postProcessHook();
1292
1293 // build the confirm page
1294 $confirmForm = &$this->controller->_pages['Confirm'];
1295 $confirmForm->preProcess();
1296 $confirmForm->buildQuickForm();
1297
1298 // the confirmation page is valid
1299 $data = &$this->controller->container();
1300 $data['valid']['Confirm'] = 1;
1301
1302 // confirm the contribution
1303 // mainProcess calls the hook also
1304 $confirmForm->mainProcess();
1305 $qfKey = $this->controller->_key;
1306
1307 // redirect to thank you page
1308 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contribute/transact', "_qf_ThankYou_display=1&qfKey=$qfKey", TRUE, NULL, FALSE));
1309 }
1310 }
1311
1312 /**
1313 * Handle Payment Processor switching
1314 * For contribution and event registration forms
1315 */
1316 static function preProcessPaymentOptions(&$form, $noFees = FALSE) {
1317 $form->_snippet = CRM_Utils_Array::value('snippet', $_GET);
1318 $form->assign('snippet', $form->_snippet);
1319
1320 $form->_paymentProcessors = $noFees ? array() : $form->get('paymentProcessors');
1321 $form->_ppType = NULL;
1322 if ($form->_paymentProcessors) {
1323 // Fetch type during ajax request
1324 if (isset($_GET['type']) && $form->_snippet) {
1325 $form->_ppType = $_GET['type'];
1326 }
1327 // Remember type during form post
1328 elseif (!empty($form->_submitValues)) {
1329 $form->_ppType = CRM_Utils_Array::value('payment_processor', $form->_submitValues);
1330 $form->_paymentProcessor = CRM_Utils_Array::value($form->_ppType, $form->_paymentProcessors);
1331 $form->set('type', $form->_ppType);
1332 $form->set('mode', $form->_mode);
1333 $form->set('paymentProcessor', $form->_paymentProcessor);
1334 }
1335 // Set default payment processor
1336 else {
1337 foreach ($form->_paymentProcessors as $values) {
1338 if (!empty($values['is_default']) || count($form->_paymentProcessors) == 1) {
1339 $form->_ppType = $values['id'];
1340 break;
1341 }
1342 }
1343 }
1344 if ($form->_ppType) {
1345 CRM_Core_Payment_ProcessorForm::preProcess($form);
1346 }
1347
1348 //get payPal express id and make it available to template
1349 foreach ($form->_paymentProcessors as $ppId => $values) {
1350 $payPalExpressId = ($values['payment_processor_type'] == 'PayPal_Express') ? $values['id'] : 0;
1351 $form->assign('payPalExpressId', $payPalExpressId);
1352 if ($payPalExpressId) {
1353 break;
1354 }
1355 }
1356 if (!$form->_snippet) {
1357 // Add JS to show icons for the accepted credit cards
1358 $creditCardTypes = CRM_Core_Payment_Form::getCreditCardCSSNames();
1359 CRM_Core_Resources::singleton()
1360 ->addSetting(array('config' => array('creditCardTypes' => $creditCardTypes)))
1361 ->addScriptFile('civicrm', 'templates/CRM/Core/BillingBlock.js');
1362 }
1363 }
1364 $form->assign('ppType', $form->_ppType);
1365 }
1366 }
1367