Changeset 3290326
- Timestamp:
- 05/09/2025 08:19:30 AM (11 months ago)
- Location:
- integrate-posthog-web-analytics
- Files:
-
- 2 added
- 10 edited
- 1 copied
-
tags/1.1.2 (copied) (copied from integrate-posthog-web-analytics/trunk)
-
tags/1.1.2/_modules/dashboard/class-wpzincdashboardwidget.php (modified) (1 diff)
-
tags/1.1.2/_modules/dashboard/feather/tiktok.svg (added)
-
tags/1.1.2/includes/class-integrate-phwa.php (modified) (1 diff)
-
tags/1.1.2/includes/global/class-integrate-phwa-output.php (modified) (1 diff)
-
tags/1.1.2/integrate-posthog-web-analytics.php (modified) (2 diffs)
-
tags/1.1.2/readme.txt (modified) (2 diffs)
-
trunk/_modules/dashboard/class-wpzincdashboardwidget.php (modified) (1 diff)
-
trunk/_modules/dashboard/feather/tiktok.svg (added)
-
trunk/includes/class-integrate-phwa.php (modified) (1 diff)
-
trunk/includes/global/class-integrate-phwa-output.php (modified) (1 diff)
-
trunk/integrate-posthog-web-analytics.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
integrate-posthog-web-analytics/tags/1.1.2/_modules/dashboard/class-wpzincdashboardwidget.php
r3269606 r3290326 139 139 } 140 140 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 ); 144 144 145 145 // 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 77 77 $this->plugin->logo = INTEGRATE_PHWA_PLUGIN_URL . 'assets/images/icons/logo.svg'; 78 78 $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!'; 84 80 85 81 // Dashboard Submodule. -
integrate-posthog-web-analytics/tags/1.1.2/includes/global/class-integrate-phwa-output.php
r3269606 r3290326 56 56 wp_add_inline_script( 'integrate-phwa', 'posthog.init("' . esc_js( $settings->project_api_key() ) . '", ' . $settings->get_js_init_config() . ')', 'after' ); 57 57 58 // Request review. 59 integrate_phwa()->dashboard->request_review(); 58 60 } 59 61 -
integrate-posthog-web-analytics/tags/1.1.2/integrate-posthog-web-analytics.php
r3272947 r3290326 9 9 * Plugin Name: Integrate PostHog Web Analytics and Event Tracking 10 10 * Plugin URI: http://www.wpzinc.com/documentation/posthog 11 * Version: 1.1. 111 * Version: 1.1.2 12 12 * Author: WP Zinc 13 13 * Author URI: http://www.wpzinc.com … … 32 32 33 33 // Define Plugin version and build date. 34 define( 'INTEGRATE_PHWA_PLUGIN_VERSION', '1.1. 1' );35 define( 'INTEGRATE_PHWA_PLUGIN_BUILD_DATE', '2025-0 4-1518:00:00' );34 define( 'INTEGRATE_PHWA_PLUGIN_VERSION', '1.1.2' ); 35 define( 'INTEGRATE_PHWA_PLUGIN_BUILD_DATE', '2025-05-09 18:00:00' ); 36 36 37 37 // Define Plugin paths. -
integrate-posthog-web-analytics/tags/1.1.2/readme.txt
r3272947 r3290326 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 18 Stable tag: 1.1.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 78 78 == Changelog == 79 79 80 ### 1.1.2 81 * Fix: PHP Notice: Function `_load_textdomain_just_in_time` was called incorrectly 82 80 83 ### 1.1.1 81 84 * 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 139 139 } 140 140 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 ); 144 144 145 145 // Permit wpzinc.com to be redirected to when using wp_safe_redirect(). -
integrate-posthog-web-analytics/trunk/includes/class-integrate-phwa.php
r3269606 r3290326 77 77 $this->plugin->logo = INTEGRATE_PHWA_PLUGIN_URL . 'assets/images/icons/logo.svg'; 78 78 $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!'; 84 80 85 81 // Dashboard Submodule. -
integrate-posthog-web-analytics/trunk/includes/global/class-integrate-phwa-output.php
r3269606 r3290326 56 56 wp_add_inline_script( 'integrate-phwa', 'posthog.init("' . esc_js( $settings->project_api_key() ) . '", ' . $settings->get_js_init_config() . ')', 'after' ); 57 57 58 // Request review. 59 integrate_phwa()->dashboard->request_review(); 58 60 } 59 61 -
integrate-posthog-web-analytics/trunk/integrate-posthog-web-analytics.php
r3272947 r3290326 9 9 * Plugin Name: Integrate PostHog Web Analytics and Event Tracking 10 10 * Plugin URI: http://www.wpzinc.com/documentation/posthog 11 * Version: 1.1. 111 * Version: 1.1.2 12 12 * Author: WP Zinc 13 13 * Author URI: http://www.wpzinc.com … … 32 32 33 33 // Define Plugin version and build date. 34 define( 'INTEGRATE_PHWA_PLUGIN_VERSION', '1.1. 1' );35 define( 'INTEGRATE_PHWA_PLUGIN_BUILD_DATE', '2025-0 4-1518:00:00' );34 define( 'INTEGRATE_PHWA_PLUGIN_VERSION', '1.1.2' ); 35 define( 'INTEGRATE_PHWA_PLUGIN_BUILD_DATE', '2025-05-09 18:00:00' ); 36 36 37 37 // Define Plugin paths. -
integrate-posthog-web-analytics/trunk/readme.txt
r3272947 r3290326 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 18 Stable tag: 1.1.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 78 78 == Changelog == 79 79 80 ### 1.1.2 81 * Fix: PHP Notice: Function `_load_textdomain_just_in_time` was called incorrectly 82 80 83 ### 1.1.1 81 84 * Added: Event Tracking: WooCommerce. See Docs: https://www.wpzinc.com/documentation/posthog/woocommerce-integration/
Note: See TracChangeset
for help on using the changeset viewer.