stylizer.theme.inc 646 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @file
  4. * Contains theme registry and theme implementations for the content types.
  5. */
  6. /**
  7. * Implementation of hook_theme to load all content plugins and pass thru if
  8. * necessary.
  9. */
  10. function ctools_stylizer_theme(&$theme) {
  11. $theme['ctools_stylizer_color_scheme_form'] = array(
  12. 'render element' => 'form',
  13. 'file' => 'includes/stylizer.inc',
  14. );
  15. $theme['ctools_stylizer_preview_form'] = array(
  16. 'render element' => 'form',
  17. 'file' => 'includes/stylizer.inc',
  18. );
  19. $theme['ctools_style_icon'] = array(
  20. 'variables' => array('image' => NULL, 'title' => NULL),
  21. 'file' => 'includes/stylizer.inc',
  22. );
  23. }