Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
justinfreeman (Agileware)
Core
Commits
afc675df
Commit
afc675df
authored
12 years ago
by
colemanw
Browse files
Options
Downloads
Patches
Plain Diff
Remember payment processor when user clicks the back button CRM-12149
parent
178073d6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/Contribute/Form/Contribution/Main.php
+6
-3
6 additions, 3 deletions
CRM/Contribute/Form/Contribution/Main.php
templates/CRM/Contribute/Form/Contribution/Main.tpl
+0
-12
0 additions, 12 deletions
templates/CRM/Contribute/Form/Contribution/Main.tpl
with
6 additions
and
15 deletions
CRM/Contribute/Form/Contribution/Main.php
+
6
−
3
View file @
afc675df
...
...
@@ -1354,9 +1354,8 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
$form
->
assign
(
'snippet'
,
$form
->
_snippet
);
$paymentProcessors
=
$form
->
get
(
'paymentProcessors'
);
$form
->
assign
(
'ppType'
,
FALSE
);
$form
->
_ppType
=
NULL
;
if
(
!
empty
(
$paymentProcessors
)
)
{
if
(
$paymentProcessors
)
{
// Fetch type during form post
if
(
CRM_Utils_Array
::
value
(
'hidden_processor'
,
$_POST
))
{
$form
->
_ppType
=
CRM_Utils_Array
::
value
(
'payment_processor'
,
$_POST
);
...
...
@@ -1364,6 +1363,10 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
$form
->
set
(
'mode'
,
$form
->
_mode
);
$form
->
set
(
'paymentProcessor'
,
$form
->
_paymentProcessor
);
}
// When user presses the back button
elseif
(
!
empty
(
$form
->
_submitValues
))
{
$form
->
_ppType
=
CRM_Utils_Array
::
value
(
'payment_processor'
,
$form
->
_submitValues
);
}
// Fetch type during ajax request
elseif
(
isset
(
$_GET
[
'type'
])
&&
$form
->
_snippet
)
{
$form
->
_ppType
=
$_GET
[
'type'
];
...
...
@@ -1377,7 +1380,6 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
}
}
if
(
$form
->
_ppType
)
{
$form
->
assign
(
'ppType'
,
TRUE
);
CRM_Core_Payment_ProcessorForm
::
preProcess
(
$form
);
}
...
...
@@ -1390,6 +1392,7 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
}
}
}
$form
->
assign
(
'ppType'
,
$form
->
_ppType
);
}
}
This diff is collapsed.
Click to expand it.
templates/CRM/Contribute/Form/Contribution/Main.tpl
+
0
−
12
View file @
afc675df
...
...
@@ -335,18 +335,6 @@
{/
if
}
</div>
{* Hide Credit Card Block and Billing information if contribution is pay later. *}
{
if
$form.is_pay_later
and
$hidePaymentInformation
}
{
include
file
=
"CRM/common/showHideByFieldValue.tpl"
trigger_field_id
=
"is_pay_later"
trigger_value
=
""
target_element_id
=
"billing-payment-block"
target_element_type
=
"table-row"
field_type
=
"radio"
invert
=
1
}
{/
if
}
<script
type=
"text/javascript"
>
{
if
$pcp
}
pcpAnonymous
();
...
...
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