stylizer.inc 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * @file
  4. */
  5. $plugin = array(
  6. 'schema' => 'stylizer',
  7. 'access' => 'administer stylizer',
  8. 'menu' => array(
  9. 'menu item' => 'stylizer',
  10. 'menu title' => 'Stylizer',
  11. 'menu description' => 'Add, edit or delete stylizer styles.',
  12. ),
  13. 'title singular' => t('style'),
  14. 'title singular proper' => t('Style'),
  15. 'title plural' => t('styles'),
  16. 'title plural proper' => t('Styles'),
  17. 'handler' => array(
  18. 'class' => 'stylizer_ui',
  19. ),
  20. 'strings' => array(
  21. 'message' => array(
  22. 'missing base type' => t('There are currently no style types available to add. You should enable a module that utilizes them, such as Panels.'),
  23. ),
  24. ),
  25. 'use wizard' => TRUE,
  26. 'form info' => array(
  27. 'add order' => array(
  28. 'admin' => t('Administrative settings'),
  29. 'type' => t('Select style type'),
  30. 'choose' => t('Select base style'),
  31. ),
  32. 'order' => array(
  33. 'admin' => t('Administrative settings'),
  34. ),
  35. 'forms' => array(
  36. 'choose' => array(
  37. 'form id' => 'ctools_stylizer_edit_style_form_choose',
  38. ),
  39. ),
  40. ),
  41. );