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_reminder_days( string $type, int $default = 1 )
Undocumented function
Parameters Parameters
- $type
-
(string) (Required) The notification type identifier.
- $default
-
(int) (Optional) Opional. The default value. Default is
1
.Default value: 1
Return Return
(int)
Source Source
File: includes/notifications/controllers/class.llms.notification.controller.upcoming.payment.reminder.php
private function get_reminder_days( $type, $default = 1 ) { return $this->get_option( $type . '_reminder_days', $default ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |