Changeset 2031614
- Timestamp:
- 02/15/2019 05:09:19 PM (7 years ago)
- Location:
- jade-gdpr/trunk
- Files:
-
- 3 edited
-
admin/partials/jade-gdpr-consent-logged-in.php (modified) (1 diff)
-
jadeGDPR.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jade-gdpr/trunk/admin/partials/jade-gdpr-consent-logged-in.php
r1934358 r2031614 31 31 echo '<ul>'; 32 32 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>'; 34 34 } 35 35 echo '</ul>'; -
jade-gdpr/trunk/jadeGDPR.php
r1934358 r2031614 5 5 * Plugin URI: https://jaderesources.co.uk/jadeGDPR/ 6 6 * 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. 07 * Version: 2.0.1 8 8 * Author: E Martin 9 9 * Author URI: https://jaderesources.co.uk/ … … 28 28 * Current plugin version. 29 29 */ 30 define( 'JADE_GDPR_VERSION', '2.0.0' ); 30 define( 'JADE_GDPR_VERSION', '2.0.1' ); 31 32 /** 33 * Plugin Constants 34 * @since 2.0.1 35 */ 36 define( 'stats', 'stats' ); 37 define( 'consented', 'consented' ); 38 define( 'withdrawn', 'withdrawn' ); 39 define( 'waiting', 'waiting' ); 40 define( 'logged_in', 'logged_in' ); 41 define( 'not_logged_in', 'not_logged_in' ); 42 define( 'consent_text', 'consent_text' ); 43 31 44 32 45 /** -
jade-gdpr/trunk/readme.txt
r1934358 r2031614 3 3 Tags: gdpr, consent, profile, users 4 4 Requires at least 4.7 5 Tested up to: 4.9.85 Tested up to: 2.0.0 6 6 Stable tag: 2.0.0 7 7 License: GPLv2 or later … … 36 36 == Changelog == 37 37 38 = 2.0.1 - 15/02/2019 39 * Updated plugin to include defined constants 40 38 41 = V2.0.0 - 01/09/2018 39 42 * Plugin re-written from the ground up.
Note: See TracChangeset
for help on using the changeset viewer.