-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGdprDataContainer.php
86 lines (64 loc) · 1.5 KB
/
GdprDataContainer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
require_once( 'GdprInterface.php' );
require_once( 'GdprToolbox.php' );
class GdprDataContainer implements GdprInterface {
public $email;
public $data = []; // array( array( plugin_navn, fields => array () ) );
public static function instance() {
static $inst = null;
if ( $inst === null ) {
$inst = new GdprDataContainer();
}
return $inst;
}
public function __construct() {
}
public function init() {
$data = $this->get_data();
}
protected function get_data() {
return $this->data;
}
public function update_instance( $key, $instance ) {
$this->data[ $key ] = $instance;
}
protected function plugin_name( $plugin_name ) {
$this->plugin_name = $plugin_name;
}
/**
* set_field
*
* @param [array] $field
* @return void
*/
protected function field( $field ) {
$this->fields[] = $field;
}
public function update_data( $gdpr_privacy ) {
//maybe thow cactch instead
if ( ! $gdpr_privacy->get_key() ) {
return;
}
$this->data[ $gdpr_privacy->get_key() ] = $gdpr_privacy;
}
//////////////////////
//////////////////////
//////////////////////
//////////////////////
public function get_gdpr_version() {
return '1.0.0';
}
public function read_userdata( $user_email ) {
return $user_email;
}
public function delete_userdata( $user_email ) {
return $user_email;
}
public function anonymize_userdata( $user_email ) {
return $user_email;
}
public function policy() {
return '';
}
}
$gdpr_data_container = GdprDataContainer::instance();