From 90a4b1d1f57c2bbbdccb89b75d3cb3aac7869452 Mon Sep 17 00:00:00 2001
From: Matthew Wire <mjw@mjwconsult.co.uk>
Date: Fri, 21 Jan 2022 22:46:11 +0000
Subject: [PATCH] Handle drupal webform with js debugging

---
 .../Form/DrupalWebformBillingBlock.tpl        | 22 +++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 templates/CRM/Mjwshared/Form/DrupalWebformBillingBlock.tpl

diff --git a/templates/CRM/Mjwshared/Form/DrupalWebformBillingBlock.tpl b/templates/CRM/Mjwshared/Form/DrupalWebformBillingBlock.tpl
new file mode 100644
index 0000000..340eddc
--- /dev/null
+++ b/templates/CRM/Mjwshared/Form/DrupalWebformBillingBlock.tpl
@@ -0,0 +1,22 @@
+{*
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC. All rights reserved.                        |
+ |                                                                    |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
+ +--------------------------------------------------------------------+
+*}
+{* Manually create the CRM.vars.payment here for drupal webform because \Civi::resources()->addVars() does not work in this context *}
+{literal}
+<script type="text/javascript">
+  CRM.$(function($) {
+    $(document).ready(function() {
+      if (typeof CRM.vars.payment === 'undefined') {
+        var paymentJSVars = {{/literal}{foreach from=$paymentJSVars key=arrayKey item=arrayValue}{$arrayKey}:'{$arrayValue}',{/foreach}{literal}};
+        CRM.vars.payment = paymentJSVars;
+      }
+    });
+  });
+</script>
+{/literal}
-- 
GitLab