Problems_web.Controller_intf
The controller interface manages the specific logig for each problem type. Implementing a new problem type will require creating a new module that satisfies the S
signature
type ('v, 'e, 'a) setting = {
name : string;
enabled : bool option;
Whether the radio box should be selected. If this is None
, no radio box will be rendered.
value : 'v;
update : 'v -> 'a;
Function that returns the action that should be taken when a user selects this option.
*)extra : 'e;
}
This represents a single option in the settings for this problem type.
'v
is the type of the value of this option'e
is the type of the extra values associated with the option'a
is the type of the action to update this optionA group of radio options
Settings can either be a group of radio options or a single int option.
module type S = sig ... end
The interface that must be implemented to create a problem type.