Automattic\WooCommerce\Admin

ReportExporter::get_scheduler_actions()public staticWC 1.0

Get all available scheduling actions. Used to determine action hook names and clear events.

Method of the class: ReportExporter{}

No Hooks.

Return

Array.

Usage

$result = ReportExporter::get_scheduler_actions();

ReportExporter::get_scheduler_actions() code WC 8.6.1

public static function get_scheduler_actions() {
	return array(
		'export_report'              => 'woocommerce_admin_report_export',
		'email_report_download_link' => 'woocommerce_admin_email_report_download_link',
	);
}