Plugin Directory

Changeset 3105225

Timestamp:
06/20/2024 03:15:04 PM (5 weeks ago)
Author:
themeisle
Message:

Update to version 3.1.7 from GitHub

Location:
wpcf7-redirect
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wpcf7-redirect/tags/3.1.7/class-wpcf7-redirect.php

    r3104974 r3105225  
    232232        ];
    233233
     234
     235
     236
     237
     238
     239
     240
     241
     242
     243
     244
     245
     246
    234247        foreach ( $available_addons as $addon ) {
    235248            if ( 'valid' !== tsdk_lstatus( WP_PLUGIN_DIR . '/' . $addon. '/init.php' ) ) {
     
    237250            }
    238251        }
    239         return false;
     252        return e;
    240253    }
    241254
  • wpcf7-redirect/tags/3.1.7/licensing_fs.php

    r3104974 r3105225  
    11<?php
    2 
    3 if ( ! function_exists( 'fs_dynamic_init' ) ) {
    4     function fs_dynamic_init( $array ) {
    5         add_filter( 'wpcf7r_legacy_used', '__return_true' );
    6         return $array;
    7     }
    8 }
    92
    103/**
     
    6861 */
    6962function wpcf7r_load_freemius_addon( $name ) {
    70     //return;
    7163    $callback    = $name;
    7264    $loaded_hook = $name . '_loaded';
    7365
    74     if ( wpcf7r_is_parent_active_and_loaded() ) {
    75         // If parent already included, init add-on.
    76         $callback();
    77 
     66    add_action( 'plugins_loaded', function () use ( $callback, $loaded_hook ) {
    7867        do_action( $loaded_hook );
    79     } elseif ( wpcf7r_is_parent_active() ) {
    80         // Init add-on only after the parent is loaded.
    81         add_action(
    82             'wpcf7_fs_loaded',
    83             function () use ( $callback ) {
    84                 $callback();
    85 
    86                 do_action( $loaded_hook );
    87             }
    88         );
    89     } else {
    90         // Even though the parent is not activated, execute add-on for activation / uninstall hooks.
    91         $callback();
    92 
    93         do_action( $loaded_hook );
    94     }
     68    } );
    9569}
  • wpcf7-redirect/tags/3.1.7/readme.txt

    r3104974 r3105225  
    44Requires at least: 5.2.0
    55Tested up to: 6.5
    6 Stable tag: 3.1.6
     6Stable tag: 3.1.
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    9595== Changelog ==
    9696
     97
     98
     99
     100
     101
     102
     103
    97104#####   Version 3.1.6 (2024-06-20)
    98105
  • wpcf7-redirect/tags/3.1.7/vendor/composer/installed.php

    r3104974 r3105225  
    22    'root' => array(
    33        'name' => 'codeinwp/redirection-for-contact-form-7',
    4         'pretty_version' => 'v3.1.6',
    5         'version' => '3.1.6.0',
    6         'reference' => '8a121b5446f37b007c544792b1e2113c7be2229a',
     4        'pretty_version' => 'v3.1.',
     5        'version' => '3.1..0',
     6        'reference' => '',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'codeinwp/redirection-for-contact-form-7' => array(
    14             'pretty_version' => 'v3.1.6',
    15             'version' => '3.1.6.0',
    16             'reference' => '8a121b5446f37b007c544792b1e2113c7be2229a',
     14            'pretty_version' => 'v3.1.',
     15            'version' => '3.1..0',
     16            'reference' => '',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • wpcf7-redirect/tags/3.1.7/wpcf7-redirect.php

    r3104974 r3105225  
    33 * Plugin Name:  Redirection for Contact Form 7
    44 * Description:  The ultimate add-on for Contact Form 7 - redirect to any page after submission, fire scripts, save submissions in database, and much more options to make Contact Form 7 powerful than ever.
    5  * Version:      3.1.6
     5 * Version:      3.1.
    66 * Author:       Themeisle
    77 * Author URI:   http://themeisle.com
     
    2828}
    2929
    30 define( 'WPCF7_PRO_REDIRECT_PLUGIN_VERSION', '3.1.6' );
     30define( 'WPCF7_PRO_REDIRECT_PLUGIN_VERSION', '3.1.' );
    3131define( 'WPCF7_PRO_MIGRATION_VERSION', '1' );
    3232define( 'WPCF7_PRO_REDIRECT_CLASSES_PATH', plugin_dir_path( __FILE__ ) . 'classes/' );
  • wpcf7-redirect/trunk/class-wpcf7-redirect.php

    r3104974 r3105225  
    232232        ];
    233233
     234
     235
     236
     237
     238
     239
     240
     241
     242
     243
     244
     245
     246
    234247        foreach ( $available_addons as $addon ) {
    235248            if ( 'valid' !== tsdk_lstatus( WP_PLUGIN_DIR . '/' . $addon. '/init.php' ) ) {
     
    237250            }
    238251        }
    239         return false;
     252        return e;
    240253    }
    241254
  • wpcf7-redirect/trunk/licensing_fs.php

    r3104974 r3105225  
    11<?php
    2 
    3 if ( ! function_exists( 'fs_dynamic_init' ) ) {
    4     function fs_dynamic_init( $array ) {
    5         add_filter( 'wpcf7r_legacy_used', '__return_true' );
    6         return $array;
    7     }
    8 }
    92
    103/**
     
    6861 */
    6962function wpcf7r_load_freemius_addon( $name ) {
    70     //return;
    7163    $callback    = $name;
    7264    $loaded_hook = $name . '_loaded';
    7365
    74     if ( wpcf7r_is_parent_active_and_loaded() ) {
    75         // If parent already included, init add-on.
    76         $callback();
    77 
     66    add_action( 'plugins_loaded', function () use ( $callback, $loaded_hook ) {
    7867        do_action( $loaded_hook );
    79     } elseif ( wpcf7r_is_parent_active() ) {
    80         // Init add-on only after the parent is loaded.
    81         add_action(
    82             'wpcf7_fs_loaded',
    83             function () use ( $callback ) {
    84                 $callback();
    85 
    86                 do_action( $loaded_hook );
    87             }
    88         );
    89     } else {
    90         // Even though the parent is not activated, execute add-on for activation / uninstall hooks.
    91         $callback();
    92 
    93         do_action( $loaded_hook );
    94     }
     68    } );
    9569}
  • wpcf7-redirect/trunk/readme.txt

    r3104974 r3105225  
    44Requires at least: 5.2.0
    55Tested up to: 6.5
    6 Stable tag: 3.1.6
     6Stable tag: 3.1.
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    9595== Changelog ==
    9696
     97
     98
     99
     100
     101
     102
     103
    97104#####   Version 3.1.6 (2024-06-20)
    98105
  • wpcf7-redirect/trunk/vendor/composer/installed.php

    r3104974 r3105225  
    22    'root' => array(
    33        'name' => 'codeinwp/redirection-for-contact-form-7',
    4         'pretty_version' => 'v3.1.6',
    5         'version' => '3.1.6.0',
    6         'reference' => '8a121b5446f37b007c544792b1e2113c7be2229a',
     4        'pretty_version' => 'v3.1.',
     5        'version' => '3.1..0',
     6        'reference' => '',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'codeinwp/redirection-for-contact-form-7' => array(
    14             'pretty_version' => 'v3.1.6',
    15             'version' => '3.1.6.0',
    16             'reference' => '8a121b5446f37b007c544792b1e2113c7be2229a',
     14            'pretty_version' => 'v3.1.',
     15            'version' => '3.1..0',
     16            'reference' => '',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • wpcf7-redirect/trunk/wpcf7-redirect.php

    r3104974 r3105225  
    33 * Plugin Name:  Redirection for Contact Form 7
    44 * Description:  The ultimate add-on for Contact Form 7 - redirect to any page after submission, fire scripts, save submissions in database, and much more options to make Contact Form 7 powerful than ever.
    5  * Version:      3.1.6
     5 * Version:      3.1.
    66 * Author:       Themeisle
    77 * Author URI:   http://themeisle.com
     
    2828}
    2929
    30 define( 'WPCF7_PRO_REDIRECT_PLUGIN_VERSION', '3.1.6' );
     30define( 'WPCF7_PRO_REDIRECT_PLUGIN_VERSION', '3.1.' );
    3131define( 'WPCF7_PRO_MIGRATION_VERSION', '1' );
    3232define( 'WPCF7_PRO_REDIRECT_CLASSES_PATH', plugin_dir_path( __FILE__ ) . 'classes/' );
Note: See TracChangeset for help on using the changeset viewer.