views_ui.inc 924 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * @file
  4. * Plugin definition for CTools Export UI integration.
  5. */
  6. $plugin = array(
  7. 'schema' => 'views_view',
  8. 'access' => 'administer views',
  9. 'menu' => array(
  10. 'menu item' => 'views',
  11. 'menu title' => 'Views',
  12. 'menu description' => 'Manage customized lists of content.',
  13. ),
  14. 'title singular' => t('view'),
  15. 'title singular proper' => t('View'),
  16. 'title plural' => t('views'),
  17. 'title plural proper' => t('Views'),
  18. 'handler' => 'views_ui',
  19. 'strings' => array(
  20. 'confirmation' => array(
  21. 'revert' => array(
  22. 'information' => t('This action will permanently remove any customizations made to this view.'),
  23. 'success' => t('The view has been reverted.'),
  24. ),
  25. 'delete' => array(
  26. 'information' => t('This action will permanently remove the view from your database.'),
  27. 'success' => t('The view has been deleted.'),
  28. ),
  29. ),
  30. ),
  31. );