Plugin Directory

Changeset 3290326


Ignore:
Timestamp:
05/09/2025 08:19:30 AM (11 months ago)
Author:
wpzinc
Message:

Update to version 1.1.2 from GitHub

Location:
integrate-posthog-web-analytics
Files:
2 added
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • integrate-posthog-web-analytics/tags/1.1.2/_modules/dashboard/class-wpzincdashboardwidget.php

    r3269606 r3290326  
    139139        }
    140140
    141         // Export and Support.
    142         add_action( 'init', array( $this, 'export' ) );
    143         add_action( 'plugins_loaded', array( $this, 'maybe_redirect' ) );
     141        // Export and Redirects.
     142        add_action( 'init', array( $this, 'export' ), 9999 );
     143        add_action( 'init', array( $this, 'maybe_redirect' ), 2 );
    144144
    145145        // Permit wpzinc.com to be redirected to when using wp_safe_redirect().
  • integrate-posthog-web-analytics/tags/1.1.2/includes/class-integrate-phwa.php

    r3269606 r3290326  
    7777        $this->plugin->logo              = INTEGRATE_PHWA_PLUGIN_URL . 'assets/images/icons/logo.svg';
    7878        $this->plugin->review_name       = 'integrate-posthog-web-analytics';
    79         $this->plugin->review_notice     = sprintf(
    80             /* translators: Plugin Name */
    81             __( 'Thanks for using %s to track your web analytics!', 'integrate-posthog-web-analytics' ),
    82             $this->plugin->displayName
    83         );
     79        $this->plugin->review_notice     = 'Thanks for using Integrate PostHog Web Analytics to track your web analytics!';
    8480
    8581        // Dashboard Submodule.
  • integrate-posthog-web-analytics/tags/1.1.2/includes/global/class-integrate-phwa-output.php

    r3269606 r3290326  
    5656        wp_add_inline_script( 'integrate-phwa', 'posthog.init("' . esc_js( $settings->project_api_key() ) . '", ' . $settings->get_js_init_config() . ')', 'after' );
    5757
     58        // Request review.
     59        integrate_phwa()->dashboard->request_review();
    5860    }
    5961
  • integrate-posthog-web-analytics/tags/1.1.2/integrate-posthog-web-analytics.php

    r3272947 r3290326  
    99 * Plugin Name: Integrate PostHog Web Analytics and Event Tracking
    1010 * Plugin URI: http://www.wpzinc.com/documentation/posthog
    11  * Version: 1.1.1
     11 * Version: 1.1.2
    1212 * Author: WP Zinc
    1313 * Author URI: http://www.wpzinc.com
     
    3232
    3333// Define Plugin version and build date.
    34 define( 'INTEGRATE_PHWA_PLUGIN_VERSION', '1.1.1' );
    35 define( 'INTEGRATE_PHWA_PLUGIN_BUILD_DATE', '2025-04-15 18:00:00' );
     34define( 'INTEGRATE_PHWA_PLUGIN_VERSION', '1.1.2' );
     35define( 'INTEGRATE_PHWA_PLUGIN_BUILD_DATE', '2025-05-09 18:00:00' );
    3636
    3737// Define Plugin paths.
  • integrate-posthog-web-analytics/tags/1.1.2/readme.txt

    r3272947 r3290326  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 1.1.1
     8Stable tag: 1.1.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7878== Changelog ==
    7979
     80### 1.1.2
     81* Fix: PHP Notice: Function `_load_textdomain_just_in_time` was called incorrectly
     82
    8083### 1.1.1
    8184* Added: Event Tracking: WooCommerce. See Docs: https://www.wpzinc.com/documentation/posthog/woocommerce-integration/
  • integrate-posthog-web-analytics/trunk/_modules/dashboard/class-wpzincdashboardwidget.php

    r3269606 r3290326  
    139139        }
    140140
    141         // Export and Support.
    142         add_action( 'init', array( $this, 'export' ) );
    143         add_action( 'plugins_loaded', array( $this, 'maybe_redirect' ) );
     141        // Export and Redirects.
     142        add_action( 'init', array( $this, 'export' ), 9999 );
     143        add_action( 'init', array( $this, 'maybe_redirect' ), 2 );
    144144
    145145        // Permit wpzinc.com to be redirected to when using wp_safe_redirect().
  • integrate-posthog-web-analytics/trunk/includes/class-integrate-phwa.php

    r3269606 r3290326  
    7777        $this->plugin->logo              = INTEGRATE_PHWA_PLUGIN_URL . 'assets/images/icons/logo.svg';
    7878        $this->plugin->review_name       = 'integrate-posthog-web-analytics';
    79         $this->plugin->review_notice     = sprintf(
    80             /* translators: Plugin Name */
    81             __( 'Thanks for using %s to track your web analytics!', 'integrate-posthog-web-analytics' ),
    82             $this->plugin->displayName
    83         );
     79        $this->plugin->review_notice     = 'Thanks for using Integrate PostHog Web Analytics to track your web analytics!';
    8480
    8581        // Dashboard Submodule.
  • integrate-posthog-web-analytics/trunk/includes/global/class-integrate-phwa-output.php

    r3269606 r3290326  
    5656        wp_add_inline_script( 'integrate-phwa', 'posthog.init("' . esc_js( $settings->project_api_key() ) . '", ' . $settings->get_js_init_config() . ')', 'after' );
    5757
     58        // Request review.
     59        integrate_phwa()->dashboard->request_review();
    5860    }
    5961
  • integrate-posthog-web-analytics/trunk/integrate-posthog-web-analytics.php

    r3272947 r3290326  
    99 * Plugin Name: Integrate PostHog Web Analytics and Event Tracking
    1010 * Plugin URI: http://www.wpzinc.com/documentation/posthog
    11  * Version: 1.1.1
     11 * Version: 1.1.2
    1212 * Author: WP Zinc
    1313 * Author URI: http://www.wpzinc.com
     
    3232
    3333// Define Plugin version and build date.
    34 define( 'INTEGRATE_PHWA_PLUGIN_VERSION', '1.1.1' );
    35 define( 'INTEGRATE_PHWA_PLUGIN_BUILD_DATE', '2025-04-15 18:00:00' );
     34define( 'INTEGRATE_PHWA_PLUGIN_VERSION', '1.1.2' );
     35define( 'INTEGRATE_PHWA_PLUGIN_BUILD_DATE', '2025-05-09 18:00:00' );
    3636
    3737// Define Plugin paths.
  • integrate-posthog-web-analytics/trunk/readme.txt

    r3272947 r3290326  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 1.1.1
     8Stable tag: 1.1.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7878== Changelog ==
    7979
     80### 1.1.2
     81* Fix: PHP Notice: Function `_load_textdomain_just_in_time` was called incorrectly
     82
    8083### 1.1.1
    8184* Added: Event Tracking: WooCommerce. See Docs: https://www.wpzinc.com/documentation/posthog/woocommerce-integration/
Note: See TracChangeset for help on using the changeset viewer.