function views_handler_field_file_uri::option_definition
Overrides views_handler_field_file::option_definition
File
-
modules/
system/ views_handler_field_file_uri.inc, line 17
Class
- views_handler_field_file_uri
- Field handler to add rendering file paths as file URLs instead of as internal file URIs.
Code
public function option_definition() {
$options = parent::option_definition();
$options['file_download_path'] = array(
'default' => FALSE,
'bool' => TRUE,
);
return $options;
}