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_Notifications::load()
Load all notifications
Return Return
(void)
Source Source
File: includes/notifications/class.llms.notifications.php
* @return void */ private function load() { $triggers = array( 'achievement_earned', 'certificate_earned', 'course_complete', 'course_track_complete', 'enrollment', 'lesson_complete', 'manual_payment_due', 'payment_retry', 'purchase_receipt', 'quiz_failed', 'quiz_graded', 'quiz_passed', 'section_complete', 'student_welcome', 'subscription_cancelled', 'upcoming_payment_reminder', ); foreach ( $triggers as $name ) { $this->load_controller( $name ); $this->load_view( $name ); } $processors = array( 'email', ); foreach ( $processors as $name ) { $this->load_processor( $name ); } /** * Run an action after all core notification classes are loaded. * * Third party notifications can hook into this action. * Use `load_view()`, `load_controller()`, and `load_processor()` methods * to load notifications into the class and be auto-called by the core APIs. * * @since Unknown * * @param LLMS_Notifications $this Instance of the notifications singleton. */ do_action( 'llms_notifications_loaded', $this );
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.2.0 | Added 'upcoming_payment_reminder'. |
3.8.0 | |
3.24.0 | Introduced. |