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".


Top ↑

Return Return

(int|false) Returns the timestamp of the next action as an integer or false when no action exist.


Top ↑

Source Source

File: includes/models/model.llms.order.php

	public function get_next_scheduled_action_time( $action ) {
		return as_next_scheduled_action( $action, $this->get_action_args() );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.