Advanced

ADRUID ADVANCED SECTION

Checkbox list component

A checkbox list component is a graphical component which displays checkboxes allowing the user to select a set of options. (screenshot)

### Allow override
BEGIN COMPONENT
TITLE: Allow override

BEGIN CHECKBOXLIST
VALUE: All
ID: %arg1
VALUE: None
ID: %arg2
VALUE: FileInfo
ID: %arg3
VALUE: AuthConfig
ID: %arg4
VALUE: Limit
ID: %arg5
VALUE: Options
ID: %arg6
END CHECKBOXLIST

BEGIN GENERATE access.conf
AllowOverride %arg1 %arg2 %arg3 %arg4 %arg5 %arg6
END GENERATE

END COMPONENT

A checkbox list component is characterized by a BEGIN CHECKBOXLIST/END CHECKBOXLIST section. It contains a sequence of VALUE/ID which indicates respectively the text displayed next to the checkboxes (and what will be generated) and an ID (used to identify the fields for the generation part).

A GENERATE section indicates what to generate and in which file this information should be generated
(BEGIN GENERATE YourFileName)