Projet

Général

Profil

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

root / drupal7 / sites / all / modules / views / plugins / export_ui / views_ui.inc @ 651307cd

1
<?php
2

    
3
/**
4
 * @file
5
 * Plugin definition for CTools Export UI integration.
6
 */
7

    
8
$plugin = array(
9
  'schema' => 'views_view',
10
  'access' => 'administer views',
11

    
12
  'menu' => array(
13
    'menu item' => 'views',
14
    'menu title' => 'Views',
15
    'menu description' => 'Manage customized lists of content.',
16
  ),
17

    
18
  'title singular' => t('view'),
19
  'title singular proper' => t('View'),
20
  'title plural' => t('views'),
21
  'title plural proper' => t('Views'),
22

    
23
  'handler' => 'views_ui',
24

    
25
  'strings' => array(
26
    'confirmation' => array(
27
      'revert' => array(
28
        'information' => t('This action will permanently remove any customizations made to this view.'),
29
        'success' => t('The view has been reverted.'),
30
      ),
31
      'delete' => array(
32
        'information' => t('This action will permanently remove the view from your database.'),
33
        'success' => t('The view has been deleted.'),
34
      ),
35
    ),
36
  ),
37
);