LLMS_Question::get_conditional_correct_value()

Retrieve the correct values for a conditionally graded question


Return Return

(array)


Top ↑

Source Source

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

	public function get_conditional_correct_value() {

		$correct = explode( '|', $this->get( 'correct_value' ) );
		$correct = array_map( 'trim', $correct );

		return $correct;

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.16.15 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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