panels_mini.inc 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * @file
  4. */
  5. $plugin = array(
  6. 'schema' => 'panels_mini',
  7. 'access' => 'administer mini panels',
  8. 'create access' => 'create mini panels',
  9. 'menu' => array(
  10. 'menu item' => 'mini-panels',
  11. 'menu title' => 'Mini panels',
  12. 'menu description' => 'Add, edit or delete mini panels, which can be used as blocks or content panes in other panels.',
  13. ),
  14. 'title singular' => t('mini panel'),
  15. 'title singular proper' => t('Mini panel'),
  16. 'title plural' => t('mini panels'),
  17. 'title plural proper' => t('Mini panels'),
  18. 'handler' => array(
  19. 'class' => 'panels_mini_ui',
  20. 'parent' => 'ctools_export_ui',
  21. ),
  22. 'use wizard' => TRUE,
  23. 'form info' => array(
  24. 'order' => array(
  25. 'basic' => t('Settings'),
  26. 'context' => t('Context'),
  27. 'layout' => t('Layout'),
  28. 'content' => t('Content'),
  29. ),
  30. // We have to add this form specially because it's invisible.
  31. 'forms' => array(
  32. 'move' => array(
  33. 'form id' => 'ctools_export_ui_edit_item_wizard_form',
  34. ),
  35. ),
  36. ),
  37. );