Changeset 3219914
- Timestamp:
- 01/09/2025 11:44:33 PM (15 months ago)
- Location:
- store-notifier
- Files:
-
- 18 added
- 4 edited
-
tags/1.0.0/appsero (added)
-
tags/1.0.0/appsero/.editorconfig (added)
-
tags/1.0.0/appsero/.php-cs-fixer.dist.php (added)
-
tags/1.0.0/appsero/phpcs.xml.dist (added)
-
tags/1.0.0/appsero/readme.md (added)
-
tags/1.0.0/appsero/src (added)
-
tags/1.0.0/appsero/src/Client.php (added)
-
tags/1.0.0/appsero/src/Insights.php (added)
-
tags/1.0.0/appsero/src/License.php (added)
-
tags/1.0.0/readme.txt (modified) (1 diff)
-
tags/1.0.0/store-notifier.php (modified) (2 diffs)
-
trunk/appsero (added)
-
trunk/appsero/.editorconfig (added)
-
trunk/appsero/.php-cs-fixer.dist.php (added)
-
trunk/appsero/phpcs.xml.dist (added)
-
trunk/appsero/readme.md (added)
-
trunk/appsero/src (added)
-
trunk/appsero/src/Client.php (added)
-
trunk/appsero/src/Insights.php (added)
-
trunk/appsero/src/License.php (added)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/store-notifier.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
store-notifier/tags/1.0.0/readme.txt
r3219909 r3219914 94 94 95 95 96 97 ## Privacy Policy 98 99 StoreNotifier uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements. 100 101 Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure a great user experience for all our users. 102 103 Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.** 104 105 Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/). 106 107 108 96 109 == Frequently Asked Questions == 97 110 = Is this plugin compatable on latest wordpress ? = 98 111 Yes 99 100 112 101 113 -
store-notifier/tags/1.0.0/store-notifier.php
r3219905 r3219914 50 50 51 51 function __construct() { 52 53 add_action( 'init', [ $this, 'client_insights' ] ); 52 54 53 55 // … … 114 116 } 115 117 118 public function client_insights() { 119 120 if ( ! class_exists( 'Appsero\Client' ) ) { 121 require_once __DIR__ . '/appsero/src/Client.php'; 122 } 123 124 $client = new Appsero\Client( '6b72d791-e89c-4503-b07c-c865457c3e6a', 'Store Notifier – WhatsApp & On-Site Notifications plugin for WooCommerce', __FILE__ ); 125 126 // Active insights 127 $client->insights()->init(); 128 129 } 130 116 131 117 132 } -
store-notifier/trunk/readme.txt
r3219909 r3219914 94 94 95 95 96 97 ## Privacy Policy 98 99 StoreNotifier uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements. 100 101 Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure a great user experience for all our users. 102 103 Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.** 104 105 Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/). 106 107 108 96 109 == Frequently Asked Questions == 97 110 = Is this plugin compatable on latest wordpress ? = 98 111 Yes 99 100 112 101 113 -
store-notifier/trunk/store-notifier.php
r3219905 r3219914 50 50 51 51 function __construct() { 52 53 add_action( 'init', [ $this, 'client_insights' ] ); 52 54 53 55 // … … 114 116 } 115 117 118 public function client_insights() { 119 120 if ( ! class_exists( 'Appsero\Client' ) ) { 121 require_once __DIR__ . '/appsero/src/Client.php'; 122 } 123 124 $client = new Appsero\Client( '6b72d791-e89c-4503-b07c-c865457c3e6a', 'Store Notifier – WhatsApp & On-Site Notifications plugin for WooCommerce', __FILE__ ); 125 126 // Active insights 127 $client->insights()->init(); 128 129 } 130 116 131 117 132 }
Note: See TracChangeset
for help on using the changeset viewer.