You are here

function theme_itweak_upload_images_teaser in iTweak Upload 6.2

Theme function to show image attachments in teaser view.

Parameters

$files: Array of file descriptors, incl. links to thumbnails.

$limit: Maximum number of thumbnails to display.

$options: Optional. Array of options for the gallery and thumbnail links. See theme_itweak_upload_images().

Return value

The themed list

1 theme call to theme_itweak_upload_images_teaser()
itweak_upload_nodeapi in ./itweak_upload.module
Implementation of hook_nodeapi().

File

./itweak_upload.module, line 1254
iTweakUpload - Tweak attachments display and file upload forms.

Code

function theme_itweak_upload_images_teaser($files, $limit, $options = NULL) {
  return theme_itweak_upload_images_body($files, $limit, $options);
}