function file_entity_add_upload_step_scheme in File Entity (fieldable files) 7.3
Same name and namespace in other branches
- 7.2 file_entity.pages.inc \file_entity_add_upload_step_scheme()
Generate form fields for the third step in the add file wizard.
1 call to file_entity_add_upload_step_scheme()
- file_entity_add_upload in ./
file_entity.pages.inc - Form callback for adding a file via an upload form.
File
- ./
file_entity.pages.inc, line 280 - Supports file operations including View, Edit, and Delete.
Code
function file_entity_add_upload_step_scheme($form, &$form_state, array $options = array()) {
$file = file_load($form_state['storage']['upload']);
$schemes = array();
foreach (file_get_stream_wrappers(STREAM_WRAPPERS_WRITE_VISIBLE) as $scheme => $info) {
$schemes[$scheme] = check_plain($info['description']);
}
// Remove any schemes not found in the instance settings.
if (!empty($options['schemes'])) {
$schemes = array_intersect_key($schemes, array_flip($options['schemes']));
}
// Determine which scheme to use as the default value.
if (isset($form_state['storage']['scheme'])) {
$fallback_scheme = $form_state['storage']['scheme'];
}
elseif (!empty($options['uri_scheme'])) {
$fallback_scheme = $options['uri_scheme'];
}
else {
$fallback_scheme = file_default_scheme();
}
$form['scheme'] = array(
'#type' => 'radios',
'#title' => t('Destination'),
'#options' => $schemes,
'#default_value' => $fallback_scheme,
'#required' => TRUE,
);
$form['actions'] = array(
'#type' => 'actions',
);
$form['actions']['previous'] = array(
'#type' => 'submit',
'#value' => t('Previous'),
'#limit_validation_errors' => array(),
'#submit' => array(
'file_entity_add_upload_submit',
),
);
$form['actions']['next'] = array(
'#type' => 'submit',
'#value' => t('Next'),
);
return $form;
}