Plugin Directory

Changeset 3219914


Ignore:
Timestamp:
01/09/2025 11:44:33 PM (15 months ago)
Author:
wpmobo
Message:

Added appsero

Location:
store-notifier
Files:
18 added
4 edited

Legend:

Unmodified
Added
Removed
  • store-notifier/tags/1.0.0/readme.txt

    r3219909 r3219914  
    9494
    9595
     96
     97## Privacy Policy
     98
     99StoreNotifier 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
     101Appsero 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
     103Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
     104
     105Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/).
     106
     107
     108
    96109== Frequently Asked Questions ==
    97110=  Is this plugin compatable on latest wordpress ?  =
    98111Yes
    99 
    100112
    101113
  • store-notifier/tags/1.0.0/store-notifier.php

    r3219905 r3219914  
    5050
    5151    function __construct() {
     52
     53        add_action( 'init', [ $this, 'client_insights' ] );
    5254
    5355        //
     
    114116    }
    115117
     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
    116131
    117132}
  • store-notifier/trunk/readme.txt

    r3219909 r3219914  
    9494
    9595
     96
     97## Privacy Policy
     98
     99StoreNotifier 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
     101Appsero 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
     103Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
     104
     105Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/).
     106
     107
     108
    96109== Frequently Asked Questions ==
    97110=  Is this plugin compatable on latest wordpress ?  =
    98111Yes
    99 
    100112
    101113
  • store-notifier/trunk/store-notifier.php

    r3219905 r3219914  
    5050
    5151    function __construct() {
     52
     53        add_action( 'init', [ $this, 'client_insights' ] );
    5254
    5355        //
     
    114116    }
    115117
     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
    116131
    117132}
Note: See TracChangeset for help on using the changeset viewer.