LLMS_Quiz_Attempt::start()

Record the attempt as started


Return Return

(LLMS_Quiz_Attempt) Instance of the current quiz attempt object.


Top ↑

Source Source

File: includes/models/model.llms.quiz.attempt.php

	public function start() {

		$this->set( 'start_date', current_time( 'mysql' ) );
		$this->save();
		return $this;

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.9.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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