LLMS_Quiz_Attempt::get_question_objects( boolean $cache = true )
Retrieve an array of attempt question objects
Description Description
Parameters Parameters
- $cache
-
(boolean) (Optional) if true, save data to to the object for future gets
Default value: true
Return Return
(array)
Source Source
File: includes/models/model.llms.quiz.attempt.php
public function get_question_objects( $cache = true ) { $questions = array(); foreach ( $this->get_questions( $cache ) as $qdata ) { $questions[] = new LLMS_Quiz_Attempt_Question( $qdata ); } return $questions; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.16.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: