LLMS_Quiz::is_orphan()
Determine if the quiz is an orphan
Description Description
Return Return
(bool)
Source Source
File: includes/models/model.llms.quiz.php
public function is_orphan() { $parent_id = $this->get( 'lesson_id' ); if ( ! $parent_id ) { return true; } return false; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.16.12 | Introduced. |