Changes between Version 34 and Version 35 of BoltRef


Ignore:
Timestamp:
Oct 23, 2008, 11:56:47 AM (16 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BoltRef

    v34 v35  
    344344        filename('file_1.php')
    345345    ),
     346    callback('my_func'),
    346347    repeat(.3, basic_review(), REVIEW),
    347348    repeat(.7, int_review(), REVIEW|REPEAT),
     
    351352}}}
    352353
     354 '''callback()''' specifies a function to be called when the exercise set is completed.
     355This function is called with the following arguments:
     356{{{
     357function($student, $score);
     358}}}
     359where $student is the student record and $score [0..1] is the score.
    353360== Exercise review and repeat ==
    354361