Changeset 1802168
- Timestamp:
- 01/13/2018 02:02:13 AM (8 years ago)
- Location:
- bb-connect-for-give-donations/trunk
- Files:
-
- 3 edited
-
bb-connect-give.php (modified) (1 diff)
-
modules/bbc-give-account/bbc-give-account.php (modified) (6 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bb-connect-for-give-donations/trunk/bb-connect-give.php
r1667282 r1802168 4 4 * Plugin URI: https://wordpress.org/plugins/bb-connect-for-give-donations/ 5 5 * Description: Easily integrate Give Donations with Beaver Builder. 6 * Version: 2. 16 * Version: 2.2 7 7 * Author: PurposeWP 8 8 * Author URI: https://purposewp.com -
bb-connect-for-give-donations/trunk/modules/bbc-give-account/bbc-give-account.php
r1667282 r1802168 4 4 * @class BBC_Give_Account 5 5 * @since 2.0 6 * @credit The Beaver Builder (https://beaverbuilder.com) team for the Tabs module which is what we based this upon and the team at UABB (https://www.ultimatebeaver.com) for their clever implementation of toggle fields.6 * @credit The Beaver Builder (https://beaverbuilder.com) team for the Tabs module which is what we based this upon and the team at UABB (https://www.ultimatebeaver.com) for their clever implementation of toggle fields. 7 7 */ 8 8 class BBC_Give_Account extends FLBuilderModule { … … 18 18 'partial_refresh' => true 19 19 ) ); 20 21 $this->add_css( 'font-awesome' );22 20 } 23 21 … … 28 26 */ 29 27 public static function bbc_do_subscriptions() { 30 if ( !class_exists( 'Give_Recurring' ) ) { 31 return; 28 $settings = array(); 29 30 if ( ! class_exists( 'Give_Recurring' ) ) { 31 return $settings; 32 32 } 33 33 … … 41 41 'false' => __( 'Hide', 'bbc-give' ), 42 42 ), 43 'help' => __( 'Displays the Subscriptions tab. Default is “Hide”', 'bbc-give' )43 'help' => __( 'Displays the Subscriptions tab. Default is “Hide”', 'bbc-give' ) 44 44 ); 45 45 … … 79 79 'false' => __( 'Hide', 'bbc-give' ), 80 80 ), 81 'help' => __( 'Displays the Profile Editor tab. Default is “Show”', 'bbc-give' )81 'help' => __( 'Displays the Profile Editor tab. Default is “Show”', 'bbc-give' ) 82 82 ), 83 83 'history' => array( … … 90 90 'false' => __( 'Hide', 'bbc-give' ), 91 91 ), 92 'help' => __( 'Displays the Donation History tab. Default is “Show”', 'bbc-give' )92 'help' => __( 'Displays the Donation History tab. Default is “Show”', 'bbc-give' ) 93 93 ), 94 94 'subscriptions' => BBC_Give_Account::bbc_do_subscriptions(), -
bb-connect-for-give-donations/trunk/readme.txt
r1667282 r1802168 3 3 Tags: beaver builder, give, donations, nonprofits, fundraising 4 4 Requires at least: 4.4 5 Tested up to: 4. 7.56 Stable tag: 2. 15 Tested up to: 4.9.2 6 Stable tag: 2.2 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 64 64 == Changelog == 65 65 66 = [2.2] - 2018-01-12 = 67 * Bug Fix: Fixed bug preventing account module settings panel from loading 68 66 69 = [2.1] - 2017-05-30 = 67 70 * Enhancement: The Account Details module now supports Give subscriptions
Note: See TracChangeset
for help on using the changeset viewer.