commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / views / plugins / export_ui / views_ui.inc
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 );