LLMS_Notification_View_Upcoming_Payment_Reminder::set_merge_codes()
Setup merge codes that can be used with the notification.
Contents
Return Return
(array)
Source Source
File: includes/notifications/views/class.llms.notification.view.upcoming.payment.reminder.php
protected function set_merge_codes() { return array( '{{CUSTOMER_ADDRESS}}' => __( 'Customer Address', 'lifterlms' ), '{{CUSTOMER_NAME}}' => __( 'Customer Name', 'lifterlms' ), '{{CUSTOMER_PHONE}}' => __( 'Customer Phone', 'lifterlms' ), '{{NEXT_PAYMENT_DATE}}' => __( 'Next Payment Date', 'lifterlms' ), '{{ORDER_ID}}' => __( 'Order ID', 'lifterlms' ), '{{ORDER_URL}}' => __( 'Order URL', 'lifterlms' ), '{{PAYMENT_AMOUNT}}' => __( 'Payment Amount', 'lifterlms' ), '{{PLAN_TITLE}}' => __( 'Plan Title', 'lifterlms' ), '{{PRODUCT_TITLE}}' => __( 'Product Title', 'lifterlms' ), '{{PRODUCT_TYPE}}' => __( 'Product Type', 'lifterlms' ), '{{PRODUCT_TITLE_LINK}}' => __( 'Product Title (Link)', 'lifterlms' ), ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |