Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Notification_Controller_Upcoming_Payment_Reminder::get_recurring_payment_reminder_action_args( LLMS_Order $order, $type )
Retrieve arguments passed to order-related events processed by the action scheduler
Parameters Parameters
- $order
-
(LLMS_Order) (Required) Instance of the LLMS_Order which we'll schedule the payment reminder for.
Source Source
File: includes/notifications/controllers/class.llms.notification.controller.upcoming.payment.reminder.php
private function get_recurring_payment_reminder_action_args( $order, $type ) { return array( 'order_id' => $order->get( 'id' ), 'type' => $type, ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |