summaryrefslogtreecommitdiff
path: root/sites/all/modules/views/plugins/views_wizard/file_managed.inc
blob: 049ce1b523db159d0023ee6eb4f2822ef0e7e02c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

/**
 * @file
 * Views wizard for managed file views.
 */

$plugin = array(
  'name' => 'file_managed',
  'base_table' => 'file_managed',
  'created_column' => 'timestamp',
  'form_wizard_class' => array(
    'file' => 'views_ui_file_managed_views_wizard.class.php',
    'class' => 'ViewsUiFileManagedViewsWizard',
  ),
  'title' => t('Files'),
  'filters' => array(
  ),
  'path_field' => array(
    'id' => 'uri',
    'table' => 'file_managed',
    'field' => 'uri',
    'exclude' => TRUE,
    'file_download_path' => TRUE,
  ),
);