-
-
Notifications
You must be signed in to change notification settings - Fork 825
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18349 from seamuslee001/eway_extension
Migrate Eway(Single Currency) Payment Processor Type out into its own…
- Loading branch information
Showing
20 changed files
with
3,048 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
// This file declares a managed database record of type "ReportTemplate". | ||
// The record will be automatically inserted, updated, or deleted from the | ||
// database as appropriate. For more details, see "hook_civicrm_managed" at: | ||
// http://wiki.civicrm.org/confluence/display/CRMDOC42/Hook+Reference | ||
return array( | ||
0 => array( | ||
'name' => 'eWAY', | ||
'entity' => 'PaymentProcessorType', | ||
'params' => array( | ||
'version' => 3, | ||
'name' => 'eWAY', | ||
'title' => 'eWAY (Single Currency)', | ||
'description' => '', | ||
'user_name_label' => 'Customer ID', | ||
'class_name' => 'Payment_eWAY', | ||
'billing_mode' => 1, | ||
'url_site_default' => 'https://www.eway.com.au/gateway_cvn/xmlpayment.asp', | ||
'payment_type' => 1, | ||
'is_recur' => 0, | ||
'url_site_test_default' => 'https://www.eway.com.au/gateway_cvn/xmltest/testpage.asp', | ||
), | ||
), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.