function synonyms_behavior_select_settings_form in Synonyms 7
Settings form for select behavior.
1 string reference to 'synonyms_behavior_select_settings_form'
- select.inc in plugins/
behavior/ select.inc
File
- plugins/
behavior/ select.inc, line 18
Code
function synonyms_behavior_select_settings_form($form, &$form_state, $settings) {
static $is_first_time = TRUE;
$element = array();
$element['wording'] = array(
'#type' => 'textfield',
'#title' => t('Select wording'),
'#default_value' => isset($settings['wording']) ? $settings['wording'] : '@synonym',
'#description' => t('Specify with what wording the synonyms should be placed in the select form element. You may use: <ul><li><em>@synonym</em> to denote value of the synonym</li><li><em>@entity</em> to denote entity name</li><li><em>@field_name</em> to denote lowercase label of the field from where the synonym originates</li></ul>'),
'#required' => TRUE,
);
if (!$is_first_time) {
// Remove the description, if the element is created more than once on the
// same form. Otherwise the whole form looks too clumsy.
unset($element['wording']['#description']);
}
$is_first_time = FALSE;
return $element;
}