Merge pull request #11986 from eileenmcnaughton/test
[civicrm-core.git] / CRM / Financial / Form / Payment.php
... / ...
CommitLineData
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
32 */
33class CRM_Financial_Form_Payment extends CRM_Core_Form {
34
35 /**
36 * @var int
37 */
38 protected $_paymentProcessorID;
39 protected $currency;
40
41 public $_values = array();
42
43 /**
44 * @var array
45 */
46 public $_paymentProcessor;
47
48 /**
49 * @var bool
50 */
51 public $isBackOffice = FALSE;
52
53 /**
54 * @var String
55 */
56 public $_formName = '';
57
58 /**
59 * Set variables up before form is built.
60 */
61 public function preProcess() {
62 parent::preProcess();
63
64 $this->_formName = CRM_Utils_Request::retrieve('formName', 'String', $this);
65
66 $this->_values['custom_pre_id'] = CRM_Utils_Request::retrieve('pre_profile_id', 'Integer', $this);
67
68 $this->_paymentProcessorID = CRM_Utils_Request::retrieve('processor_id', 'Integer', CRM_Core_DAO::$_nullObject,
69 TRUE);
70 $this->currency = CRM_Utils_Request::retrieve('currency', 'String', CRM_Core_DAO::$_nullObject,
71 TRUE);
72
73 $this->paymentInstrumentID = CRM_Utils_Request::retrieve('payment_instrument_id', 'Integer');
74 $this->isBackOffice = CRM_Utils_Request::retrieve('is_back_office', 'Integer');
75
76 $this->assignBillingType();
77
78 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($this->_paymentProcessorID);
79
80 CRM_Core_Payment_ProcessorForm::preProcess($this);
81
82 self::addCreditCardJs($this->_paymentProcessorID);
83
84 $this->assign('paymentProcessorID', $this->_paymentProcessorID);
85 $this->assign('currency', $this->currency);
86
87 $this->assign('suppressForm', TRUE);
88 $this->controller->_generateQFKey = FALSE;
89 }
90
91 /**
92 * Get currency
93 *
94 * @param array $submittedValues
95 * Required for consistency with other form methods.
96 *
97 * @return string
98 */
99 public function getCurrency($submittedValues = array()) {
100 return $this->currency;
101 }
102
103 /**
104 * Build quickForm.
105 */
106 public function buildQuickForm() {
107 CRM_Core_Payment_ProcessorForm::buildQuickForm($this);
108 }
109
110 /**
111 * Set default values for the form.
112 */
113 public function setDefaultValues() {
114 $contactID = $this->getContactID();
115 CRM_Core_Payment_Form::setDefaultValues($this, $contactID);
116 return $this->_defaults;
117 }
118
119 /**
120 * Add JS to show icons for the accepted credit cards.
121 *
122 * @param int $paymentProcessorID
123 * @param string $region
124 */
125 public static function addCreditCardJs($paymentProcessorID = NULL, $region = 'billing-block') {
126 $creditCards = CRM_Financial_BAO_PaymentProcessor::getCreditCards($paymentProcessorID);
127 $creditCardTypes = CRM_Core_Payment_Form::getCreditCardCSSNames($creditCards);
128 CRM_Core_Resources::singleton()
129 // CRM-20516: add BillingBlock script on billing-block region
130 // to support this feature in payment form snippet too.
131 ->addScriptFile('civicrm', 'templates/CRM/Core/BillingBlock.js', 10, $region, FALSE)
132 // workaround for CRM-13634
133 // ->addSetting(array('config' => array('creditCardTypes' => $creditCardTypes)));
134 ->addScript('CRM.config.creditCardTypes = ' . json_encode($creditCardTypes) . ';', '-9999', $region);
135 }
136
137}