Brainstorm_Update_Astra_Addon::astra_addon_run_scheduled_analytic_job()

Run scheduled job for BSF-Analytics.


Description


Return

(void)


Source

File: class-brainstorm-update-astra-addon.php

		public function astra_addon_run_scheduled_analytic_job() {
			if ( ! wp_next_scheduled( 'astra_addon_get_addon_usage' ) && ! wp_installing() ) {
				wp_schedule_event( time(), 'daily', 'astra_addon_get_addon_usage' );
			}
		}

Changelog

Changelog
Version Description
3.9.3 Introduced.

User Contributed Notes

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