imagecache_actions.module 420 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file Home for the most basic imagecache_action routines.
  4. */
  5. /**
  6. * Implements hook_theme().
  7. */
  8. function imagecache_actions_theme() {
  9. return array(
  10. 'imagecacheactions_rgb_form' => array(
  11. 'file' => 'utility-color.inc',
  12. 'render element' => 'form',
  13. ),
  14. 'imagecacheactions_rgb' => array(
  15. 'file' => 'utility-color.inc',
  16. 'variables' => array('rgb' => NULL),
  17. ),
  18. );
  19. }