LLMS_Quiz_Attempt::get_questions( boolean $cache = true )

Get array of serialized questions


Description Description


Parameters Parameters

$cache

(boolean) (Optional) if true, save data to to the object for future gets

Default value: true


Top ↑

Return Return

(mixed)


Top ↑

Source Source

File: includes/models/model.llms.quiz.attempt.php

	public function get_questions( $cache = true ) {

		$questions = $this->get( 'questions', $cache );
		if ( $questions ) {
			return unserialize( $questions );
		}
		return array();

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.16.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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





Permalink: