You appear to be a bot. Output may be restricted
Description
Check if there are any pending scheduled actions due to run.
Usage
$string = ActionScheduler_Store::has_pending_actions_due();
Parameters
Returns
string
Source
File name: woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Store.php
Lines:
1 to 9 of 9
public function has_pending_actions_due() { $pending_actions = $this->query_actions( array( 'date' => as_get_datetime_object(), 'status' => ActionScheduler_Store::STATUS_PENDING, ) ); return ! empty( $pending_actions ); }