public function File::init in Drupal 10
Same name and namespace in other branches
- 8 core/modules/file/src/Plugin/views/field/File.php \Drupal\file\Plugin\views\field\File::init()
- 9 core/modules/file/src/Plugin/views/field/File.php \Drupal\file\Plugin\views\field\File::init()
File
- core/
modules/ file/ src/ Plugin/ views/ field/ File.php, line 56
Class
- File
- Field handler to provide simple renderer that allows linking to a file.
Namespace
Drupal\file\Plugin\views\fieldCode
public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
parent::init($view, $display, $options);
if (!empty($options['link_to_file'])) {
$this->additional_fields['uri'] = 'uri';
}
}