# simpleanalytics/1.95/src/Actions/AddInactiveComment.php

Simple Analytics, version 1.95. 19 lines.

- Page: https://pluginprobe.com/plugins/simpleanalytics/1.95/code/src/Actions/AddInactiveComment.php
- Raw: https://pluginprobe.com/plugins/simpleanalytics/1.95/raw/src/Actions/AddInactiveComment.php
- Modified: 2024-09-13T11:41:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/simpleanalytics/1.95/code/src/Actions/AddInactiveComment.php#L10-L20`.

```php
<?php

namespace SimpleAnalytics\Actions;

class AddInactiveComment
{
    use Action;

    /**
     * @var string
     */
    protected $hook = 'wp_footer';

    public function handle(): void
    {
        echo "<!-- Simple Analytics: Not logging requests from admins -->\n";
    }
}

```
