18 lines
299 B
Plaintext
18 lines
299 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file Home for the most basic imagecache_action routines.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_theme().
|
|
*/
|
|
function imagecache_actions_theme() {
|
|
return array(
|
|
'imagecacheactions_rgb' => array(
|
|
'file' => 'utility-color.inc',
|
|
'variables' => array('rgb' => NULL),
|
|
),
|
|
);
|
|
}
|