You are here

function views_handler_field_file::options_form in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 modules/system/views_handler_field_file.inc \views_handler_field_file::options_form()
  2. 7.3 modules/system/views_handler_field_file.inc \views_handler_field_file::options_form()

Provide link to file option

Overrides views_handler_field::options_form

File

modules/system/views_handler_field_file.inc, line 25

Class

views_handler_field_file
Field handler to provide simple renderer that allows linking to a file.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['link_to_file'] = array(
    '#title' => t('Link this field to download the file'),
    '#description' => t('This will override any other link you have set.'),
    '#type' => 'checkbox',
    '#default_value' => !empty($this->options['link_to_file']),
  );
}