You are here

function theme_manualcrop_thumblist in Manual Crop 7

Returns HTML for thumbnail list.

Parameters

$variables: An associative array containing:

  • "attributes": An array of attributes.
  • "images": Array of images html, themed by the "manualcrop_thumblist_image" function an keyed by style name.

Return value

HTML for the thumb list.

1 theme call to theme_manualcrop_thumblist()
_manualcrop_add_croptool in ./manualcrop.helpers.inc
Add the actual croptool to a form element.

File

./manualcrop.module, line 726

Code

function theme_manualcrop_thumblist($variables) {
  $output = '<div ' . drupal_attributes($variables['attributes']) . '>';
  $output .= '<div class="clearfix">';
  $output .= implode('', $variables['images']);
  $output .= '</div>';
  $output .= '</div>';
  return $output;
}