Plugin Directory

Changeset 2688266


Ignore:
Timestamp:
03/03/2022 02:38:42 PM (4 years ago)
Author:
upqode
Message:

update

Location:
stop-the-war/trunk
Files:
427 added
2 edited

Legend:

Unmodified
Added
Removed
  • stop-the-war/trunk/index.php

    r2688191 r2688266  
    99Description: We believe that collecting online donations should be easy and affordable. That’s why our WordPress donation plugin that never charges transaction fees. Russia’s military invasion of Ukraine has brought to the forefront of the global consciousness a long-simmering geopolitical conflict. The situation is changing every minute as Russian troops move across the country and attack from once friendly countries, but the need for humanitarian assistance is obvious as the nation faces casualties and significant property damage.
    1010Author: Upqode
    11 Version: 1.0.1
     11Version: 1.0.2
    1212Author URI: http://upqode.com/
    1313*/
     14
     15include dirname( __FILE__ ) . '/vendor/autoload.php';
     16
     17
     18/**
     19 * Initialize the plugin tracker
     20 *
     21 * @return void
     22 */
     23function appsero_init_tracker_stop_the_war() {
     24
     25    if ( ! class_exists( 'Appsero\Client' ) ) {
     26        require_once __DIR__ . '/vendor/appsero/client/src/Client.php';
     27    }
     28
     29    $client = new Appsero\Client( '458ca6ed-12bd-471b-8b34-48695707bdc1', 'Stop The War', __FILE__ );
     30
     31    // Active insights
     32    $client->insights()->init();
     33
     34    // Active automatic updater
     35    $client->updater();
     36
     37}
     38
     39appsero_init_tracker_stop_the_war();
     40
    1441
    1542add_action( 'wp_body_open', 'stop_the_war_banner' );
  • stop-the-war/trunk/readme.txt

    r2688194 r2688266  
    55Tested up to: 5.9
    66Requires PHP: 5.6
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    33335. You will be redirected to the "Stop The War" Getting Started page.
    3434
     35## Privacy Policy
     36Stop The War 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.
     37
     38Appsero 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.
     39
     40Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
     41
     42Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/).
     43
    3544
    3645== Changelog ==
     46
     47= 1.0.2 =
     48* Analytic updated.
    3749
    3850= 1.0.1 =
Note: See TracChangeset for help on using the changeset viewer.