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 HashIpAddress extends ResolvableAudit { public static $optionKey = 'hash_ips'; public static function getPassedStateInfo() { return [ 'title' => esc_html__('The “Hash IP Addresses” feature is currently enabled on your website.', 'wp-statistics'), 'notes' => View::load('components/privacy-audit/hash-ips', [], true), ]; } public static function getUnpassedStateInfo() { return [ 'title' => esc_html__('The “Hash IP Addresses” feature is currently disabled on your website.', 'wp-statistics'), 'notes' => View::load('components/privacy-audit/hash-ips-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]