WP_Recovery_Mode_Key_Service::clean_expired_keys( int $ttl )

Removes expired recovery mode keys.


Parameters

$ttl int Required
Time in seconds for the keys to be valid for.

Top ↑

Source

File: wp-includes/class-wp-recovery-mode-key-service.php. View all references

public function clean_expired_keys( $ttl ) {

	$records = $this->get_keys();

	foreach ( $records as $key => $record ) {
		if ( ! isset( $record['created_at'] ) || time() > $record['created_at'] + $ttl ) {
			unset( $records[ $key ] );
		}
	}

	$this->update_keys( $records );
}


Top ↑

Changelog

Changelog
Version Description
5.2.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.