.. ================================================== .. FOR YOUR INFORMATION .. -------------------------------------------------- .. -*- coding: utf-8 -*- with BOM. .. include:: ../../../Includes.txt Bool ^^^^ .. figure:: ../../../Images/Configuration/Bool.png :width: 250px :alt: Bool form element In a form only a checkbox is shown, of course, but for outputting this might be translated to more informative graphics. aMapping -------- This is a very powerful *array* setting that allows you to translate real database-saved values to nicely formatted outputs (not for the form, though). Now this sound as if you don't want to do that on your own but for limited amount of options (like with Bool or Enum) it makes sense to configure that manually. The only thing you need to do is to configure the value you want to translate (*map*, thus the name) as array key and the output it should become (*be mapped on*) as the configuration value. Pretty easy example: Translate a boolean *true* to a green tick image and a boolean *false* to a red cross. This is also the default value. :: 'aMapping' => array( true => 'True', false => '
' ) As you can see, there is a marker available (*###EXT:path/from/extension/folder###*) even though it is not used at the moment as the default setting relies for both, true and false, on the class-version.