summaryrefslogtreecommitdiff
path: root/sites/all/modules/views/plugins/export_ui/views_ui.inc
blob: 042fc79cd03e21bf24db74998b2e33aeeeecb43f (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
27
28
29
30
31
32
33
34
35
36
37
<?php

/**
 * @file
 * Plugin definition for CTools Export UI integration.
 */

$plugin = array(
  'schema' => 'views_view',
  'access' => 'administer views',

  'menu' => array(
    'menu item' => 'views',
    'menu title' => 'Views',
    'menu description' => 'Manage customized lists of content.',
  ),

  'title singular' => t('view'),
  'title singular proper' => t('View'),
  'title plural' => t('views'),
  'title plural proper' => t('Views'),

  'handler' => 'views_ui',

  'strings' => array(
    'confirmation' => array(
      'revert' => array(
        'information' => t('This action will permanently remove any customizations made to this view.'),
        'success' => t('The view has been reverted.'),
      ),
      'delete' => array(
        'information' => t('This action will permanently remove the view from your database.'),
        'success' => t('The view has been deleted.'),
      ),
    ),
  ),
);