Plugin Directory

Changeset 3127666


Ignore:
Timestamp:
07/29/2024 06:53:04 PM (20 months ago)
Author:
wpmobo
Message:

1.0.6

  • Fixed PHP warning
  • Added Appsero
Location:
admintosh
Files:
73 added
2 edited

Legend:

Unmodified
Added
Removed
  • admintosh/trunk/admintosh.php

    r3126611 r3127666  
    44Plugin URI:   http://wpmobo.com/admintosh
    55Description:  WordPress admin customization and security tools
    6 Version:      1.0.5
     6Version:      1.0.6
    77Author:       wpmobo
    88Author URI:   http://wpmobo.com
     
    5656    function __construct() {
    5757       
     58        $this->client_insights();
    5859        $this->include();
    59         $this->init();
    60        
     60        $this->init();     
    6161    }
    6262   
     
    7979    }
    8080
     81    public function client_insights() {
     82
     83        if ( ! class_exists( 'Appsero\Client' ) ) {
     84          require_once __DIR__ . '/appsero/src/Client.php';
     85        }
     86
     87        $client = new Appsero\Client( 'ed558a76-2ead-4e54-804f-6b4aaa5eee8c', 'Admintosh – WordPress admin customization and security tools', __FILE__ );
     88
     89        // Active insights
     90        $client->insights()->init();
     91
     92    }
     93
    8194}
    8295
  • admintosh/trunk/readme.txt

    r3126618 r3127666  
    66Requires at least: 6.5
    77Tested up to: 6.6.1
    8 Stable tag: 1.0.5
    9 Version: 1.0.5
     8Stable tag: 1.0.6
     9Version: 1.0.6
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9999https://www.google.com/recaptcha/api.js
    100100
     101
     102## Privacy Policy
     103
     104Admintosh 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.
     105
     106Appsero 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.
     107
     108Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
     109
     110Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/).
     111
     112
     113
     114
     115
    101116== Changelog ==
     117
     118= 1.0.6 =
     119- Fixed PHP warning
     120- Added Appsero
    102121
    103122= 1.0.5 =
Note: See TracChangeset for help on using the changeset viewer.