Merge pull request #10888 from mattwire/CRM-21092_financial_batch_fixes
[civicrm-core.git] / CRM / Financial / Form / Payment.php
CommitLineData
aaff4c69
EM
1<?php
2/*
4f6cdd27 3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
4f6cdd27 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
4f6cdd27
EM
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 +--------------------------------------------------------------------+
aaff4c69
EM
26 */
27
28/**
29 *
30 * @package CRM
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
aaff4c69
EM
32 */
33class CRM_Financial_Form_Payment extends CRM_Core_Form {
1d1fee72 34
35 /**
36 * @var int
37 */
38 protected $_paymentProcessorID;
f61437d3 39 protected $currency;
a55e39e9 40
c0fbe80f 41 public $_values = array();
1d1fee72 42
43 /**
44 * @var array
45 */
46 public $_paymentProcessor;
18135422 47
48 /**
49 * @var bool
50 */
51 public $isBackOffice = FALSE;
52
aaff4c69
EM
53 /**
54 * Set variables up before form is built.
aaff4c69
EM
55 */
56 public function preProcess() {
57 parent::preProcess();
423b9af4 58
d38c288e 59 $this->_values['custom_pre_id'] = CRM_Utils_Request::retrieve('pre_profile_id', 'Integer', $this);
423b9af4 60
aaff4c69
EM
61 $this->_paymentProcessorID = CRM_Utils_Request::retrieve('processor_id', 'Integer', CRM_Core_DAO::$_nullObject,
62 TRUE);
f61437d3
K
63 $this->currency = CRM_Utils_Request::retrieve('currency', 'String', CRM_Core_DAO::$_nullObject,
64 TRUE);
aaff4c69 65
18135422 66 $this->paymentInstrumentID = CRM_Utils_Request::retrieve('payment_instrument_id', 'Integer');
67 $this->isBackOffice = CRM_Utils_Request::retrieve('is_back_office', 'Integer');
68
aaff4c69
EM
69 $this->assignBillingType();
70
a9768188 71 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($this->_paymentProcessorID);
1d1fee72 72
aaff4c69
EM
73 CRM_Core_Payment_ProcessorForm::preProcess($this);
74
cb5962bd 75 self::addCreditCardJs($this->_paymentProcessorID);
aaff4c69 76
bc44463a 77 $this->assign('paymentProcessorID', $this->_paymentProcessorID);
f61437d3 78 $this->assign('currency', $this->currency);
d87cd28c
CW
79
80 $this->assign('suppressForm', TRUE);
a38068fe 81 $this->controller->_generateQFKey = FALSE;
bc44463a
CW
82 }
83
f61437d3
K
84 /**
85 * @return string
86 */
87 public function getCurrency() {
88 return $this->currency;
89 }
90
1d1fee72 91 /**
92 * Build quickForm.
93 */
bc44463a
CW
94 public function buildQuickForm() {
95 CRM_Core_Payment_ProcessorForm::buildQuickForm($this);
96 }
97
70d1766d 98 /**
99 * Set default values for the form.
100 */
101 public function setDefaultValues() {
102 $contactID = $this->getContactID();
103 CRM_Core_Payment_Form::setDefaultValues($this, $contactID);
104 return $this->_defaults;
105 }
106
bc44463a 107 /**
1d1fee72 108 * Add JS to show icons for the accepted credit cards.
bf48aa29 109 *
110 * @param int $paymentProcessorID
9b2e3ee6 111 * @param string $region
bc44463a 112 */
9b2e3ee6 113 public static function addCreditCardJs($paymentProcessorID = NULL, $region = 'billing-block') {
cb5962bd
SL
114 $creditCards = CRM_Financial_BAO_PaymentProcessor::getCreditCards($paymentProcessorID);
115 $creditCardTypes = CRM_Core_Payment_Form::getCreditCardCSSNames($creditCards);
aaff4c69 116 CRM_Core_Resources::singleton()
7b9cb12a 117 // CRM-20516: add BillingBlock script on billing-block region
118 // to support this feature in payment form snippet too.
9b2e3ee6 119 ->addScriptFile('civicrm', 'templates/CRM/Core/BillingBlock.js', 10, $region, FALSE)
aaff4c69
EM
120 // workaround for CRM-13634
121 // ->addSetting(array('config' => array('creditCardTypes' => $creditCardTypes)));
9b2e3ee6 122 ->addScript('CRM.config.creditCardTypes = ' . json_encode($creditCardTypes) . ';', '-9999', $region);
aaff4c69
EM
123 }
124
125}