LLMS_Course_Factory::get_lesson( mixed $the_lesson = false,  $args = array() )

Get Lesson


Description Description


Parameters Parameters

$the_lesson

(mixed) (Optional) = false, $args = array()

Default value: false


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.course.factory.php

	public function get_lesson( $the_lesson = false, $args = array() ) {
		global $post;

	 	$the_lesson = $post;

	 	$classname = 'LLMS_Lesson_Basic';

		return new LLMS_Lesson_Basic( $the_lesson, $args );
	}


Top ↑

User Contributed Notes User Contributed Notes

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