1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
final class ITSEC_Site_Scanner_Privacy { public function __construct() { add_filter( 'itsec_get_privacy_policy_for_sharing', array( $this, 'get_privacy_policy_for_sharing' ) ); }
public function get_privacy_policy_for_sharing( $policy ) { $suggested_text = '<strong class="privacy-policy-tutorial">' . __( 'Suggested text:' ) . ' </strong>';
/* Translators: 1: Link to Sucuri's privacy policy */ $policy .= "<p>$suggested_text " . __( 'This site is scanned for potential malware and vulnerabilities by the iThemes Site Scanner. We do not send personal information to the scanner; however, the scanner could find personal information posted publicly (such as in comments) during the scan.', 'better-wp-security' ) . "</p>\n";
return $policy; } } new ITSEC_Site_Scanner_Privacy();
|