Browse
For agents
About
Simple Analytics
/
1.83
Simple Analytics
v1.83
Switch version
1.109
1.108
1.107
1.106
1.73
1.74
1.75
1.76
1.77
1.78
1.79
1.8
1.80
1.81
1.82
1.83
1.84
1.85
1.86
1.87
1.88
1.89
1.9
1.90
1.91
All 98 releases
Overview
Code
simpleanalytics
/
src
/
Actions
/
AddInactiveComment.php
AddInactiveComment.php
in Simple Analytics 1.83, at src/Actions/AddInactiveComment.php
19 lines
285 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
SimpleAnalytics
\
Actions
;
4
5
class
AddInactiveComment
6
{
7
use
Action
;
8
9
/**
10
*
@var
string
11
*/
12
protected
$
hook
=
'
wp_footer
'
;
13
14
public
function
handle
(
)
:
void
15
{
16
echo
"
<!-- Simple Analytics: Not logging requests from admins -->
\n
"
;
17
}
18
}
19