settings = ITSEC_Modules::get_settings( 'global' ); add_filter( 'itsec_get_privacy_policy_for_security_logs', array( $this, 'get_privacy_policy_for_security_logs' ) ); add_filter( 'itsec_get_privacy_policy_for_retention', array( $this, 'get_privacy_policy_for_retention' ) ); } public function get_privacy_policy_for_security_logs( $policy ) { $suggested_text = '' . __( 'Suggested text:' ) . ' '; $retention_days = $this->get_retention_days(); /* Translators: 1: Number of days that data is retained for */ $policy .= "
$suggested_text " . sprintf( esc_html__( 'The IP address of visitors, user ID of logged in users, and username of login attempts are conditionally logged to check for malicious activity and to protect the site from specific kinds of attacks. Examples of conditions when logging occurs include login attempts, log out requests, requests for suspicious URLs, changes to site content, and password updates. This information is retained for %1$d days.', 'better-wp-security' ), $retention_days ) . "
\n"; return $policy; } public function get_privacy_policy_for_retention( $policy ) { $suggested_text = '' . __( 'Suggested text:' ) . ' '; $retention_days = $this->get_retention_days(); /* Translators: 1: Number of days that data is retained for */ $policy .= "$suggested_text " . sprintf( esc_html__( 'Security logs are retained for %1$d days.', 'better-wp-security' ), $retention_days ) . "
\n"; return $policy; } private function get_retention_days() { if ( 'database' === $this->settings['log_type'] ) { return $this->settings['log_rotation']; } else if ( 'file' === $this->settings['log_type'] ) { return $this->settings['file_log_rotation']; } else { return max( $this->settings['log_rotation'], $this->settings['file_log_rotation'] ); } } } new ITSEC_Global_Privacy();