Automattic\WooCommerce\Internal\Admin\Schedulers
CustomersScheduler::get_scheduler_actions()
Get all available scheduling actions. Used to determine action hook names and clear events.
Method of the class: CustomersScheduler{}
No Hooks.
Return
Array
.
Usage
$result = CustomersScheduler::get_scheduler_actions();
CustomersScheduler::get_scheduler_actions() CustomersScheduler::get scheduler actions code WC 7.3.0
public static function get_scheduler_actions() { $actions = parent::get_scheduler_actions(); $actions['anonymize'] = 'wc-admin_anonymize_' . static::$name; $actions['delete_user'] = 'wc-admin_delete_user_' . static::$name; return $actions; }