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
Return Return
(void)
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 ); }
Expand full source code Collapse full source code View on GitHub