The sections represent the actual HTML pages that are displayed when the wizard is executed in the user's browser.
Each section begins with the keyword section and ends with the beginning of the next section. The last section ends at the beginning of the 'on-init' area, i.e. there is no explicit keyword for the end.
The sections include the following elements in any order and quantity:
- Conditions
- Optional freely definable name of the section, starting with the keyword
label, followed by a string of upper- and lowercase letters and
underscores '_':
Label My_RolloutAssistent
Note: The instruction set for the wizard can use the freely definable name as a goto target. - Static text starting with the keyword static_text followed by a reference
to an entry in the string table (String
tables):
static_text str.conf_general
- Fields for different data types such as text or IP address, check boxes, radio buttons,
selection lists, etc.Note: Information on the various fields can be found in the Fields and attributes section.
- Actions performed by the wizard in different situations depending on the keyword at the
beginning of the block:
- on_show: The wizard performs the actions in this block before a section (HTML page) is displayed.
- on_skip: The wizard performs the actions in this block if a section (HTML page) is not to be displayed due to conditions contained within it.
- on_next: The wizard performs the actions in this block if the user clicks on 'Next' in the section (HTML page).
- on_back: The wizard performs the actions in this block if the user clicks on 'Back' in the section (HTML page).
Note: Notes on the structure of the blocks with the actions and the elements in them are to be found in the Actions section.