stylizer.inc 1.1 KB

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