LLMS_Notification_Controller_Payment_Retry::action_callback( int $order = null )
Callback function called when a payment retry is scheduled
Parameters Parameters
- $order
-
(int) (Optional) Instance of an LLMS_Order.
Default value: null
Return Return
(void)
Source Source
File: includes/notifications/controllers/class.llms.notification.controller.payment.retry.php
public function action_callback( $order = null ) {
$this->user_id = $order->get( 'user_id' );
$this->post_id = $order->get( 'id' );
$this->send();
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.10.0 | Introduced. |