Warning: This method has been deprecated.
LLMS_Lesson::get_assigned_quiz()
Get the quiz associated with the lesson
Description Description
Return Return
(false|int)
Source Source
File: includes/models/model.llms.lesson.php
public function get_assigned_quiz() { llms_deprecated_function( 'LLMS_Lesson::get_assigned_quiz()', '3.0.2', "LLMS_Lesson::get( 'quiz' )" ); $id = $this->get( 'quiz' ); if ( $id ) { return $id; } else { return false; } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.2 | This method has been deprecated. |
1.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: