function theme_imageeditor_widget_item in Image Editor 7
Theme function to output Image Editor widget item.
1 theme call to theme_imageeditor_widget_item()
- imageeditor_initialize in ./
imageeditor.module - API function to initialize required editors and uploaders.
File
- ./
imageeditor.module, line 178 - Allows online editing of images using different image editing services.
Code
function theme_imageeditor_widget_item($variables) {
return '<span class="imageeditor-widget-item ' . $variables['class'] . '" title="' . $variables['name'] . '" data-codename="' . $variables['codename'] . '"></span>';
}