Projet

Général

Profil

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

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

1
<?php
2

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

    
8
$plugin = array(
9
  'name' => 'users',
10
  'base_table' => 'users',
11
  'created_column' => 'created',
12
  'form_wizard_class' => array(
13
    'file' => 'views_ui_users_views_wizard.class.php',
14
    'class' => 'ViewsUiUsersViewsWizard',
15
  ),
16
  'title' => t('Users'),
17
  'filters' => array(
18
    'status' => array(
19
      'value' => '1',
20
      'table' => 'users',
21
      'field' => 'status',
22
    ),
23
  ),
24
  'path_field' => array(
25
    'id' => 'uid',
26
    'table' => 'users',
27
    'field' => 'uid',
28
    'exclude' => TRUE,
29
    'link_to_user' => FALSE,
30
    'alter' => array(
31
      'alter_text' => 1,
32
      'text' => 'user/[uid]',
33
    ),
34
  ),
35
);