This is a test site. Any changes will be lost!

Development:Calculated question type

From MoodleDocs

Database tables

The quiz_calculated table is an extension to the quiz_questions table by the calculated questiontype. However, it would be more suitable to change that to be an extension of the quiz_answers table, which, from a data perspective, is already possible, since an answer id is stored in the answer field. The questiontype code would need some changes to take this into account, however.

id
int(10) unsigned NOT NULL auto_increment,
question
int(10) unsigned NOT NULL default '0',
answer
int(10) unsigned NOT NULL default '0',
tolerance
varchar(20) NOT NULL default '0.0',
tolerancetype
int(10) NOT NULL default '1',
correctanswerlength
int(10) NOT NULL default '2',
correctanswerformat
int(10) NOT NULL default '2',

Response storage

The calculated questiontype inherits its methods create_session_and_responses(), restore_session_and_responses() and save_session_and_responses() from the abstract dataset dependent questiontype. This questiontype serializes the information of the chosen dataset together with the (single) response value into a string of the format datasetXX-RESPONSE, where dataset is the actual string "dataset", XX is the number of the chosen dataset item and RESPONSE is the value that was received from the submitted form.

Question->options

State->options