Warning: This method has been deprecated.

LLMS_Lesson::get_assigned_quiz()

Get the quiz associated with the lesson


Description Description


Return Return

(false|int)


Top ↑

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;
		}

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.2 This method has been deprecated.
1.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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





Permalink: