Projet

Général

Profil

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

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

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
  ),
19
  'path_field' => array(
20
    'id' => 'uri',
21
    'table' => 'file_managed',
22
    'field' => 'uri',
23
    'exclude' => TRUE,
24
    'file_download_path' => TRUE,
25
  ),
26
);