Same name and namespace in other branches
  1. 3.0.x color_field.module \color_field_theme()
  2. 7.x-2.x color_field.module \color_field_theme()
  3. 8.x-2.x color_field.module \color_field_theme()

Implements hook_theme().

File

./color_field.module, line 509

Code

function color_field_theme($existing, $type, $theme, $path) {
    return array(
        'color_swatch' => array(
            'variables' => array(
                'color' => '',
                'width' => 50,
                'height' => 50,
            ),
        ),
    );
}