1.20.x file.field.inc | file_field_settings_form($field, $instance, $has_data) |
Implements hook_field_settings_form().
File
- modules/
file/ file.field.inc, line 36 - Field module functionality for the File module.
Code
function file_field_settings_form($field, $instance, $has_data) {
$defaults = field_info_field_settings($field['type']);
$settings = array_merge($defaults, $field['settings']);
$form['#attached']['js'][] = backdrop_get_path('module', 'file') . '/js/file.js';
$form['display_field'] = array(
'#type' => 'checkbox',
'#title' => t('Enable <em>Display</em> field'),
'#default_value' => $settings['display_field'],
'#description' => t('This option allows users to choose if the uploaded files should be shown or hidden when viewing the content.'),
);
$form['display_default'] = array(
'#type' => 'checkbox',
'#title' => t('Files displayed by default'),
'#default_value' => $settings['display_default'],
'#description' => t('This option sets the default behavior for uploaded files for this field. Users are still allowed to change this setting individually for each file before saving their content.'),
'#states' => array(
'visible' => array(
'input[name="field[settings][display_field]"]' => array('checked' => TRUE),
),
),
);
$scheme_options = array();
foreach (file_get_stream_wrappers(STREAM_WRAPPERS_WRITE_VISIBLE) as $scheme => $stream_wrapper) {
$scheme_options[$scheme] = $stream_wrapper['name'];
}
$form['uri_scheme'] = array(
'#type' => 'radios',
'#title' => t('Upload destination'),
'#options' => $scheme_options,
'#default_value' => $settings['uri_scheme'],
'#description' => t('Select where the final files should be stored. Private file storage has significantly more overhead than public files, but allows restricted access to files within this field.'),
'#disabled' => $has_data,
);
return $form;
}