-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
158 additions
and
109 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"core": null, | ||
"plugins": [ | ||
".", | ||
"../../../", | ||
"https://downloads.wordpress.org/plugin/formidable.5.4.4.zip", | ||
"https://downloads.wordpress.org/plugin/query-monitor.zip", | ||
"https://downloads.wordpress.org/plugin/one-time-login.zip" | ||
], | ||
"config": { | ||
"PRONAMIC_PAY_DEBUG": true | ||
} | ||
} |
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,41 @@ | ||
<?php | ||
/** | ||
* Plugin Name: Pronamic Pay Formidable Forms Add-On | ||
* Plugin URI: https://www.pronamic.eu/plugins/pronamic-pay-formidable-forms/ | ||
* Description: Extend the Pronamic Pay plugin with Formidable Forms support to receive payments through a variety of payment providers. | ||
* | ||
* Version: 4.1.0 | ||
* Requires at least: 4.7 | ||
* | ||
* Author: Pronamic | ||
* Author URI: https://www.pronamic.eu/ | ||
* | ||
* Text Domain: pronamic-pay-formidable-forms | ||
* Domain Path: /languages/ | ||
* | ||
* License: GPL-3.0-or-later | ||
* | ||
* Depends: wp-pay/core | ||
* | ||
* GitHub URI: https://github.com/pronamic/wp-pronamic-pay-formidable-forms | ||
* | ||
* @author Pronamic <[email protected]> | ||
* @copyright 2005-2022 Pronamic | ||
* @license GPL-3.0-or-later | ||
* @package Pronamic\WordPress\Pay\Extensions\FormidableForms | ||
*/ | ||
|
||
add_filter( | ||
'pronamic_pay_plugin_integrations', | ||
function ( $integrations ) { | ||
foreach ( $integrations as $integration ) { | ||
if ( $integration instanceof \Pronamic\WordPress\Pay\Extensions\FormidableForms\Extension ) { | ||
return $integrations; | ||
} | ||
} | ||
|
||
$integrations[] = new \Pronamic\WordPress\Pay\Extensions\FormidableForms\Extension(); | ||
|
||
return $integrations; | ||
} | ||
); |
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
Oops, something went wrong.