LLMS_Student_Quizzes::get_sibling_attempts_by_key( string $attempt_key )
Get all the attempts for a given quiz/lesson from an attempt key
Parameters Parameters
- $attempt_key
-
(string) (Required) An encoded attempt key.
Return Return
(false|array)
Source Source
File: includes/models/model.llms.student.quizzes.php
public function get_sibling_attempts_by_key( $attempt_key ) { $id = $this->parse_attempt_key( $attempt_key ); if ( ! $id ) { return false; } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.9.0 | Introduced. |