3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
32 * @copyright CiviCRM LLC (c) 2004-2014
38 * This class generates form components for processing a participation fee block
40 class CRM_Event_Form_EventFees
{
43 * Function to set variables up before form is built
50 static function preProcess(&$form) {
51 //as when call come from register.php
52 if (!$form->_eventId
) {
53 $form->_eventId
= CRM_Utils_Request
::retrieve('eventId', 'Positive', $form);
56 $form->_pId
= CRM_Utils_Request
::retrieve('participantId', 'Positive', $form);
57 $form->_discountId
= CRM_Utils_Request
::retrieve('discountId', 'Positive', $form);
59 $form->_fromEmails
= CRM_Event_BAO_Event
::getFromEmailIds($form->_eventId
);
61 //CRM-6907 set event specific currency.
62 if ($form->_eventId
&&
63 ($currency = CRM_Core_DAO
::getFieldValue('CRM_Event_DAO_Event', $form->_eventId
, 'currency'))
65 $config = CRM_Core_Config
::singleton();
66 $config->defaultCurrency
= $currency;
71 * This function sets the default values for the form in edit/view mode
72 * the default values are retrieved from the database
80 static function setDefaultValues(&$form) {
83 if ($form->_eventId
) {
84 //get receipt text and financial type
85 $returnProperities = array( 'confirm_email_text', 'financial_type_id', 'campaign_id', 'start_date' );
87 CRM_Core_DAO
::commonRetrieveAll('CRM_Event_DAO_Event', 'id', $form->_eventId
, $details, $returnProperities);
88 if (!empty($details[$form->_eventId
]['financial_type_id'])) {
89 $defaults[$form->_pId
]['financial_type_id'] = $details[$form->_eventId
]['financial_type_id'];
95 $params = array('id' => $form->_pId
);
97 CRM_Event_BAO_Participant
::getValues($params, $defaults, $ids);
98 if ($form->_action
== CRM_Core_Action
::UPDATE
) {
100 if (!empty($form->_values
['discount'])) {
101 foreach ($form->_values
['discount'] as $key => $value) {
102 $value = current($value);
103 $discounts[$key] = $value['name'];
107 if ($form->_discountId
&& !empty($discounts[$defaults[$form->_pId
]['discount_id']])) {
108 $form->assign('discount', $discounts[$defaults[$form->_pId
]['discount_id']]);
111 $form->assign('fee_amount', CRM_Utils_Array
::value('fee_amount', $defaults[$form->_pId
]));
112 $form->assign('fee_level', CRM_Utils_Array
::value('fee_level', $defaults[$form->_pId
]));
114 $defaults[$form->_pId
]['send_receipt'] = 0;
117 $defaults[$form->_pId
]['send_receipt'] = (strtotime(CRM_Utils_Array
::value('start_date', $details[$form->_eventId
])) >= time()) ?
1 : 0;
118 if ($form->_eventId
&& !empty($details[$form->_eventId
]['confirm_email_text'])) {
120 $defaults[$form->_pId
]['receipt_text'] = $details[$form->_eventId
]['confirm_email_text'];
123 list($defaults[$form->_pId
]['receive_date']) = CRM_Utils_Date
::setDateDefaults();
126 //CRM-11601 we should keep the record contribution
127 //true by default while adding participant
128 if ($form->_action
== CRM_Core_Action
::ADD
&& !$form->_mode
&& $form->_isPaidEvent
) {
129 $defaults[$form->_pId
]['record_contribution'] = 1;
133 if (empty($defaults['payment_instrument_id'])) {
134 $defaults[$form->_pId
]['payment_instrument_id'] = key(CRM_Core_OptionGroup
::values('payment_instrument', FALSE, FALSE, FALSE, 'AND is_default = 1'));
137 $config = CRM_Core_Config
::singleton();
138 // set default country from config if no country set
139 if (empty($defaults[$form->_pId
]["billing_country_id-{$form->_bltID}"])) {
140 $defaults[$form->_pId
]["billing_country_id-{$form->_bltID}"] = $config->defaultContactCountry
;
143 if (empty($defaults["billing_state_province_id-{$form->_bltID}"])) {
144 $defaults[$form->_pId
]["billing_state_province_id-{$form->_bltID}"] = $config->defaultContactStateProvince
;
147 $billingDefaults = $form->getProfileDefaults('Billing', $form->_contactId
);
148 $defaults[$form->_pId
] = array_merge($defaults[$form->_pId
], $billingDefaults);
150 // // hack to simplify credit card entry for testing
151 // $defaults[$form->_pId]['credit_card_type'] = 'Visa';
152 // $defaults[$form->_pId]['credit_card_number'] = '4807731747657838';
153 // $defaults[$form->_pId]['cvv2'] = '000';
154 // $defaults[$form->_pId]['credit_card_exp_date'] = array( 'Y' => '2012', 'M' => '05' );
158 // if user has selected discount use that to set default
159 if (isset($form->_discountId
)) {
160 $defaults[$form->_pId
]['discount_id'] = $form->_discountId
;
162 //hack to set defaults for already selected discount value
163 if ($form->_action
== CRM_Core_Action
::UPDATE
&& !$form->_originalDiscountId
) {
164 $form->_originalDiscountId
= $defaults[$form->_pId
]['discount_id'];
165 if ($form->_originalDiscountId
) {
166 $defaults[$form->_pId
]['discount_id'] = $form->_originalDiscountId
;
169 $discountId = $form->_discountId
;
172 $discountId = CRM_Core_BAO_Discount
::findSet($form->_eventId
, 'civicrm_event');
176 $priceSetId = CRM_Core_DAO
::getFieldValue('CRM_Core_BAO_Discount', $discountId, 'price_set_id');
179 $priceSetId = CRM_Price_BAO_PriceSet
::getFor('civicrm_event', $form->_eventId
);
182 if (($form->_action
== CRM_Core_Action
::ADD
) && $form->_eventId
&& $discountId) {
183 // this case is for add mode, where we show discount automatically
184 $defaults[$form->_pId
]['discount_id'] = $discountId;
189 // get price set default values, CRM-4090
190 if (in_array(get_class($form),
192 'CRM_Event_Form_Participant',
193 'CRM_Event_Form_Registration_Register',
194 'CRM_Event_Form_Registration_AdditionalParticipant',
197 $priceSetValues = self
::setDefaultPriceSet($form->_pId
, $form->_eventId
);
198 if (!empty($priceSetValues)) {
199 $defaults[$form->_pId
] = array_merge($defaults[$form->_pId
], $priceSetValues);
203 if ($form->_action
== CRM_Core_Action
::ADD
&& !empty($form->_priceSet
['fields'])) {
204 foreach ($form->_priceSet
['fields'] as $key => $val) {
205 foreach ($val['options'] as $keys => $values) {
206 if ($values['is_default']) {
207 if (get_class($form) != 'CRM_Event_Form_Participant' && !empty($values['is_full'])) {
211 if ($val['html_type'] == 'CheckBox') {
212 $defaults[$form->_pId
]["price_{$key}"][$keys] = 1;
215 $defaults[$form->_pId
]["price_{$key}"] = $keys;
222 $form->assign('totalAmount', CRM_Utils_Array
::value('fee_amount', $defaults[$form->_pId
]));
223 if ($form->_action
== CRM_Core_Action
::UPDATE
) {
224 $fee_level = $defaults[$form->_pId
]['fee_level'];
225 CRM_Event_BAO_Participant
::fixEventLevel($fee_level);
226 $form->assign('fee_level', $fee_level);
227 $form->assign('fee_amount', CRM_Utils_Array
::value('fee_amount', $defaults[$form->_pId
]));
232 if (!empty($defaults[$form->_pId
]['participant_fee_currency'])) {
233 $form->assign('fee_currency', $defaults[$form->_pId
]['participant_fee_currency']);
237 if ($contriId = $form->get('onlinePendingContributionId')) {
238 $contribution = new CRM_Contribute_DAO_Contribution();
239 $contribution->id
= $contriId;
240 $contribution->find( true );
241 foreach( array('financial_type_id', 'payment_instrument_id','contribution_status_id', 'receive_date', 'total_amount' ) as $f ) {
242 if ($f == 'receive_date') {
243 list($defaults[$form->_pId
]['receive_date']) = CRM_Utils_Date
::setDateDefaults($contribution->$f);
246 $defaults[$form->_pId
][$f] = $contribution->$f;
250 return $defaults[$form->_pId
];
254 * This function sets the default values for price set.
258 * @param $participantID
259 * @param null $eventID
260 * @param bool $includeQtyZero
264 static function setDefaultPriceSet($participantID, $eventID = NULL, $includeQtyZero = TRUE) {
266 if (!$eventID && $participantID) {
267 $eventID = CRM_Core_DAO
::getFieldValue('CRM_Event_DAO_Participant', $participantID, 'event_id');
269 if (!$participantID ||
!$eventID) {
274 $priceSetID = CRM_Price_BAO_PriceSet
::getFor('civicrm_event', $eventID);
279 // use line items for setdefault price set fields, CRM-4090
280 $lineItems[$participantID] = CRM_Price_BAO_LineItem
::getLineItems($participantID, 'participant', NULL, $includeQtyZero);
282 if (is_array($lineItems[$participantID]) &&
283 !CRM_Utils_System
::isNull($lineItems[$participantID])
286 $priceFields = $htmlTypes = $optionValues = array();
287 foreach ($lineItems[$participantID] as $lineId => $items) {
288 $priceFieldId = CRM_Utils_Array
::value('price_field_id', $items);
289 $priceOptionId = CRM_Utils_Array
::value('price_field_value_id', $items);
290 if ($priceFieldId && $priceOptionId) {
291 $priceFields[$priceFieldId][] = $priceOptionId;
295 if (empty($priceFields)) {
299 // get all price set field html types.
302 FROM civicrm_price_field
303 WHERE id IN (' . implode(',', array_keys($priceFields)) . ')';
304 $fieldDAO = CRM_Core_DAO
::executeQuery($sql);
305 while ($fieldDAO->fetch()) {
306 $htmlTypes[$fieldDAO->id
] = $fieldDAO->html_type
;
309 foreach ($lineItems[$participantID] as $lineId => $items) {
310 $fieldId = $items['price_field_id'];
311 $htmlType = CRM_Utils_Array
::value($fieldId, $htmlTypes);
316 if ($htmlType == 'Text') {
317 $defaults["price_{$fieldId}"] = $items['qty'];
320 $fieldOptValues = CRM_Utils_Array
::value($fieldId, $priceFields);
321 if (!is_array($fieldOptValues)) {
325 foreach ($fieldOptValues as $optionId) {
326 if ($htmlType == 'CheckBox') {
327 $defaults["price_{$fieldId}"][$optionId] = TRUE;
330 $defaults["price_{$fieldId}"] = $optionId;
342 * Function to build the form
349 static function buildQuickForm(&$form) {
350 if ($form->_eventId
) {
351 $form->_isPaidEvent
= CRM_Core_DAO
::getFieldValue('CRM_Event_DAO_Event', $form->_eventId
, 'is_monetary');
352 if ($form->_isPaidEvent
) {
353 $form->addElement('hidden', 'hidden_feeblock', 1);
356 // make sure this is for backoffice registration.
357 if ($form->getName() == 'Participant') {
358 $eventfullMsg = CRM_Event_BAO_Participant
::eventFullMessage($form->_eventId
, $form->_pId
);
359 $form->addElement('hidden', 'hidden_eventFullMsg', $eventfullMsg, array('id' => 'hidden_eventFullMsg'));
364 if (CRM_Core_DAO
::getFieldValue('CRM_Event_DAO_ParticipantPayment',
365 $form->_pId
, 'contribution_id', 'participant_id'
367 $form->_online
= TRUE;
371 if ($form->_isPaidEvent
) {
372 $params = array('id' => $form->_eventId
);
373 CRM_Event_BAO_Event
::retrieve($params, $event);
375 //retrieve custom information
376 $form->_values
= array();
377 CRM_Event_Form_Registration
::initEventFee($form, $event['id']);
378 CRM_Event_Form_Registration_Register
::buildAmount($form, TRUE, $form->_discountId
);
380 if (!CRM_Utils_System
::isNull(CRM_Utils_Array
::value('line_items', $form->_values
))) {
381 $lineItem[] = $form->_values
['line_items'];
383 $form->assign('lineItem', empty($lineItem) ?
FALSE : $lineItem);
384 $discounts = array();
385 if (!empty($form->_values
['discount'])) {
386 foreach ($form->_values
['discount'] as $key => $value) {
387 $value = current($value);
388 $discounts[$key] = $value['name'];
391 $element = $form->add('select', 'discount_id',
394 0 => ts('- select -')) +
$discounts,
396 array('onchange' => "buildFeeBlock( {$form->_eventId}, this.value );")
399 if ($form->_online
) {
404 CRM_Core_Payment_Form
::buildCreditCard($form, TRUE);
406 elseif (!$form->_mode
) {
407 $form->addElement('checkbox', 'record_contribution', ts('Record Payment?'), NULL,
408 array('onclick' => "return showHideByValue('record_contribution','','payment_information','table-row','radio',false);")
411 $form->add('select', 'financial_type_id',
412 ts( 'Financial Type' ),
413 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant
::financialType()
416 $form->addDate('receive_date', ts('Received'), FALSE, array('formatType' => 'activityDate'));
418 $form->add('select', 'payment_instrument_id',
420 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant
::paymentInstrument(),
421 FALSE, array('onChange' => "return showHideByValue('payment_instrument_id','4','checkNumber','table-row','select',false);")
423 // don't show transaction id in batch update mode
424 $path = CRM_Utils_System
::currentPath();
425 $form->assign('showTransactionId', FALSE);
426 if ($path != 'civicrm/contact/search/basic') {
427 $form->add('text', 'trxn_id', ts('Transaction ID'));
428 $form->addRule('trxn_id', ts('Transaction ID already exists in Database.'),
429 'objectExists', array('CRM_Contribute_DAO_Contribution', $form->_eventId
, 'trxn_id')
431 $form->assign('showTransactionId', TRUE);
434 $status = CRM_Contribute_PseudoConstant
::contributionStatus();
436 // CRM-14417 suppressing contribution statuses that are NOT relevant to new participant registrations
437 $statusName = CRM_Contribute_PseudoConstant
::contributionStatus(NULL, 'name');
446 unset($status[CRM_Utils_Array
::key($suppress, $statusName)]);
449 $form->add('select', 'contribution_status_id',
450 ts('Payment Status'), $status
453 $form->add('text', 'check_number', ts('Check Number'),
454 CRM_Core_DAO
::getAttribute('CRM_Contribute_DAO_Contribution', 'check_number')
457 $form->add('text', 'total_amount', ts('Amount'),
458 CRM_Core_DAO
::getAttribute('CRM_Contribute_DAO_Contribution', 'total_amount')
463 $form->add('text', 'amount', ts('Event Fee(s)'));
465 $form->assign('onlinePendingContributionId', $form->get('onlinePendingContributionId'));
467 $form->assign('paid', $form->_isPaidEvent
);
469 $form->addElement('checkbox',
471 ts('Send Confirmation?'), NULL,
472 array('onclick' => "showHideByValue('send_receipt','','notice','table-row','radio',false); showHideByValue('send_receipt','','from-email','table-row','radio',false);")
475 $form->add('select', 'from_email_address', ts('Receipt From'), $form->_fromEmails
['from_email_id']);
477 $form->add('textarea', 'receipt_text', ts('Confirmation Message'));
479 // Retrieve the name and email of the contact - form will be the TO for receipt email ( only if context is not standalone)
480 if ($form->_context
!= 'standalone') {
481 if ($form->_contactId
) {
482 list($form->_contributorDisplayName
,
483 $form->_contributorEmail
484 ) = CRM_Contact_BAO_Contact_Location
::getEmailDetails($form->_contactId
);
485 $form->assign('email', $form->_contributorEmail
);
488 //show email block for batch update for event
489 $form->assign('batchEmail', TRUE);
493 $mailingInfo = CRM_Core_BAO_Setting
::getItem(CRM_Core_BAO_Setting
::MAILING_PREFERENCES_NAME
,
496 $form->assign('outBound_option', $mailingInfo['outBound_option']);
497 $form->assign('hasPayment', $form->_paymentId
);