Changes between Version 42 and Version 43 of BoltRef
- Timestamp:
- Oct 28, 2008, 4:39:43 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BoltRef
v42 v43 349 349 '''callback''' :: a function to call on the completion of the exercise set. It will be called as 350 350 {{{ 351 callback($s tudent, $score);352 }}} 353 where $s tudent is the student record and $score [0..1] is the score.354 '''repeat-spec''': A repeat specification (see below).355 '''refresh-spec''': A refresh specification (see below).351 callback($score); 352 }}} 353 where $score [0..1] is the score. 354 '''repeat-spec''':: A repeat specification (see below). 355 '''refresh-spec''':: A refresh specification (see below). 356 356 357 357 Example: … … 465 465 identify variable types at runtime. 466 466 There's a PHP class hierarchy underlying it; 467 units are represented by classes like BoltExercise,BoltSequence, etc.,468 all of which are derived from BoltUnit.467 units are represented by classes like !BoltExercise, !BoltSequence, etc., 468 all of which are derived from !BoltUnit. 469 469 So 470 470 {{{ … … 481 481 ); 482 482 }}} 483 483 484 == Changing course documents == 484 485