Plugin Directory

Changeset 2980972


Ignore:
Timestamp:
10/19/2023 03:03:34 AM (2 years ago)
Author:
macbookandrew
Message:

Update to version 1.8.10 from GitHub

Location:
cf7-google-analytics
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • cf7-google-analytics/tags/1.8.10/cf7-google-analytics.php

    r2978808 r2980972  
    55 * Description: Adds Google Analytics Event Tracking to all Contact Form 7 forms.
    66 * Tags: contact form, contact form 7, cf7, contactform7, google analytics, ga, universal, forms, form, track, tracking, event, events, goal, goals
    7  * Version: 1.8.9
     7 * Version: 1.8.10
    88 * Author: Andrew Minion
    99 * Author URI: https://www.andrewrminion.com
     
    2525}
    2626
     27define( 'CF7GA_PLUGIN_VERSION', '1.8.10' );
     28
    2729/** Include the main class. */
    2830if ( ! class_exists( 'CF7_Google_Analytics' ) ) {
  • cf7-google-analytics/tags/1.8.10/inc/class-cf7-google-analytics.php

    r2978808 r2980972  
    1414 */
    1515class CF7_Google_Analytics {
     16
    1617    /**
    1718     * Plugin version
     
    1920     * @var string
    2021     */
    21     public $version = '1.8.7';
     22    public $version = CF7GA_PLUGIN_VERSION;
    2223
    2324    /**
     
    195196    public function enqueue_assets() {
    196197        wp_enqueue_script( 'wpcf7-ga-events', $this->get_plugin_dir_url() . 'js/cf7-google-analytics.min.js', array( 'contact-form-7' ), $this->version, true );
    197         wp_add_inline_script( 'wpcf7-ga-events', 'var cf7GASendActions = ' . wp_json_encode( $this->get_send_actions( 'all' ) ) . ', cf7FormIDs = ' . $this->get_form_ids(), 'before' );
     198        wp_add_inline_script( 'wpcf7-ga-events', 'var cf7GASendActions = ' . wp_json_encode( $this->get_send_actions( 'all' ) ) . ', cf7FormIDs = ' . $this->get_form_ids() . ';', 'before' );
    198199    }
    199200
  • cf7-google-analytics/tags/1.8.10/readme.txt

    r2978808 r2980972  
    55Requires at least: 4.3
    66Tested up to: 6.3.0
    7 Stable tag: 1.8.9
     7Stable tag: 1.8.10
    88License: GPL2
    99
     
    101101== Changelog ==
    102102
     103= 1.8.10 =
     104- Fix issue with minified JS
     105
    103106= 1.8.9 =
    104107- Fix undefined index issue in new installations
  • cf7-google-analytics/trunk/cf7-google-analytics.php

    r2978808 r2980972  
    55 * Description: Adds Google Analytics Event Tracking to all Contact Form 7 forms.
    66 * Tags: contact form, contact form 7, cf7, contactform7, google analytics, ga, universal, forms, form, track, tracking, event, events, goal, goals
    7  * Version: 1.8.9
     7 * Version: 1.8.10
    88 * Author: Andrew Minion
    99 * Author URI: https://www.andrewrminion.com
     
    2525}
    2626
     27define( 'CF7GA_PLUGIN_VERSION', '1.8.10' );
     28
    2729/** Include the main class. */
    2830if ( ! class_exists( 'CF7_Google_Analytics' ) ) {
  • cf7-google-analytics/trunk/inc/class-cf7-google-analytics.php

    r2978808 r2980972  
    1414 */
    1515class CF7_Google_Analytics {
     16
    1617    /**
    1718     * Plugin version
     
    1920     * @var string
    2021     */
    21     public $version = '1.8.7';
     22    public $version = CF7GA_PLUGIN_VERSION;
    2223
    2324    /**
     
    195196    public function enqueue_assets() {
    196197        wp_enqueue_script( 'wpcf7-ga-events', $this->get_plugin_dir_url() . 'js/cf7-google-analytics.min.js', array( 'contact-form-7' ), $this->version, true );
    197         wp_add_inline_script( 'wpcf7-ga-events', 'var cf7GASendActions = ' . wp_json_encode( $this->get_send_actions( 'all' ) ) . ', cf7FormIDs = ' . $this->get_form_ids(), 'before' );
     198        wp_add_inline_script( 'wpcf7-ga-events', 'var cf7GASendActions = ' . wp_json_encode( $this->get_send_actions( 'all' ) ) . ', cf7FormIDs = ' . $this->get_form_ids() . ';', 'before' );
    198199    }
    199200
  • cf7-google-analytics/trunk/readme.txt

    r2978808 r2980972  
    55Requires at least: 4.3
    66Tested up to: 6.3.0
    7 Stable tag: 1.8.9
     7Stable tag: 1.8.10
    88License: GPL2
    99
     
    101101== Changelog ==
    102102
     103= 1.8.10 =
     104- Fix issue with minified JS
     105
    103106= 1.8.9 =
    104107- Fix undefined index issue in new installations
Note: See TracChangeset for help on using the changeset viewer.