Changes between Version 34 and Version 35 of BoltRef
- Timestamp:
- Oct 23, 2008, 11:56:47 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BoltRef
v34 v35 344 344 filename('file_1.php') 345 345 ), 346 callback('my_func'), 346 347 repeat(.3, basic_review(), REVIEW), 347 348 repeat(.7, int_review(), REVIEW|REPEAT), … … 351 352 }}} 352 353 354 '''callback()''' specifies a function to be called when the exercise set is completed. 355 This function is called with the following arguments: 356 {{{ 357 function($student, $score); 358 }}} 359 where $student is the student record and $score [0..1] is the score. 353 360 == Exercise review and repeat == 354 361