LLMS_Notification_View_Lesson_Complete::set_body()

Setup body content for output


Return Return

(string)


Top ↑

Source Source

File: includes/notifications/views/class.llms.notification.view.lesson.complete.php

	protected function set_body() {
		if ( 'email' === $this->notification->get( 'type' ) ) {
			return sprintf( __( 'Congratulations! %1$s completed %2$s', 'lifterlms' ), '{{STUDENT_NAME}}', '{{LESSON_TITLE}}' );
		}
		$content  = sprintf( __( 'Congratulations! You finished %s', 'lifterlms' ), '{{LESSON_TITLE}}' );
		$content .= "\r\n\r\n{{COURSE_PROGRESS}}";
		return $content;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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