WC_Admin_Report::maybe_update_transients
Function to update the modified transients at the end of the request.
Method of the class: WC_Admin_Report{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = WC_Admin_Report::maybe_update_transients();
WC_Admin_Report::maybe_update_transients() WC Admin Report::maybe update transients code WC 10.4.3
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();
}