WC_Admin_Report::maybe_update_transients()public staticWC 1.0

Function to update the modified transients at the end of the request.

Method of the class: WC_Admin_Report{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Admin_Report::maybe_update_transients();

WC_Admin_Report::maybe_update_transients() code WC 8.7.0

public static function maybe_update_transients() {
	foreach ( self::$transients_to_update as $key => $transient_name ) {
		set_transient( $transient_name, self::$cached_results[ $transient_name ], DAY_IN_SECONDS );
	}
	// Transients have been updated reset the list.
	self::$transients_to_update = array();
}