LLMS_Order::get_next_scheduled_action_time( string $action )
Retrieve the timestamp of the next scheduled event for a given action
Parameters Parameters
- $action
-
(string) (Required) Action hook ID. Core actions are "llms_charge_recurring_payment", "llms_access_plan_expiration".
Return Return
(int|false) Returns the timestamp of the next action as an integer or false
when no action exist.
Source Source
File: includes/models/model.llms.order.php
* @return int|false Returns the timestamp of the next action as an integer or `false` when no action exist. */ public function get_next_scheduled_action_time( $action ) {
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.6.0 | Introduced. |