PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
src
/
Service
/
Admin
/
PrivacyAudit
/
Audits
<?php namespace WP_Statistics\Service\Admin\PrivacyAudit\Audits; use WP_Statistics\Components\View; use WP_Statistics\Service\Admin\PrivacyAudit\Audits\Abstracts\ResolvableAudit; class RecordUserPageVisits extends ResolvableAudit { public static $optionKey = 'visitors_log'; public static function isOptionPassed() { // If option is disabled, consider it passed. return !self::isOptionEnabled(); } public static function getPassedStateInfo() { return [ 'title' => esc_html__('The “Track Logged-In User Activity” feature is currently disabled on your website.', 'wp-statistics'), 'notes' => View::load('components/privacy-audit/visitors-log', [], true), ]; } public static function getUnpassedStateInfo() { return [ 'title' => esc_html__('The “Track Logged-In User Activity” feature is currently enabled on your website.', 'wp-statistics'), 'notes' => View::load('components/privacy-audit/visitors-log-unpassed', [], true), ]; } }
[-] UnhashedIpAddress.php
[edit]
[-] AnonymizeIpAddress.php
[edit]
[-] StoredUserIdData.php
[edit]
[+]
Abstracts
[-] RecordUserPageVisits.php
[edit]
[-] HashIpAddress.php
[edit]
[-] RecommendConsent.php
[edit]
[-] StoreUserAgentString.php
[edit]
[+]
..
[-] StoredUserAgentStringData.php
[edit]