Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Stripe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Extensions
Stripe
Commits
3aa67a31
Commit
3aa67a31
authored
4 years ago
by
mattwire
Browse files
Options
Downloads
Patches
Plain Diff
Don't load scripts via alterContent any more - no longer required
parent
2d83d625
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!124
6.5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
stripe.php
+0
-34
0 additions, 34 deletions
stripe.php
with
0 additions
and
34 deletions
stripe.php
+
0
−
34
View file @
3aa67a31
...
@@ -98,40 +98,6 @@ function stripe_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
...
@@ -98,40 +98,6 @@ function stripe_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
_stripe_civix_civicrm_alterSettingsFolders
(
$metaDataFolders
);
_stripe_civix_civicrm_alterSettingsFolders
(
$metaDataFolders
);
}
}
/**
* Implementation of hook_civicrm_alterContent
*
* Adding civicrm_stripe.js in a way that works for webforms and (some) Civi forms.
* hook_civicrm_buildForm is not called for webforms
*
* @return void
*/
function
stripe_civicrm_alterContent
(
&
$content
,
$context
,
$tplName
,
&
$object
)
{
/* Adding stripe js:
* - Webforms don't get scripts added by hook_civicrm_buildForm so we have to user alterContent
* - (Webforms still call buildForm and it looks like they are added but they are not,
* which is why we check for $object instanceof CRM_Financial_Form_Payment here to ensure that
* Webforms always have scripts added).
* - Almost all forms have context = 'form' and a paymentprocessor object.
* - Membership backend form is a 'page' and has a _isPaymentProcessor=true flag.
*
*/
if
((
$context
==
'form'
&&
!
empty
(
$object
->
_paymentProcessor
[
'class_name'
]))
||
((
$context
==
'page'
)
&&
!
empty
(
$object
->
_isPaymentProcessor
)))
{
if
(
!
isset
(
\Civi
::
$statics
[
E
::
LONG_NAME
][
'stripeJSLoaded'
])
||
$object
instanceof
CRM_Financial_Form_Payment
)
{
$stripeJSURL
=
\Civi
::
service
(
'asset_builder'
)
->
getUrl
(
'civicrmStripe.js'
,
[
'path'
=>
\Civi
::
resources
()
->
getPath
(
E
::
LONG_NAME
,
'js/civicrm_stripe.js'
),
'mimetype'
=>
'application/javascript'
,
]
);
$content
.
=
"<script src='
{
$stripeJSURL
}
'></script>"
;
\Civi
::
$statics
[
E
::
LONG_NAME
][
'stripeJSLoaded'
]
=
TRUE
;
}
}
}
/**
/**
* Add stripe.js to forms, to generate stripe token
* Add stripe.js to forms, to generate stripe token
* hook_civicrm_alterContent is not called for all forms (eg. CRM_Contribute_Form_Contribution on backend)
* hook_civicrm_alterContent is not called for all forms (eg. CRM_Contribute_Form_Contribution on backend)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment