function colorfield_theme in Colorfield 7
Implements hook_theme().
File
- ./
colorfield.module, line 11 - A simple color field module with a color picker.
Code
function colorfield_theme() {
return array(
'colorfield_colored_message' => array(
'variables' => array(
'text_color' => 'black',
'text_message' => '',
),
'template' => 'templates/colorfield-colored-message',
),
);
}