Changeset 3087330
- Timestamp:
- 05/15/2024 06:56:29 PM (22 months ago)
- Location:
- swipe-for-gravity-forms/trunk
- Files:
-
- 3 edited
-
includes/class-swipego-gf.php (modified) (1 diff)
-
libraries/swipego/class-swipego.php (modified) (1 diff)
-
swipego-gf.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
swipe-for-gravity-forms/trunk/includes/class-swipego-gf.php
r3087281 r3087330 23 23 require_once( SWIPEGO_GF_PATH . 'includes/class-swipego-gf-api.php' ); 24 24 25 if ( swipego_ get_integration() ) {25 if ( swipego_is_logged_in() || swipego_get_integration() ) { 26 26 27 27 // Initialize payment gateway -
swipe-for-gravity-forms/trunk/libraries/swipego/class-swipego.php
r2753484 r3087330 31 31 new Swipego(); 32 32 } 33 34 if ( !function_exists('swipego_get_integration') ) { 35 function swipego_get_integration() 36 { 37 return true; 38 } 39 } -
swipe-for-gravity-forms/trunk/swipego-gf.php
r3087281 r3087330 16 16 if ( class_exists( 'Swipego_GF' ) ) return; 17 17 18 if ( ! function_exists('swipego_get_integration') ) return; 19 18 20 define( 'SWIPEGO_GF_FILE', __FILE__ ); 19 21 define( 'SWIPEGO_GF_URL', plugin_dir_url( SWIPEGO_GF_FILE ) ); 20 22 define( 'SWIPEGO_GF_PATH', plugin_dir_path( SWIPEGO_GF_FILE ) ); 21 23 define( 'SWIPEGO_GF_BASENAME', plugin_basename( SWIPEGO_GF_FILE ) ); 22 define( 'SWIPEGO_GF_VERSION', '1.0. 0' );24 define( 'SWIPEGO_GF_VERSION', '1.0.6' ); 23 25 24 26 // Plugin core class
Note: See TracChangeset
for help on using the changeset viewer.