Skip to content
Snippets Groups Projects
Commit 7a07bc2f authored by mattwire's avatar mattwire
Browse files

Fix some fields hidden when configuring non-stripe payment processors

parent fcbb195f
No related branches found
No related tags found
1 merge request!153Fix some fields hidden when configuring non-stripe payment processors
......@@ -201,10 +201,14 @@ function stripe_civicrm_buildForm($formName, &$form) {
break;
case 'CRM_Admin_Form_PaymentProcessor':
// Hide configuration fields that we don't use
foreach (['accept_credit_cards', 'url_site', 'url_recur', 'test_url_site', 'test_url_recur'] as $element)
if ($form->elementExists($element)) {
$form->removeElement($element);
$paymentProcessor = $form->getVar('_paymentProcessorDAO');
if ($paymentProcessor && $paymentProcessor->class_name === 'Payment_Stripe') {
// Hide configuration fields that we don't use
foreach (['accept_credit_cards', 'url_site', 'url_recur', 'test_url_site', 'test_url_recur'] as $element) {
if ($form->elementExists($element)) {
$form->removeElement($element);
}
}
}
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment