function file_field_widget_settings_form

Implements hook_field_widget_settings_form().

1 call to file_field_widget_settings_form()
image_field_widget_settings_form in modules/image/image.field.inc
Implements hook_field_widget_settings_form().

File

modules/file/file.field.inc, line 440

Code

function file_field_widget_settings_form($field, $instance) {
    $widget = $instance['widget'];
    $settings = $widget['settings'];
    $form['progress_indicator'] = array(
        '#type' => 'radios',
        '#title' => t('Progress indicator'),
        '#options' => array(
            'throbber' => t('Throbber'),
            'bar' => t('Bar with progress meter'),
        ),
        '#default_value' => $settings['progress_indicator'],
        '#description' => t('The throbber display does not show the status of uploads but takes up less space. The progress bar is helpful for monitoring progress on large uploads.'),
        '#weight' => 16,
        '#access' => file_progress_implementation(),
    );
    return $form;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.