LLMS_Quiz_Data::get_fail_count( string $period = 'current' )
Retrieve # of quiz fails within the period
Parameters Parameters
- $period
-
(string) (Optional) date period [current|previous]
Default value: 'current'
Return Return
(int)
Source Source
File: includes/class.llms.quiz.data.php
public function get_fail_count( $period = 'current' ) { return $this->get_count_by_status( 'fail', $period ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.16.0 | Introduced. |