LLMS_Quiz_Data::__construct( int $quiz_id )

Constructor


Parameters Parameters

$quiz_id

(int) (Required) WP Post ID of the quiz


Top ↑

Source Source

File: includes/class.llms.quiz.data.php

30
31
32
33
34
35
36
public function __construct( $quiz_id ) {
 
    $this->quiz_id = $quiz_id;
    $this->quiz    = llms_get_post( $this->quiz_id );
    parent::__construct( $quiz_id );
 
}


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.