You are here

function theme_jquery_colorpicker_color_display in Jquery Colorpicker 7

Function that implements theme_jquery_colorpicker_color_display

1 theme call to theme_jquery_colorpicker_color_display()
jquery_colorpicker_field_formatter_view in ./jquery_colorpicker.module
Implements hook_field_formatter_view().

File

./jquery_colorpicker.module, line 328
JQuery Colorpicker primary module file.

Code

function theme_jquery_colorpicker_color_display($variables) {
  return '<div id ="jquery_colorpicker_color_display_' . $variables['entity_id'] . '_' . $variables['instance_id'] . '_' . $variables['entity_delta'] . '" class="jquery_colorpicker_color_display jquery_colorpicker_color_display_' . $variables['instance_id'] . ' jquery_colorpicker_color_display_' . $variables['instance_id'] . '_' . $variables['entity_delta'] . '_' . $variables['item'] . '">&nbsp;</div>';
}