Skip to content
Snippets Groups Projects
Unverified Commit f42ca5c2 authored by Alice Frumin's avatar Alice Frumin Committed by GitHub
Browse files

Improving casing

parent e2bc32a6
No related branches found
No related tags found
1 merge request!720Nest "Create the default payment processor file" section under "Setup"
...@@ -66,14 +66,14 @@ Checkout - the info is entered at the processors' site. ...@@ -66,14 +66,14 @@ Checkout - the info is entered at the processors' site.
### Create the default payment processor file ### Create the Default Payment Processor File
Depending on your billing mode there are different considerations. The file Depending on your billing mode there are different considerations. The file
will live in `CRM/Core/Payment` and have the same name as entered into will live in `CRM/Core/Payment` and have the same name as entered into
your `processor_type` table. your `processor_type` table.
### Create initial processing file ### Create Initial Processing File
In our example our file name is UCMPaymentCollection so the name of the In our example our file name is UCMPaymentCollection so the name of the
file we are going to create is UCMPaymentCollection.php file we are going to create is UCMPaymentCollection.php
...@@ -236,7 +236,7 @@ function doPayment( &$params, $component ) { ...@@ -236,7 +236,7 @@ function doPayment( &$params, $component ) {
``` ```
### Create return processing file ### Create Return Processing File
This is the file that is called by the payment processor after it This is the file that is called by the payment processor after it
returns from processing the payment. Let's call it returns from processing the payment. Let's call it
...@@ -614,7 +614,7 @@ else { ...@@ -614,7 +614,7 @@ else {
CRM_Utils_System::redirect( $finalURL ); CRM_Utils_System::redirect( $finalURL );
``` ```
## Add any additional libraries needed ### Add Any Additional Libraries Needed
In the case of this payment processor we needed nusoap. So in the In the case of this payment processor we needed nusoap. So in the
extension directory we created a libraries directory and put it there. extension directory we created a libraries directory and put it there.
......
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