Plugin Directory

Changeset 2031614


Ignore:
Timestamp:
02/15/2019 05:09:19 PM (7 years ago)
Author:
ej3martin
Message:

Updated Constants
Updated to v 2.0.1
Updated tested to version

Location:
jade-gdpr/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • jade-gdpr/trunk/admin/partials/jade-gdpr-consent-logged-in.php

    r1934358 r2031614  
    3131    echo '<ul>';
    3232      foreach ($member_arr as $user) {
    33         echo '<li>'.$user->first_name.' '.$user->last_name.' - '.$user->user_login.'</li>';
     33        echo '<li>'.$user->first_name.' '.$user->last_name.' - '.$user->user_login.' Last Login: '. date("d-m-Y  H:i", get_user_meta( $user->ID, 'jade_last_login', true ) ) .'</li>';
    3434      }
    3535    echo '</ul>';
  • jade-gdpr/trunk/jadeGDPR.php

    r1934358 r2031614  
    55 * Plugin URI:          https://jaderesources.co.uk/jadeGDPR/
    66 * Description:         Adds a Data Protection consent checkbox to the users' profile.  On a Dashboard page, an administrator can see which WordPress users have given, wthdrawn or not yet given consent for their details to be kept.
    7  * Version:             2.0.0
     7 * Version:             2.0.1
    88 * Author:              E Martin
    99 * Author URI:          https://jaderesources.co.uk/
     
    2828 * Current plugin version.
    2929 */
    30 define( 'JADE_GDPR_VERSION', '2.0.0' );
     30define( 'JADE_GDPR_VERSION', '2.0.1' );
     31
     32/**
     33 * Plugin Constants
     34 * @since    2.0.1
     35 */
     36define( 'stats', 'stats' );
     37define( 'consented', 'consented' );
     38define( 'withdrawn', 'withdrawn' );
     39define( 'waiting', 'waiting' );
     40define( 'logged_in', 'logged_in' );
     41define( 'not_logged_in', 'not_logged_in' );
     42define( 'consent_text', 'consent_text' );
     43
    3144
    3245/**
  • jade-gdpr/trunk/readme.txt

    r1934358 r2031614  
    33Tags: gdpr, consent, profile, users
    44Requires at least 4.7
    5 Tested up to: 4.9.8
     5Tested up to: 2.0.0
    66Stable tag: 2.0.0
    77License: GPLv2 or later
     
    3636== Changelog ==
    3737
     38= 2.0.1 - 15/02/2019
     39* Updated plugin to include defined constants
     40
    3841= V2.0.0 - 01/09/2018
    3942*   Plugin re-written from the ground up.
Note: See TracChangeset for help on using the changeset viewer.