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.

Метод класса: ReportExporter{}

Хуков нет.

Возвращает

Массив.

Использование

$result = ReportExporter::get_scheduler_actions();

Код ReportExporter::get_scheduler_actions() WC 8.7.0

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