LLMS_Notification_View_Student_Welcome
Notification View: Student Welcome
Source Source
File: includes/notifications/views/class.llms.notification.view.student.welcome.php
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | class LLMS_Notification_View_Student_Welcome extends LLMS_Abstract_Notification_View { /** * Notification Trigger ID * * @var [type] */ public $trigger_id = 'student_welcome' ; /** * Setup body content for output * * @return string * @since 3.8.0 * @version 3.8.0 */ protected function set_body() { ob_start(); ?><p><?php printf( __( 'Hello %s,' , 'lifterlms' ), '{{STUDENT_NAME}}' ); ?></p> <p><?php printf( __( 'Here\'s some helpful information to help you get started at %s.' , 'lifterlms' ), '{{SITE_TITLE}}' ); ?></p> <p><b><?php _e( 'Your Login' , 'lifterlms' ); ?></b>: {{STUDENT_LOGIN}}</p> <p><b><?php _e( 'Your Dashboard' , 'lifterlms' ); ?></b>: <a href= "{{DASHBOARD_URL}}" >{{DASHBOARD_URL}}</a></p> <p><?php _e( 'If you forgot or don\'t have a password you can reset it now so you can login and get started:' , 'lifterlms' ); ?> <a href= "{{PASSWORD_RESET_URL}}" >{{PASSWORD_RESET_URL}}</a></p> <?php return ob_get_clean(); } /** * Setup footer content for output * * @return string * @since 3.8.0 * @version 3.8.0 */ protected function set_footer() { return '' ; } /** * Setup notification icon for output * * @return string * @since 3.8.0 * @version 3.8.0 */ protected function set_icon() { return $this ->get_icon_default( 'positive' ); } /** * Setup merge codes that can be used with the notification * * @return array * @since 3.8.0 * @version 3.8.0 */ protected function set_merge_codes() { return array ( '{{DASHBOARD_URL}}' => __( 'Dashboard URL' , 'lifterlms' ), '{{PASSWORD_RESET_URL}}' => __( 'Password Reset URL' , 'lifterlms' ), '{{SITE_TITLE}}' => __( 'Site Title' , 'lifterlms' ), '{{STUDENT_NAME}}' => __( 'Student Name' , 'lifterlms' ), '{{STUDENT_LOGIN}}' => __( 'Student Login' , 'lifterlms' ), ); } /** * Replace merge codes with actual values * * @param string $code the merge code to ge merged data for * @return string * @since 3.8.0 * @version 3.8.2 */ protected function set_merge_data( $code ) { switch ( $code ) { case '{{DASHBOARD_URL}}' : $code = llms_get_page_url( 'myaccount' ); break ; case '{{PASSWORD_RESET_URL}}' : $code = llms_lostpassword_url(); break ; case '{{SITE_TITLE}}' : $code = get_bloginfo( 'name' , 'display' ); break ; case '{{STUDENT_NAME}}' : $code = $this ->user->get_name(); break ; case '{{STUDENT_LOGIN}}' : $field = ( 'yes' === get_option( 'lifterlms_registration_generate_username' ) ) ? 'user_email' : 'user_login' ; $code = $this ->user->get( $field ); break ; } return $code ; } /** * Setup notification subject for output * * @return string * @since 3.8.0 * @version 3.8.0 */ protected function set_subject() { return sprintf( __( 'Welcome to %s' , 'lifterlms' ), '{{SITE_TITLE}}' ); } /** * Setup notification title for output * * @return string * @since 3.8.0 * @version 3.8.0 */ protected function set_title() { return sprintf( __( 'Let\'s get started %s' , 'lifterlms' ), '{{STUDENT_NAME}}' ); } } |
Expand full source code Collapse full source code View on GitHub
Methods Methods
- set_body — Setup body content for output
- set_footer — Setup footer content for output
- set_icon — Setup notification icon for output
- set_merge_codes — Setup merge codes that can be used with the notification
- set_merge_data — Replace merge codes with actual values
- set_subject — Setup notification subject for output
- set_title — Setup notification title for output
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |