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


Top ↑

Return Return

(void)


Top ↑

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();

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.10.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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