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