function entityconnect_field_instance_settings_form in Entity connect 7.2
Same name and namespace in other branches
- 7 entityconnect.module \entityconnect_field_instance_settings_form()
Add settings to an instance field settings form.
Invoked from field_ui_field_edit_form() to allow the module defining the field to add settings for a field instance.
Return value
array The form definition for the field instance settings.
File
- includes/
entityconnect.fields.inc, line 12
Code
function entityconnect_field_instance_settings_form($field, $instance) {
$settings = $instance;
$form['entityconnect'] = array(
'#type' => 'fieldset',
'#title' => t('EntityConnect default Parameters'),
);
$form['entityconnect']['button'] = array(
'#type' => 'fieldset',
'#title' => t('Buttons display Parameters'),
);
// Add choice for user to not load entity connect "add" button
// on the field.
$form['entityconnect']['button']['unload_add_button'] = array(
'#type' => 'radios',
'#title' => t('Display Entity Connect "add" button.'),
'#default_value' => !isset($settings['entityconnect']['button']['unload_add_button']) ? variable_get('entityconnect_unload_add_default', 1) : $settings['entityconnect']['button']['unload_add_button'],
'#description' => t('Choose "No" if you want to unload "add" button for the field'),
'#options' => array(
'0' => t('Yes'),
'1' => t('No'),
),
'#weight' => 1,
);
// Add choice for user to not load entity connect "edit" button
// on the field.
$form['entityconnect']['button']['unload_edit_button'] = array(
'#type' => 'radios',
'#title' => t('Display Entity Connect "edit" button.'),
'#default_value' => !isset($settings['entityconnect']['button']['unload_edit_button']) ? variable_get('entityconnect_unload_edit_default', 1) : $settings['entityconnect']['button']['unload_edit_button'],
'#description' => t('Choose "No" if you want to unload "edit" button for the field'),
'#options' => array(
'0' => t('Yes'),
'1' => t('No'),
),
'#weight' => 1,
);
$form['entityconnect']['icon'] = array(
'#type' => 'fieldset',
'#title' => t('Icons display Parameters'),
);
$form['entityconnect']['icon']['show_add_icon'] = array(
'#required' => '1',
'#key_type_toggled' => '1',
'#default_value' => !isset($settings['entityconnect']['icon']['show_add_icon']) ? variable_get('entityconnect_show_add_icon_default', 0) : $settings['entityconnect']['icon']['show_add_icon'],
'#description' => t('Default: "Icon only"<br />
Choose "Icon + Text" if you want to see the edit (pencil) icon + the text displayed by default.<br />
Choose "Text only" if you don\'t want to see the edit (pencil) icon displayed by default.<br />
Each field can override this value.'),
'#weight' => '2',
'#type' => 'radios',
'#options' => array(
'0' => t('Icon only'),
'1' => t('Icon + Text'),
'2' => t('Text only'),
),
'#title' => t('Default Entity Connect "add (+) icon" display'),
);
$form['entityconnect']['icon']['show_edit_icon'] = array(
'#required' => '1',
'#key_type_toggled' => '1',
'#default_value' => !isset($settings['entityconnect']['icon']['show_edit_icon']) ? variable_get('entityconnect_show_edit_icon_default', 0) : $settings['entityconnect']['icon']['show_edit_icon'],
'#description' => t('Default: "Icon only"<br />
Choose "Icon + Text" if you want to see the edit (pencil) icon + the text displayed by default.<br />
Choose "Text only" if you don\'t want to see the edit (pencil) icon displayed by default.<br />
Each field can override this value.'),
'#weight' => '3',
'#type' => 'radios',
'#options' => array(
'0' => t('Icon only'),
'1' => t('Icon + Text'),
'2' => t('Text only'),
),
'#title' => t('Default Entity Connect "edit (pencil) icon" display'),
);
return $form;
}