function views_handler_field_file::options_form

Same name in other branches
  1. 7.x-3.x 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 27

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']),
    );
}