Projet

Général

Profil

Paste
Télécharger (537 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views / plugins / views_wizard / file_managed.inc @ 5d12d676

1
<?php
2

    
3
/**
4
 * @file
5
 * Views wizard for managed file views.
6
 */
7

    
8
$plugin = array(
9
  'name' => 'file_managed',
10
  'base_table' => 'file_managed',
11
  'created_column' => 'timestamp',
12
  'form_wizard_class' => array(
13
    'file' => 'views_ui_file_managed_views_wizard.class.php',
14
    'class' => 'ViewsUiFileManagedViewsWizard',
15
  ),
16
  'title' => t('Files'),
17
  'filters' => array(),
18
  'path_field' => array(
19
    'id' => 'uri',
20
    'table' => 'file_managed',
21
    'field' => 'uri',
22
    'exclude' => TRUE,
23
    'file_download_path' => TRUE,
24
  ),
25
);