LLMS_Question::get( string $key, boolean $raw = false )

Getter


Parameters Parameters

$key

(string) (Required) The property key.

$raw

(boolean) (Optional) Whether or not we need to get the raw value.

Default value: false


Top ↑

Return Return

(mixed)


Top ↑

Source Source

File: includes/models/model.llms.question.php

207
208
209
210
211
212
213
214
215
216
217
218
public function get( $key, $raw = false ) {
 
    $value = parent::get( $key, $raw );
 
    // When getting the 'not raw' value, make sure we always return a valid question type.
    if ( ! $raw && ! $value && 'question_type' === $key ) {
        $value = 'choice';
    }
 
    return $value;
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.38.2 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.