imagecache_actions.module 299 B

1234567891011121314151617
  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' => array(
  11. 'file' => 'utility-color.inc',
  12. 'variables' => array('rgb' => NULL),
  13. ),
  14. );
  15. }