Provide example of using default values in config function

This commit is contained in:
Matt Pugh 2019-01-02 18:30:14 +00:00
parent b735a5a16c
commit 4f6bb8b5f6

View file

@ -102,6 +102,7 @@ function addonmodule_config()
'option2' => 'Second Option', 'option2' => 'Second Option',
'option3' => 'Another Option', 'option3' => 'Another Option',
], ],
'Default' => 'option2',
'Description' => 'Choose one', 'Description' => 'Choose one',
], ],
// the radio field type displays a series of radio button options // the radio field type displays a series of radio button options
@ -109,6 +110,7 @@ function addonmodule_config()
'FriendlyName' => 'Radio Field Name', 'FriendlyName' => 'Radio Field Name',
'Type' => 'radio', 'Type' => 'radio',
'Options' => 'First Option,Second Option,Third Option', 'Options' => 'First Option,Second Option,Third Option',
'Default' => 'Third Option',
'Description' => 'Choose your option!', 'Description' => 'Choose your option!',
], ],
// the textarea field type allows for multi-line text input // the textarea field type allows for multi-line text input
@ -117,6 +119,7 @@ function addonmodule_config()
'Type' => 'textarea', 'Type' => 'textarea',
'Rows' => '3', 'Rows' => '3',
'Cols' => '60', 'Cols' => '60',
'Default' => 'A default value goes here...',
'Description' => 'Freeform multi-line text input field', 'Description' => 'Freeform multi-line text input field',
], ],
] ]