Browse
For agents
About
The GDPR Framework By Data443
/
2.1.0
The GDPR Framework By Data443
v2.1.0
Switch version
2.5.0
2.4.0
trunk
1.0.0
1.0.1
1.0.10
1.0.11
1.0.12
1.0.13
1.0.14
1.0.3
1.0.33
1.0.34
1.0.35
1.0.36
1.0.37
1.0.39
1.0.4
1.0.40
1.0.41
1.0.42
1.0.43
1.0.44
1.0.45
1.0.46
All 41 releases
Overview
Code
gdpr-framework
/
src
/
DataSubject
/
DataSubjectAdmin.php
DataSubjectAdmin.php
in The GDPR Framework By Data443 2.1.0, at src/DataSubject/DataSubjectAdmin.php
20 lines
360 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
Codelight
\
GDPR
\
DataSubject
;
4
5
class
DataSubjectAdmin
6
{
7
public
function
__construct
(
)
8
{
9
add_filter
(
'
gdpr/admin/tabs
'
,
[
$
this
,
'
registerTab
'
]
,
30
)
;
10
}
11
12
public
function
registerTab
(
$
tabs
)
13
{
14
global
$
gdpr
;
15
16
$
tabs
[
'
data-subject
'
]
=
new
AdminTabDataSubject
(
$
gdpr
->
DataSubject
)
;
17
18
return
$
tabs
;
19
}
20
}